How to write the parametric equation of shifted parabola? For example, I thought about the equation of a parabola with $a=1$ and vertex being $(3,2)$ would be $((t-3)^2,2(t-2))$, but it is $(t^2 +3,2t+2)$.
2026-03-25 19:11:19.1774465879
Parametric equation of a shifted parabola
591 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
You're confusing parametric equations with implicit equations; you wrote $t-3$ instead of $x-3$. The unshifted parabola is
$$x = t^2$$ $$y = 2t$$
so the shifted parabola is
$$x-3 = t^2$$ $$y-2 = 2t$$
or
$$x = t^2+3$$ $$y = 2t+2$$
or
$$(x,y) = (t^2+3,2t+2)$$