1

I was trying to solve the following exercise when I got stuck:

Find the centres of the osculating circles of the parabola $(t,t^2)$.

My idea was to first reparameterise with respect to arc lenght and then using the tangent and normal vectors to find the centres. Concretely, I have

$$ \alpha (s) = \int_0^s \sqrt{1 + 4 t^2}dt = {1\over 4}(2s \sqrt{1 + 4s^2} + \sinh^{-1}(2s)) $$

for which I already had to use wolfram alpha because I couldn't integrate. But it just kept getting worse: the next step would be to find $\alpha^{-1}$ but I can't do it. I mean, this should be doable without calculators and wolfram alpha, right? So my conclusion is that I'm doing something wrong.

Please could someone explain to me the correct way to solve this exercise?

student
  • 1,617

1 Answers1

1

Probably the easiest way to see this is to use the formula for the curvature, $$ \kappa = \frac{y'' x' - x''y'}{(x'^2+y'^2)^{3/2}}, $$ avoiding arc length like the plague (arc length integrals are in general basically impossible to work with, so it's better to just not bother normalising. Arc length only shows up in its derivatives anyway, which is why we can get away with this). Next we find the equation of the normal, which will be $$ y-y(t) = -\frac{x'}{y'}(x-x(t)), $$ and then we set $(x,y)$ so that we are a distance $1/\kappa$ from the curve, which is the radius of curvature.

The relevant derivatives are $$ x=t \qquad y = t^2 \\ x' = 1 \qquad y' = 2t \\ x'' = 0 \qquad y'' = 2, $$ so the curvature is $$ \kappa(t) = \frac{2-0}{(1+4t^2)^{3/2}}, $$ and the normal is $$ (y-t^2) = -\frac{1}{2t}(x-t) $$

Then we also have $(y-t^2)^2 + (x-t)^2 = \frac{(1+4t^2)^{3}}{4}, $ and solving these simultaneously gives $$ x = -4t^3, \qquad y = \frac{1}{2}+3t^2, $$ when you take the correct sign of the differences.


Alternative: go back to Cauchy's definition: find the intersection of two normals, then let one approach the other. Since we have the general normal, we can find the intersection as when $$ 2(y-t^2) = -\frac{1}{2t}(x-t) = 1-\frac{x}{t} \\ 2(y-s^2) = 1-\frac{x}{s} $$ Hence $$ x = -2st(s+t), \qquad y = \frac{1}{2} + t^2+ts+s^2, $$ and we set $s=t$ to find $$ x=-4t^3, y=\frac{1}{2}+3t^2. $$

And can I just say, I thought it was wonderful how easily using the definition made calculating this: I must bear it in mind in future.


Edit: Better idea for the first way: clearly the normal vector to the curve at $t$ is $$ n = \frac{1}{(x'^2+y'^2)^{1/2}} (-y',x'), $$ and then you just find $(x,y) + n/\kappa$, to abuse notation somewhat. This gives the general evolute coordinate for $x=x(t)$, $y=y(t)$ as $$ \left( x - y' \frac{x'^2+y'^2}{y''x'-x''y'} , y + x' \frac{x'^2+y'^2}{y''x'-x''y'} \right) $$

Chappers
  • 67,606
  • Thank you! I am also onto something and will include it in my question once I finish it (if it works out). – student May 07 '15 at 01:13
  • My method seems to yield a different result. Maybe it's better to make it a new question instead of editing the existing question. – student May 07 '15 at 02:10