Skip to main content

Parametric Equations

Parametric Equations are equations that help define a curve using a new variable, called a parameter. Instead of expressing yy directly in terms of xx (or vice versa), both xx and yy are expressed in terms of a third variable, usually denoted as tt. This method is particularly useful for simplifying complex shapes, modeling objects in motion and representing relationships where the variables depend on a hidden factor like time.

Parameterizing a Curve

When an object moves along a curve in a given direction and in a given amount of time, we can describe its position given by xx and yy coordinates. However, both xx and yy vary over time making them functions of time. For this reason, we can add another variable tt which is the parameter upon which both xx and yy depend on. So, when we are parameterizing a curve, we are translating a single equation in two variables, such as xx and yy, into an equivalent pair of equations in three variables, such as xx, yy, and tt.

In mathematical terms, suppose tt is a number on an interval II and the set of ordered pairs, (x(t),y(t))(x(t), y(t)), where tIt \in I, x=f(t)x = f(t), and y=g(t)y = g(t) forms a curve on the parameter tt. Then, x=f(t)x = f(t) and y=g(t)y = g(t) are called the parametric equations of the curve.

Example\underline{Example}

Parameterize the curve given by x=y32yx = y^3 - 2y.

There can be multiple ways to parameterize a curve as long as the resulting equations satisfy the original equation. We could always let x=tx = t and solve for yy in terms of tt but this equation is already solved for xx. This means if we let y=ty = t, it would be much easier to express xx in terms of tt.

So, letting y=ty = t, we can substitute this into the original equation to get x=t32tx = t^3 - 2t.

Therefore, the parametric equations of the curve are x(t)=t32tx(t) = t^3 - 2t and y(t)=ty(t) = t.

note

Sometimes, when we are parameterizing a curve, the curve can not be a function because it fails the vertical line test. However, parametric equations can still represent these curves because they do not require yy to be expressed as a function of xx or vice versa. This means parametric equations allow us to describe more complex curves that would otherwise be impossible to represent with standard functions.

Eliminating the Parameter

Sometimes, we may want to eliminate the parameter from parametric equations to express the relationship between xx and yy directly. This process involves solving one of the parametric equations for the parameter and substituting it into the other equation.

Example\underline{Example}

Eliminate the parameter for the equations x(t)=t2x(t) = t^2 and y(t)=ln(t)y(t) = \ln (t) where t>0t > 0. Write the final equation as a rectangular equation.

Lets first write x(t)x(t) in terms of tt so that we can substitute it into y(t)y(t). From x(t)=t2x(t) = t^2, we can take the square root of both sides to get t=xt = \sqrt{x}.

Now, substituting t=xt = \sqrt{x} into y(t)=ln(t)y(t) = \ln (t) gives us y=ln(x)y = \ln(\sqrt{x}).

So, the rectangular equation that relates xx and yy is y=ln(x)y = \ln(\sqrt{x}) where x>0x > 0.

Trigonometric Equations

We can eliminate the parameter from trigonometric equations using straightforward substituion as well. However, we may need to use some familiar trigonometric identities to help us simplify the final equation.

The identities we may need to use are...

  1. x(t)=acos(t)x(t) = a \cos(t) and y(t)=bsin(t)y(t) = b \sin(t) where aa and bb are constants.
  2. xa=cos(t)\dfrac{x}{a} = \cos(t) and yb=sin(t)\dfrac{y}{b} = \sin(t) which we get by solving for cos(t)\cos(t) and sin(t)\sin(t) respectively.
  3. cos2(t)+sin2(t)=1\cos^2(t) + \sin^2(t) = 1 which is the Pythagorean identity.
  4. (xa)2+(yb)2=1\left(\dfrac{x}{a}\right)^2 + \left(\dfrac{y}{b}\right)^2 = 1 which we get by substituting into the Pythagorean identity.

Example\underline{Example}

Eliminate the parameter from the equations x(t)=2cos(t)x(t) = 2 \cos(t) and y(t)=3sin(t)y(t) = 3 \sin(t). Write the final equation as a Cartesian equation.

Firstly, let's solve in terms of cos(t)\cos (t) and sin(t)\sin (t) so that we can substitute them into the Pythagorean identity to eliminate them. From x(t)=2cos(t)x(t) = 2 \cos(t), we can solve for cos(t)\cos (t) to get cos(t)=x2\cos (t) = \dfrac{x}{2} and from y(t)=3sin(t)y(t) = 3 \sin(t), we can solve for sin(t)\sin (t) to get sin(t)=y3\sin (t) = \dfrac{y}{3}.

We can now substitute cos(t)\cos (t) and sin(t)\sin (t) into the Pythagorean identity cos2(t)+sin2(t)=1\cos^2(t) + \sin^2(t) = 1 to get...

cos2(t)+sin2(t)=1(x2)2+(y3)2=1x24+y29=1\begin{array}{cccccccccccccc} \cos^2(t) + \sin^2(t) &=& 1 \\[1em] \left(\dfrac{x}{2}\right)^2 + \left(\dfrac{y}{3}\right)^2 &=& 1 \\[1em] \dfrac{x^2}{4} + \dfrac{y^2}{9} &=& 1 \end{array}

So, the Cartesian equation that relates xx and yy is x24+y29=1\dfrac{x^2}{4} + \dfrac{y^2}{9} = 1.