FMAT pure1 polar coordinates Flashcards
What are polar coordinates?
Polar coordinates describe a point using (r, θ), where:
- r is the distance from the pole (origin).
- θ is the angle from the initial line (measured anticlockwise in radians)
How do you convert polar coordinates to Cartesian coordinates?
x = r * cos(θ)
y = r * sin(θ)
How do you convert Cartesian coordinates to polar coordinates?
r = √(x² + y²)
θ = tan⁻¹(y / x)
Ensure θ is in the correct quadrant.
Example: Convert Cartesian coordinates (3, 4) to polar coordinates.
r = √(3² + 4²) = 5
θ = tan⁻¹(4 / 3) ≈ 0.93 radians
Polar coordinates: (5, 0.93)
Example: Convert polar coordinates (4, π/6) to Cartesian coordinates.
x = 4 * cos(π/6) = 2√3
y = 4 * sin(π/6) = 2
Cartesian coordinates: (2√3, 2)
What is the general approach to sketching polar curves?
- Identify key values of θ where r is zero, maximum, or minimum.
- Use symmetry and the behavior of trigonometric functions.
- Sketch the curve, showing critical points and shape.
Example: Sketch the polar curve r = 2 + 4sin(θ).
- Maximum r: r = 6 when sin(θ) = 1.
- Minimum r: r = 2 when sin(θ) = 0.
- check desmos
How do you find the Cartesian equation of a polar curve?
Use:
x = r * cos(θ), y = r * sin(θ), and r² = x² + y²
Substitute and simplify as needed.
Example: Convert the polar curve r = 2 + 2cos(θ) to Cartesian form.
Multiply through by r: r² = 2r + 2r * cos(θ)
Substitute r² = x² + y² and r * cos(θ) = x:
x² + y² = 2√(x² + y²) + 2x
Example: Find the polar equation of a circle with centre (2, 0) and radius 2.
Using symmetry, the polar equation is:
r = 4cos(θ)
What is the formula for the area of a sector in polar coordinates?
Area = ∫(1/2) r^2 dθ
The limits of integration are values of θ.
Why is the double-angle identity often used in polar area calculations?
To simplify trigonometric expressions like sin^2(θ) or cos^2(θ) before integration:
sin^2(θ) = (1 - cos(2θ)) / 2
cos^2(θ) = (1 + cos(2θ)) / 2
Find the area enclosed by one loop of the curve r = sin(2θ).
Area = (1/2) ∫ [sin^2(2θ)] dθ from 0 to π/2
Use sin^2(2θ) = (1 - cos(4θ)) / 2:
Area = (1/2) ∫ [(1 - cos(4θ))/2] dθ = π / 8
How is the gradient of a polar curve found?
Convert to Cartesian coordinates and use dy/dx. In polar form:
x = r * cos(θ), y = r * sin(θ)
dy/dx = (dy/dθ) / (dx/dθ)
Example: Find the gradient of r = 2sin(2θ) at θ = π/4.
- x = r * cos(θ) = 2sin(2θ) * cos(θ)
- y = r * sin(θ) = 2sin(2θ) * sin(θ)
- Gradient (dy/dx) at θ = π/4 is -1.