Introduction to Modeling Planar Motion

In the previous chapter (4.1 Parametric Functions), we learned how to write equations where \(x\) and \(y\) both depend on a third variable, \(t\). Now, we are going to put those equations to work! Planar motion is just a fancy way of describing how an object moves along a flat surface (a plane) over time. Whether it is a ladybug crawling across a picnic blanket or a drone flying through the air at a constant altitude, we can use parametric functions to track exactly where that object is at any given moment.

Think of it like this: A standard function \(y = f(x)\) tells you the shape of a path. A parametric function tells you the story of the journey—where you are, when you were there, and which way you were heading.

Note: This topic is part of Unit 4, which is not assessed on the AP Exam, but it is a vital bridge to future math and physics courses!

1. Defining the Position

When an object moves in a plane, its position is defined by a pair of functions that depend on time, \(t\). We represent the object's location at any time \(t\) as a coordinate pair:

\((x(t), y(t))\)

  • \(x(t)\): The horizontal position of the object at time \(t\).
  • \(y(t)\): The vertical position of the object at time \(t\).
  • \(t\): The parameter, usually representing time, often restricted to an interval such as \(a \leq t \leq b\).

Quick Example: If a robot's position is given by \(x(t) = 2t\) and \(y(t) = t + 5\), where \(t\) is in seconds, at \(t = 0\), the robot is at \((0, 5)\). At \(t = 3\), the robot has moved to \((6, 8)\).

Key Takeaway

In planar motion, we treat the horizontal and vertical movements separately, but they happen simultaneously as the "clock" (\(t\)) ticks forward.

2. Direction and Orientation

One of the coolest things about parametric equations is that they have a direction of motion, also known as orientation. If you graph a regular parabola, it’s just a curve. But if you graph a parametric path, we add arrows to show which way the object is moving as \(t\) increases.

How to determine orientation:

  1. Pick a few values for \(t\) in increasing order (e.g., \(t=0, t=1, t=2\)).
  2. Calculate the coordinates \((x, y)\) for each \(t\).
  3. Plot the points and draw arrows from the point at \(t=0\) toward the point at \(t=1\), and so on.

Did you know? Two different sets of parametric equations can result in the exact same path on a graph, but the objects might be moving at different speeds or even in opposite directions!

3. Modeling Real-World Scenarios

Planar motion modeling often involves three specific types of movement:

A. Linear Motion (Straight Lines)

If an object moves at a constant speed in a straight line, its parametric equations will look like linear functions:

\(x(t) = x_0 + v_x t\)

\(y(t) = y_0 + v_y t\)

Here, \((x_0, y_0)\) is the starting position, and \(v_x\) and \(v_y\) represent the constant horizontal and vertical "speeds."

B. Projectile Motion

When you throw a ball, it moves horizontally at a steady rate, but gravity pulls it down vertically. A simplified model might look like this:

\(x(t) = v_0 t\)

\(y(t) = h_0 - 16t^2\)

(Note: This is a basic version; specific physics formulas will vary, but the concept of \(x\) and \(y\) both depending on \(t\) remains the same.)

C. Circular and Periodic Motion

Objects moving in circles (like a seat on a Ferris wheel) use trigonometric functions. While this is covered more in Chapter 4.4, it's helpful to recognize that \(x(t) = \cos(t)\) and \(y(t) = \sin(t)\) describe an object moving around a unit circle.

4. Common Pitfalls to Avoid

Don't worry if this seems tricky at first! Here are the most common mistakes students make:

  • Confusing \(t\) with \(x\): Remember that \(t\) is the "input" for both formulas. You don't usually see \(t\) on the axes of your graph; the axes remain \(x\) and \(y\).
  • Ignoring the Domain: Always check if \(t\) is restricted. If \(0 \leq t \leq 5\), the motion stops at \(t=5\). It is a line segment or a curve segment, not an infinite line.
  • Mixing up \(x(t)\) and \(y(t)\): Always double-check which function controls horizontal movement and which controls vertical movement.

5. Step-by-Step Breakdown: Finding Position

Scenario: A particle moves in the plane such that \(x(t) = 3t - 1\) and \(y(t) = t^2 + 2\) for \(t \geq 0\). Find the position at \(t = 2\) and describe the motion.

Step 1: Plug \(t=2\) into the \(x\) equation.
\(x(2) = 3(2) - 1 = 6 - 1 = 5\)

Step 2: Plug \(t=2\) into the \(y\) equation.
\(y(2) = (2)^2 + 2 = 4 + 2 = 6\)

Step 3: State the position.
At \(t = 2\), the particle is at the point \((5, 6)\).

Step 4: Analyze motion.
Since \(x(t)\) is a linear function with a positive slope, the object is moving right at a constant rate. Since \(y(t)\) is a quadratic function, the object is moving upward faster and faster as time goes on.

Key Takeaway Summary

Planar motion uses two functions to describe where an object is at any time \(t\). The path shows the track, the equations show the timing, and the orientation shows the direction. Mastering this allows you to simulate everything from simple walking paths to complex planetary orbits!