logo

Definition of a Curve 📂Geometry

Definition of a Curve

Definitions 1

  1. The mapping α:(a,b)R3\alpha : (a,b) \to \mathbb{R}^{3} is referred to as a Curve.
  2. A point t=t0t = t_{0} at the curve where α=dαdt=0\alpha^{\prime} = \dfrac{d \alpha}{d t} = \mathbf{0} is called a Singular Point.
  3. A curve αCk\alpha \in C^{k} for some kNk \in \mathbb{N} where at all t(a,b)t \in (a,b), dαdt0\displaystyle {{ d \alpha } \over { d t }} \ne \mathbf{0} is known as a Regular Curve. In other words, a regular curve is one without singular points.
  4. The derivative α(t0)\alpha^{\prime}(t_{0}) of curve α\alpha at t=t0t=t_{0}, when t=t0t = t_{0}, is called the velocity vector of α\alpha, and the derivative α\alpha^{\prime} of α\alpha is referred to as the velocity vector field of α\alpha. Therefore, a regular curve is a curve whose velocity does not become 0\mathbf{0}, which means, physically, that its direction of motion never reverses.
  5. The magnitude α(t0)\left|\alpha^{\prime}(t_{0}) \right| of the velocity of α\alpha at t=t0t = t_{0} is called speed.
  6. A curve with α=1\left| \alpha^{\prime} \right| = 1 is called a Unit Speed Curve.

Explanation

α(t):=(α1(t),α2(t),α3(t)) \alpha (t) := \left( \alpha_{1} (t) , \alpha_{2} (t) , \alpha_{3} (t) \right)

In geometry, the object of interest is the figure, and note that in the definition, this figure has been represented as a function of the parameter tt. This has allowed us to utilize many mathematical tools to study figures, especially in differential geometry where calculus is extensively used.

Irregular curve

A singular point is simply a point that is bent or has come to a stop. Depending on the perspective, a bent point can have two directions. Such points are difficult to handle and are not dealt with in undergraduate differential geometry. A ‘stopping point’ is explained with an example.

For some kNk \in \mathbb{N}, that αCk\alpha \in C^{k} implies it is differentiable at least once, and how many times it can be differentiated is not very important. Generally, if it’s differentiable at least k=1k=1 times, it’s simply considered Smooth.

Example

Straight Line

l(t):=(t,t,t) l(t) := \left( t, t, t \right) According to the definition, there’s no reason why the straight line l:RR3l : \mathbb{R} \to \mathbb{R}^{3} shouldn’t be considered a curve. In Korean, because the character for curve 굽을 곡曲 has the implication of bending, it may cause confusion, so it might be better to just read it according to its English pronunciation, curve.

Helix

ζ(t):=(cost,sint,t) \zeta (t) := \left( \cos t , \sin t , t \right)

According to 0t0 \to t \to \infty, a helix is drawn as follows.

Helix

Irregular Curve

β(t):=(t2,t3,t4) \beta (t) := \left( t^{2} , t^{3} , t^{4} \right) If the above curve β\beta is differentiated, then β(t):=(2t,3t2,4t3) \beta^{\prime} (t) := \left( 2t , 3t^{2} , 4t^{3} \right) thus at t=0t = 0, dβdt(0)=0\displaystyle {{ d \beta } \over { d t }} (0) = \mathbf{0} occurs. This singular point is not bent but literally comes to a stop following tt at t=0t=0. Therefore, if the domain of β\beta is R\mathbb{R}, it’s not a regular curve. However, if its domain does not include 00, for example, (0,)(0,\infty), then it is a regular curve. Note that curves can be regular or not, depending on their domain.

Code

The following is the code to create the gif seen in the Helix example with Julia.

using Plots

ζ(t) = (cos(t), sin(t), t)

anim = @animate for T ∈ 0.1:0.1:10
    t = 0:0.1:(T*π)
    helix = plot(ζ.(t), camera = (45,45), legend = :none)
    xlims!(-2,2); ylims!(-2,2); zlims!(0,40)
end
gif(anim, "helix.gif")

  1. Millman. (1977). Elements of Differential Geometry: p15. ↩︎