Definition of a Curve
Definitions 1
- The mapping is referred to as a Curve.
- A point at the curve where is called a Singular Point.
- A curve for some where at all , is known as a Regular Curve. In other words, a regular curve is one without singular points.
- The derivative of curve at , when , is called the velocity vector of , and the derivative of is referred to as the velocity vector field of . Therefore, a regular curve is a curve whose velocity does not become , which means, physically, that its direction of motion never reverses.
- The magnitude of the velocity of at is called speed.
- A curve with is called a Unit Speed Curve.
- is times differentiable and its derivative is a set of continuous functions.
Explanation
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 . This has allowed us to utilize many mathematical tools to study figures, especially in differential geometry where calculus is extensively used.
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 , that 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 times, it’s simply considered Smooth.
Example
Straight Line
According to the definition, there’s no reason why the straight line 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
According to , a helix is drawn as follows.
Irregular Curve
If the above curve is differentiated, then thus at , occurs. This singular point is not bent but literally comes to a stop following at . Therefore, if the domain of is , it’s not a regular curve. However, if its domain does not include , for example, , 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")
Millman. (1977). Elements of Differential Geometry: p15. ↩︎