Unit 9: Parametric Equations, Polar Coordinates, and Vector-Valued Functions

Master advanced coordinate systems and vector calculus

← Back to Units

📋 Unit Overview

🎯 Learning Objectives: This unit introduces advanced coordinate systems and vector calculus, expanding your mathematical toolkit for describing curves and motion in multiple dimensions.

Unit 9 explores three powerful mathematical systems: parametric equations for describing curves with a parameter, polar coordinates for circular and spiral patterns, and vector-valued functions for motion in space.

Key Topics:
  • Parametric equations and curves
  • Derivatives and integrals of parametric functions
  • Polar coordinates and graphs
  • Area and arc length in polar coordinates
  • Vector-valued functions
  • Motion in space and velocity vectors
Skills You'll Master:
  • Converting between coordinate systems
  • Finding derivatives of parametric functions
  • Calculating areas in polar coordinates
  • Working with vector operations
  • Analyzing motion in multiple dimensions
  • Solving optimization problems

📐 Parametric Equations

Basic Concepts

Parametric equations describe curves using a third variable (parameter) t:

x = f(t), y = g(t)
💡 Key Ideas:
  • The parameter t represents time or another independent variable
  • Each value of t gives a point (x, y)
  • Parametric equations can describe curves that aren't functions
  • They're excellent for describing motion and complex curves
Example 1: Basic Parametric Curve

Sketch the curve defined by x = t², y = 2t for -2 ≤ t ≤ 2.

Solution:

Create a table of values:

tx = t²y = 2t(x, y)
-24-4(4, -4)
-11-2(1, -2)
000(0, 0)
112(1, 2)
244(4, 4)

This traces a parabola opening to the right.

📈 Derivatives of Parametric Functions

First and Second Derivatives

For parametric equations x = f(t), y = g(t):

dy/dx = (dy/dt)/(dx/dt) = g'(t)/f'(t)
d²y/dx² = (d/dt)(dy/dx) / (dx/dt)
Example 2: Finding Derivatives

Find dy/dx and d²y/dx² for x = t³ - t, y = t² + 1.

Solution:

1) dx/dt = 3t² - 1, dy/dt = 2t

2) dy/dx = (2t)/(3t² - 1)

3) For second derivative: d²y/dx² = (d/dt)[(2t)/(3t² - 1)] / (3t² - 1)

4) Using quotient rule: d²y/dx² = [(2)(3t² - 1) - (2t)(6t)]/(3t² - 1)³

5) = (6t² - 2 - 12t²)/(3t² - 1)³ = (-6t² - 2)/(3t² - 1)³

🌊 Polar Coordinates

Coordinate System

Polar coordinates use (r, θ) where:

  • r = distance from origin
  • θ = angle from positive x-axis
x = r cos(θ), y = r sin(θ)
r = √(x² + y²), θ = arctan(y/x)
Example 3: Converting Coordinates

Convert (3, π/4) to rectangular coordinates.

Solution:

x = 3 cos(π/4) = 3(√2/2) = 3√2/2

y = 3 sin(π/4) = 3(√2/2) = 3√2/2

Rectangular coordinates: (3√2/2, 3√2/2)

Common Polar Graphs

Basic Curves:
  • Circle: r = a
  • Line: θ = α
  • Cardioid: r = a(1 ± cos θ)
  • Rose: r = a cos(nθ)
Advanced Curves:
  • Lemniscate: r² = a² cos(2θ)
  • Spiral: r = aθ
  • Limaçon: r = a ± b cos θ
  • Conic: r = ed/(1 ± e cos θ)

📏 Area in Polar Coordinates

Area Formula

The area bounded by the polar curve r = f(θ) from θ = α to θ = β is:

A = (1/2) ∫αβ [f(θ)]² dθ
Example 4: Area of a Cardioid

Find the area inside the cardioid r = 2(1 + cos θ).

Solution:

1) The cardioid is traced once as θ goes from 0 to 2π

2) A = (1/2) ∫0 [2(1 + cos θ)]² dθ

3) = (1/2) ∫0 4(1 + 2cos θ + cos² θ) dθ

4) = 2 ∫0 (1 + 2cos θ + cos² θ) dθ

5) = 2[θ + 2sin θ + (θ/2 + sin(2θ)/4)]0 = 6π

➡️ Vector-Valued Functions

Basic Concepts

A vector-valued function assigns a vector to each value of a parameter:

r(t) = ⟨f(t), g(t), h(t)⟩ = f(t)i + g(t)j + h(t)k
🔍 Key Components:
  • Position vector: r(t) gives position at time t
  • Velocity vector: v(t) = r'(t)
  • Speed: |v(t)| (magnitude of velocity)
  • Acceleration vector: a(t) = v'(t) = r''(t)
Example 5: Motion in Space

For r(t) = ⟨t², 2t, t³⟩, find velocity, speed, and acceleration at t = 1.

Solution:

1) v(t) = r'(t) = ⟨2t, 2, 3t²⟩

2) v(1) = ⟨2, 2, 3⟩

3) |v(1)| = √(2² + 2² + 3²) = √17

4) a(t) = v'(t) = ⟨2, 0, 6t⟩

5) a(1) = ⟨2, 0, 6⟩

📐 Arc Length

Parametric and Polar Arc Length

Parametric Arc Length:

L = ∫ab √[(dx/dt)² + (dy/dt)²] dt

Polar Arc Length:

L = ∫αβ √[r² + (dr/dθ)²] dθ
Example 6: Parametric Arc Length

Find the arc length of x = t², y = t³ from t = 0 to t = 2.

Solution:

1) dx/dt = 2t, dy/dt = 3t²

2) L = ∫02 √[(2t)² + (3t²)²] dt = ∫02 √(4t² + 9t⁴) dt

3) = ∫02 t√(4 + 9t²) dt

4) Let u = 4 + 9t², then du = 18t dt

5) L = (1/18) ∫440 √u du = (1/18)[(2/3)u^(3/2)]440 = (1/27)(40^(3/2) - 4^(3/2))

🎯 Practice Problems

Problem 1: Parametric Derivatives

Find dy/dx for the parametric equations x = sin(t), y = cos(2t).

Solution:

1) dx/dt = cos(t), dy/dt = -2sin(2t)

2) dy/dx = (dy/dt)/(dx/dt) = (-2sin(2t))/(cos(t))

3) Using double angle identity: sin(2t) = 2sin(t)cos(t)

4) dy/dx = (-2)(2sin(t)cos(t))/(cos(t)) = -4sin(t)

Problem 2: Polar Area

Find the area inside the rose r = 3cos(3θ).

Solution:

1) The rose has 3 petals, traced once as θ goes from 0 to π

2) A = (1/2) ∫0π [3cos(3θ)]² dθ

3) = (9/2) ∫0π cos²(3θ) dθ

4) Using identity: cos²(3θ) = (1 + cos(6θ))/2

5) = (9/4) ∫0π (1 + cos(6θ)) dθ = (9/4)[θ + sin(6θ)/6]0π = 9π/4

Problem 3: Vector Motion

A particle moves with position vector r(t) = ⟨t², 2t, t³⟩. Find the speed when t = 2.

Solution:

1) v(t) = r'(t) = ⟨2t, 2, 3t²⟩

2) v(2) = ⟨4, 2, 12⟩

3) |v(2)| = √(4² + 2² + 12²) = √(16 + 4 + 144) = √164 = 2√41

💡 Exam Tips & Strategies

🎯 Problem-Solving Strategy:
  1. Identify the coordinate system - parametric, polar, or rectangular
  2. Use appropriate formulas - derivatives, integrals, or conversions
  3. Check your work - verify units and reasonable answers
  4. Sketch when helpful - visualize the curve or motion
  5. Practice conversions - between coordinate systems
⚠️ Common Mistakes:
  • Forgetting to square r in polar area formulas
  • Mixing up parameter and angle variables
  • Not using the correct derivative formulas
  • Forgetting the 1/2 factor in polar area
  • Confusing velocity and speed in vector problems
🔑 Key Insight: These coordinate systems are powerful tools for describing complex curves and motion. Master the conversion formulas and derivative rules, and you'll be able to tackle any problem in this unit.

🧠 Ready to Test Your Knowledge?

📝 Unit 9 Practice Test

Now that you've mastered parametric equations, polar coordinates, and vector-valued functions, test your understanding with our comprehensive practice test. The test includes:

  • 15 Multiple Choice Questions - Covering all major topics
  • 6 Free Response Questions - With detailed solutions
  • 45-minute timer - Simulating real exam conditions
  • Instant feedback - Check your answers as you go
  • Score calculation - See how you perform
Take Practice Test

Recommended after completing all unit content

💡 Pro Tip: This unit covers advanced coordinate systems and vector calculus. Take the practice test to ensure you can convert between coordinate systems and work with parametric derivatives confidently!

➡️ Next Unit Preview

Ready for the final challenge? Unit 10: Infinite Sequences and Series explores convergence, power series, and Taylor polynomials - the culmination of AP Calculus BC.

Explore Unit 10 →