I think the parametrisation of a parabola ought to be like so:
- $r(t)=(t,t^2)$
When I compute $r'(t)$ I get $r'(t)=(1,2t)$, and when I compute $r''(t)$ I get $r''(t)=(0,2)$. At each point $0i + 2j$ isn't orthogonal to the tangent everywhere. What is the correct normal vector calculation?
There is a fact that if $r(t)$ is a vector such that $\| r(t) \|$ is constant, then $r'(t)$ is orthogonal to $r(t)$. So, to fix your calculations you can first normalize $r'(t)$ to have constant magnitude, and then calculate the second derivative.
Edit: the start of the first step is to calculate $$\| r'(t) \| = \sqrt{1^2 + (2t)^2 } = \sqrt{1 + 4t^2}, $$ so our unit tangent vector is $$T(t) = \left\langle \frac{1}{\sqrt{1 + 4t^2}}, \frac{2t}{\sqrt{1 + 4t^2}} \right\rangle.$$