4. Functions Involving Parameters, Vectors, and Matrices

Parametric Functions Modeling Planar Motion

Parametric Functions Modeling Planar Motion

students, imagine watching a drone fly across a field or a soccer ball arc through the air ⚽. If you want to describe where it is at every moment, a single equation like $y=f(x)$ is not always enough. In many motion situations, you need to track position using time as an input. That is where parametric functions come in.

In this lesson, you will learn how parametric equations model motion in the plane, how to read and interpret them, and how they connect to vectors and matrices. By the end, you should be able to explain the key ideas, use the notation correctly, and describe what a moving object is doing from its equations.

What Parametric Functions Do

A parametric function uses a third variable, often time $t$, to describe both coordinates of a point. Instead of writing one equation for $y$ in terms of $x$, we write two equations:

$$x=f(t)$$

$$y=g(t)$$

Together, these equations describe a path in the coordinate plane. The variable $t$ is called the parameter. It tells you when the object is at a certain place.

For example, suppose a person walks according to

$$x=t$$

$$y=2t+1$$

If $t=0$, the position is $(0,1)$. If $t=2$, the position is $(2,5)$. The point moves along a line, but the parametric form tells you more than the shape of the path. It also tells you the order of the motion.

This is important in real life because many paths are not functions of $x$ alone. A roller coaster, a planet orbit, or a robot moving in a room may have a position that changes with time in both directions at once 🛰️.

Reading Motion from Parametric Equations

When you are given parametric equations, students, the first step is to see how $x$ and $y$ depend on $t$. Then you can find positions at specific times, understand direction, and determine starting points.

Suppose

$$x=3t-2$$

$$y=t^2$$

If you want the position at $t=1$, substitute $1$ for $t$:

$$x=3(1)-2=1$$

$$y=(1)^2=1$$

So the point is $(1,1)$.

If $t=0$, the point is $(-2,0)$. That is the starting position.

You can also find several points to sketch the path:

  • $t=-1 \rightarrow (-5,1)$
  • $t=0 \rightarrow (-2,0)$
  • $t=1 \rightarrow (1,1)$
  • $t=2 \rightarrow (4,4)$

These points show motion from left to right and upward. Because $x$ changes linearly while $y$ changes quadratically, the path is a curve.

A useful idea is direction. The same path can be traveled in opposite directions depending on how $t$ changes. For example, if $t$ increases and $x$ decreases, the motion goes left. If $t$ increases and $y$ increases, the motion goes up.

Eliminating the Parameter

Sometimes you want to know the Cartesian equation of the path. That means removing $t$ and writing a relationship between $x$ and $y$.

Consider

$$x=t-1$$

$$y=t^2+2$$

From the first equation, solve for $t$:

$$t=x+1$$

Substitute into the second equation:

$$y=(x+1)^2+2$$

So the path is a parabola.

Eliminating the parameter helps you identify the shape of the motion, but it does not replace the parametric form. The parametric form still tells you how the object moves over time.

Sometimes parameter elimination is easier if you use substitution. If

$$x=2t$$

$$y=5-t$$

then solve for $t$ using $x=2t$:

$$t=\frac{x}{2}$$

Substitute into $y$:

$$y=5-\frac{x}{2}$$

This is a line. The parametric equations describe a straight-line motion at a steady rate.

Common Motion Patterns and What They Mean

Many planar motion models use simple building blocks. students, recognizing these patterns can help you interpret equations quickly.

Linear motion

If both $x$ and $y$ are linear in $t$, the path is usually a line. For example:

$$x=4t+1$$

$$y=-2t+3$$

As $t$ increases by $1$, $x$ increases by $4$ and $y$ decreases by $2$. That means the object moves in a constant direction with constant speed along a line.

Curved motion

If one or both equations are nonlinear, the path may curve. For example,

$$x=t$$

$$y=t^2$$

eliminates to

$$y=x^2$$

which is a parabola. This kind of model can represent motion of a thrown object in simplified settings.

Circular motion

A famous example is

$$x=\cos t$$

$$y=\sin t$$

This traces the unit circle because

$$x^2+y^2=\cos^2 t+\sin^2 t=1$$

The object moves around the circle as $t$ changes. This is useful for wheels, rotating arms, and orbital motion models.

Connecting Parametric Functions to Vectors

Parametric functions are closely connected to vectors because a position in the plane can be written as a vector from the origin. The position vector is

$$\langle x,y\rangle$$

If position depends on time, you can write

$$\langle x(t),y(t)\rangle$$

This means the object’s position changes as $t$ changes.

For example, if

$$\mathbf{r}(t)=\langle 2t, t^2\rangle$$

then the position at $t=3$ is

$$\mathbf{r}(3)=\langle 6,9\rangle$$

The vector form is another way to express the same motion. It is useful because it matches the language of physics and engineering, where position, velocity, and acceleration are often written as vectors.

You may also see velocity as a derivative vector:

$$\mathbf{r}'(t)=\langle x'(t),y'(t)\rangle$$

This tells you how fast the position is changing in each coordinate direction. For example, if

$$\mathbf{r}(t)=\langle t^2,3t\rangle$$

then

$$\mathbf{r}'(t)=\langle 2t,3\rangle$$

At $t=2$, the velocity vector is

$$\langle 4,3\rangle$$

which means the object is moving right and up at that instant.

Matrices and Transformations of Motion

Matrices connect to parametric motion when we transform a curve or path. A matrix can stretch, rotate, reflect, or shear a set of points.

If a point is represented by the vector

$$\begin{bmatrix}x\y\end{bmatrix}$$

then a matrix transformation can produce a new point

$$\begin{bmatrix}x'\y'\end{bmatrix}=A\begin{bmatrix}x\y\end{bmatrix}$$

For example, the matrix

$$A=\begin{bmatrix}2&0\\0&1\end{bmatrix}$$

stretches the $x$-coordinates by a factor of $2$ while leaving $y$ unchanged. If a parametric curve is

$$x=t$$

$$y=t^2$$

then after this transformation, the new curve becomes

$$x'=2t$$

$$y'=t^2$$

So matrices help describe how a motion path changes under a transformation.

This connection matters in animation, robotics, and computer graphics 🎮. A moving character can be described by parametric equations, then transformed by matrices to rotate or resize the motion path.

A Real-World Example: A Flying Package Drone

Suppose a drone moves according to

$$x=5t$$

$$y=-t^2+6t$$

for $0\leq t\leq 6$.

At $t=0$, the drone is at $(0,0)$.

At $t=3$, the position is

$$x=15$$

$$y=-9+18=9$$

so the drone is at $(15,9)$.

To find where it lands, set $y=0$:

$$-t^2+6t=0$$

Factor:

$$t(-t+6)=0$$

So $t=0$ or $t=6$. The landing time is $t=6$.

Then

$$x=5(6)=30$$

So the drone lands at $(30,0)$.

This example shows how parametric equations model a full motion story: starting point, path, highest point, and landing point.

Conclusion

Parametric functions model planar motion by using a parameter, usually time $t$, to describe both coordinates of a moving point. students, this makes them powerful for representing paths that change over time and for situations where motion is not best described by a single function of $x$.

You should now recognize how to evaluate positions, sketch motion, eliminate a parameter, and connect parametric equations to vectors and matrices. These ideas fit within Functions Involving Parameters, Vectors, and Matrices because they show different ways to describe and transform movement in the plane. Even though this lesson is not assessed on the AP Exam, it builds important mathematical reasoning that supports future study in calculus, physics, and computer science.

Study Notes

  • Parametric equations use a parameter, often $t$, to describe position with two equations: $x=f(t)$ and $y=g(t)$.
  • The parameter usually represents time, so parametric equations model motion through time.
  • A point on the path is found by substituting a value of $t$ into both equations.
  • Eliminating the parameter turns a parametric system into a single equation in $x$ and $y$.
  • The direction of motion depends on how the coordinates change as $t$ increases.
  • Linear parametric equations often describe motion along a line.
  • Nonlinear parametric equations can describe curves such as parabolas and circles.
  • Parametric functions connect naturally to vectors using position vectors like $\langle x(t),y(t)\rangle$.
  • The derivative vector $\mathbf{r}'(t)$ describes velocity in parametric motion.
  • Matrices can transform parametric paths by stretching, rotating, reflecting, or shearing them.
  • Parametric modeling is useful in real-world settings such as drones, sports, robotics, animation, and navigation 🚀.

Practice Quiz

5 questions to test your understanding