I'm studying that if we have a smooth parametrized curve $r(t)$, we can reparametrize it according to its arc-length so that the derivative will always have module $1$. Is there a proof?
Why arc-length parametrized curves has unit tangent vector?
-
0Could you please clarify: Are you asking the (non-trivial) question "Why does a regular curve have an arc-length parametrization?" (which John Hughes has answered), or the question of the title, "Why does an arc-length parametrized curve have unit tangent vector?" (If you meant the first question, please consider editing the title.) – 2017-01-31
-
0Hi, no I know the question is basic but it meant just what I wrote. Thank you for tryng to help! – 2017-02-01
2 Answers
Yes, provided your curve has nonzero tangent vector at all points.
Suppose your curve is $\alpha: [a, b] \to \Bbb R^2$. For $t \in [a, b]$, define $$ q(t) = \int_a^t \| a'(s) \| ds. $$ You can see that $q(t)$ represents "how long is $\alpha$ from $a$ up to $t$".
What can you say about the function $q$?
$q(a) = 0$.
$q'(t) = \| \alpha'(t) \| > 0$ for every $t \in (a, b)$, by the fundamental theorem of calculus.
Define $L = q(b)$ to be the length of the whole curve.
Now: $q: [a, b] \to [0, L]$ is an increasing continuous function onto its codomain; hence it has an inverse function $u: [0, L] \to [a, b]$. We may not be able to easily write down the inverse, but it's there. And the derivative of $u$ at a point is (by the inverse function theorem) given by: $$ u'(t) = \frac{1}{q'(q^{-1}(t))} = \frac{1}{q'(u(t))} = \frac{1}{\|a'(u(t))\|}. $$
Hold that thought.
Now let $$ \beta: [0, L] \to \Bbb R^2 : t \mapsto \alpha(u(t)). $$ Clearly $\beta$ traverses the same path as $\alpha$. But what's $\beta'(t)$? It is, by the chain rule, \begin{align} \beta'(t) &= \alpha'(u(t)) \cdot u'(t)\\ &= \alpha'(u(t)) \cdot \frac{1}{\| \alpha'(u(t))\|}, \end{align} which is a unit vector. QED.
-
0Thank you for answer, I had came up to the solution by myself, but it's always great to see some more detailed explnation – 2017-02-01
Hint: if $r:[a,b]\longrightarrow\Bbb R^n$ and $$s(t) = \int_a^t\|r'\|$$ then $r\circ s^{-1}$ is parametrized by arclengh. Now, apply the chain rule.
-
0You might want to restrict to the case where $\|r'(t)\|$ is never $0$, or $s$ will not necessarily be invertible. – 2017-01-31
-
0@JohnHughes, true, But my answer is only a hint. The condition appears doing the (ommited) calculations. – 2017-01-31
-
0Yes, but without that condition, the statement you gave as a hint is false (as I'm sure you know). While I agree with the spirit of hint-giving, I try to avoid this kind of thing myself. – 2017-01-31
-
0Thank you for ayour answer. you were right, it was simple chain rule! – 2017-02-01