How do you find the parametric equations of a circle?

1 Answer
Aug 23, 2014

We'll start with the parametric equations for a circle:

y = rsin ty=rsint
x = rcos tx=rcost

where tt is the parameter and rr is the radius.

If you know that the implicit equation for a circle in Cartesian coordinates is x^2 + y^2 = r^2x2+y2=r2 then with a little substitution you can prove that the parametric equations above are exactly the same thing.

We will take the equation for xx, and solve for tt in terms of xx:

x/r = cos txr=cost
t = arccos (x/r)t=arccos(xr)

Now substitute into the equation for yy. This eliminates the parameter tt and gives us an equation with only xx and yy.

y = rsin arccos(x/r)y=rsinarccos(xr)

sin arccos(x/r)sinarccos(xr) is equal to sqrt(r^2 - x^2)/rr2x2r. This is apparent if one sketches a right triangle, letting theta = arccos(x/r)θ=arccos(xr):

enter image source here

Thus, sin theta = sqrt(r^2 - x^2)/rsinθ=r2x2r. So now we have

y = r*sqrt(r^2 - x^2)/ry=rr2x2r

This simplifies to

y = sqrt(r^2 - x^2)y=r2x2

If we square this entire deal and solve for rr, we get:

r^2 = x^2 + y^2r2=x2+y2

which is precisely the equation for a circle in Cartesian coordinates.