Radial Slope Slides Unit: Radial Calculus
Slope of the Circle
Deriving the Cartesian slope \( \frac{dy}{dx} \) for curves defined by \( r = f(\theta) \).
Lesson 1.1: The Polar Derivative
The Challenge
01 // Hook
Imagine we have an Archimedean Spiral: \[ r = \theta \]
We want to find the Cartesian slope (\( \frac{dy}{dx} \)) at exactly \( \theta = \frac{\pi}{2} \).
"Why can't we just use \( \frac{dr}{d\theta} \)? What does that rate actually represent?"
Polar Plane Interface
The Parametric Bridge
02 // Foundations
To find \( \frac{dy}{dx} \), we must recall our coordinate conversions:
\( x = r \cos \theta \)
\( y = r \sin \theta \)
Since \( r \) is a function of \( \theta \) (\( r = f(\theta) \)), we can view these as parametric equations where \( \theta \) is the parameter.
The Core Logic:
\[ \frac{dy}{dx} = \frac{\frac{dy}{d\theta}}{\frac{dx}{d\theta}} \]
If we can differentiate our conversion equations with respect to \( \theta \), we win.
The Full Derivation
03 // Derivation
Applying the Product Rule to \( x = f(\theta) \cos \theta \) and \( y = f(\theta) \sin \theta \):
Differentiating x
\[ \frac{dx}{d\theta} = \frac{dr}{d\theta} \cos \theta - r \sin \theta \]
Differentiating y
\[ \frac{dy}{d\theta} = \frac{dr}{d\theta} \sin \theta + r \cos \theta \]
The Final Formula
\[ \frac{dy}{dx} = \frac{f'(\theta) \sin \theta + f(\theta) \cos \theta}{f'(\theta) \cos \theta - f(\theta) \sin \theta} \]
Radial Blueprint: Example
04 // Application
Find slope of \( r = 2 + 2\cos\theta \) at \( \theta = \frac{\pi}{2} \).
Step 1: Find \( r(\frac{\pi}{2}) = 2 + 0 = 2 \)
Step 2: Find \( \frac{dr}{d\theta} = -2\sin\theta \)
Step 3: Find \( \frac{dr}{d\theta} \big|_{\theta=\frac{\pi}{2}} = -2(1) = -2 \)
Plugging into the formula:
\[ \frac{dy}{dx} = \frac{(-2)(1) + (2)(0)}{(-2)(0) - (2)(1)} \]
Slope = 1
Does this make geometric sense on the cardioid?
Radial Mastery
Key Takeaways
Slope is ratio of vertical to horizontal change.
Parametric logic bridges polar and Cartesian.
Product rule is non-negotiable!
The "Wait" Moment
What happens if the denominator \( \frac{dx}{d\theta} \) is zero? What does that mean for the tangent line?
Next Lesson: Horizontal & Vertical Bounds
Product Rule Bridge Worksheet Radial Calculus
Worksheet 1.1 // The Polar Derivative Bridge
Student Engineering Log
Name:
Date:
Objective: Derive the slope formula \( \frac{dy}{dx} \) using the product rule and apply it to find tangent lines for polar curves.
1
The Blueprint Derivation
Given a polar function \( r = f(\theta) \), we define its Cartesian coordinates as:
\( x = f(\theta) \cos \theta \)
\( y = f(\theta) \sin \theta \)
Use the Product Rule to find the derivatives with respect to \( \theta \):
A. Calculate \( \frac{dx}{d\theta} \)
B. Calculate \( \frac{dy}{d\theta} \)
Construct the ratio for \( \frac{dy}{dx} \):
\( \frac{dy}{dx} = \) ____________________________________________________________________
2
Field Calculations
Problem 1: The Cardio-Slope
Find the slope of the tangent line to the curve \( r = 1 + \sin \theta \) at the point where \( \theta = \frac{\pi}{3} \).
1. Find \( r \) and \( r' \) at \( \theta = \frac{\pi}{3} \).
2. Evaluate \( \frac{dy}{d\theta} \) and \( \frac{dx}{d\theta} \).
3. Solve for the final ratio.
Problem 2: The Spiral Tangent
Determine the slope of the Archimedean spiral \( r = 2\theta \) at \( \theta = \pi \).
Challenge: Write the equation of the tangent line in Cartesian form \( y - y_1 = m(x - x_1) \).
RADIAL CALC // BLUEPRINT 1.1 COPYRIGHT 2026 // CALCULUS CURRICULUM
Polar Slope Teacher Guide Teacher Reference Guide
Answer Key 1.1
Lesson 1: Slope of the Circle
The Polar Derivative Bridge
1. The Blueprint Derivation Key
A. Step-by-Step for \( \frac{dx}{d\theta} \)
\( x = r \cos \theta \)
Using product rule: \( \frac{dx}{d\theta} = \frac{dr}{d\theta}(\cos \theta) + r(-\sin \theta) \)
\( \frac{dx}{d\theta} = \frac{dr}{d\theta} \cos \theta - r \sin \theta \)
B. Step-by-Step for \( \frac{dy}{d\theta} \)
\( y = r \sin \theta \)
Using product rule: \( \frac{dy}{d\theta} = \frac{dr}{d\theta}(\sin \theta) + r(\cos \theta) \)
\( \frac{dy}{d\theta} = \frac{dr}{d\theta} \sin \theta + r \cos \theta \)
\( \frac{dy}{dx} = \frac{\frac{dr}{d\theta} \sin \theta + r \cos \theta}{\frac{dr}{d\theta} \cos \theta - r \sin \theta} \)
2. Field Calculation Solutions
Problem 1: \( r = 1 + \sin \theta \) at \( \theta = \frac{\pi}{3} \)
\( r(\frac{\pi}{3}) = 1 + \frac{\sqrt{3}}{2} = \frac{2+\sqrt{3}}{2} \)
\( \frac{dr}{d\theta} = \cos \theta \implies \frac{dr}{d\theta}(\frac{\pi}{3}) = \frac{1}{2} \)
Final Result:
\( \frac{dy}{dx} = -1 \)
Note: The calculation simplifies beautifully due to symmetry.
Problem 2: \( r = 2\theta \) at \( \theta = \pi \)
\( r(\pi) = 2\pi \)
\( \frac{dr}{d\theta} = 2 \)
\( \frac{dx}{d\theta} = (2)(-1) - (2\pi)(0) = -2 \)
\( \frac{dy}{d\theta} = (2)(0) + (2\pi)(-1) = -2\pi \)
Final Equation:
\( m = \frac{-2\pi}{-2} = \pi \)
Point: \( (-2\pi, 0) \)
Eq: \( y = \pi(x + 2\pi) \)
Common Pitfalls to Watch For
The "Fraction Flip": Students often confuse \( \frac{dy/d\theta}{dx/d\theta} \) with its reciprocal. Remind them: \( \text{slope} = \text{vertical} / \text{horizontal} \).
The Sign Trap: In the denominator, \( \frac{dx}{d\theta} \) has a negative sign because of the derivative of cosine. This is a very frequent algebraic error.
Chain Rule Ignorance: If \( r = \sin(2\theta) \), emphasize that \( \frac{dr}{d\theta} = 2\cos(2\theta) \).
Radial Bounds Slides Unit: Radial Calculus
Horizontal & Vertical Bounds
Defining the geometric limits of polar curves through parametric differentiation.
Lesson 1.2: Boundary Analysis
Geometric Intuition
01 // Visualization
Where does a polar curve stop going up? Where does it reach its leftmost edge?
Horizontal Tangents
Occur when the curve is moving purely horizontally (\( \frac{dy}{dx} = 0 \)).
Vertical Tangents
Occur when the curve is moving purely vertically (\( \frac{dy}{dx} \) is undefined).
dy/dx = 0
dx/dx undefined
The Algebraic Conditions
02 // The Math
Horizontal
\[ \frac{dy}{d\theta} = 0 \]
The numerator of our slope formula must vanish.
Condition: \( \frac{dx}{d\theta} \neq 0 \)
Vertical
\[ \frac{dx}{d\theta} = 0 \]
The denominator of our slope formula must vanish.
Condition: \( \frac{dy}{d\theta} \neq 0 \)
Operational Strategy
03 // Workflow
1
Find expressions for \( \frac{dy}{d\theta} \) and \( \frac{dx}{d\theta} \) using the Product Rule.
2
Set the relevant derivative to zero and solve the resulting trigonometric equation.
3
Verify that both derivatives are not zero simultaneously (the indeterminate case).
Pro Tip: Double Angle Identities
Many polar derivations result in expressions like \( \sin\theta\cos\theta \). Recall that \( 2\sin\theta\cos\theta = \sin(2\theta) \) to simplify your solving process!
Watch the Cusp!
What if \( \frac{dy}{d\theta} = 0 \) AND \( \frac{dx}{d\theta} = 0 \) at the same angle?
"If the numerator and denominator are both zero, the slope is indeterminate. You must use L'Hôpital's Rule or analyze the limit to find the true behavior."
This often occurs at the origin (the pole) in curves like the cardioid.
Cardioid Boundary Investigation Worksheet Radial Calculus
Inquiry 1.2 // Cardioid Boundary Investigation
Investigation Log
Name:
Date:
Target Curve
\( r = 1 + \cos \theta \)
"The heart-shaped cardioid. We seek to find the precise coordinates of its peaks, valleys, and lateral limits."
Phase 1: Differentiation
First, establish your foundational derivative expressions for the cardioid.
Calculate \( \frac{dy}{d\theta} \)
Calculate \( \frac{dx}{d\theta} \)
H
Phase 2: Horizontal Tangents
Set \( \frac{dy}{d\theta} = 0 \) and solve for \( \theta \) in the interval \( [0, 2\pi) \). Identify the points \( (r, \theta) \).
Resulting Angles
Geometric Meaning
These values represent the maximum and minimum heights of the cardioid.
V
Phase 3: Vertical Tangents
Set \( \frac{dx}{d\theta} = 0 \) and solve for \( \theta \) in the interval \( [0, 2\pi) \).
Cusp Alert
Did you find a value of \( \theta \) where both \( \frac{dx}{d\theta} \) and \( \frac{dy}{d\theta} \) are zero?
Which angle is it?
Final Conclusion
Sketch or describe the horizontal and vertical limits of this cardioid based on your work.
Horizontal Vertical Teacher Guide Teacher Reference Guide
Answer Key 1.2
Lesson 2: Horizontal & Vertical Bounds
Cardioid Investigation Key
Phase 1: Differentiation Core
For \( r = 1 + \cos\theta \), we have \( \frac{dr}{d\theta} = -\sin\theta \).
dy/d-theta
\( \frac{dy}{d\theta} = (-\sin\theta)\sin\theta + (1+\cos\theta)\cos\theta \)
\( \frac{dy}{d\theta} = -\sin^2\theta + \cos\theta + \cos^2\theta \)
\( \frac{dy}{d\theta} = 2\cos^2\theta + \cos\theta - 1 \)
dx/d-theta
\( \frac{dx}{d\theta} = (-\sin\theta)\cos\theta - (1+\cos\theta)\sin\theta \)
\( \frac{dx}{d\theta} = -\sin\theta\cos\theta - \sin\theta - \sin\theta\cos\theta \)
\( \frac{dx}{d\theta} = -\sin\theta(2\cos\theta + 1) \)
Phase 2: Horizontal Tangents Key
Solve \( 2\cos^2\theta + \cos\theta - 1 = 0 \). This is a quadratic in cosine: \( (2\cos\theta - 1)(\cos\theta + 1) = 0 \).
Roots
\( \cos\theta = 1/2 \implies \theta = \pi/3, 5\pi/3 \)
\( \cos\theta = -1 \implies \theta = \pi \)
Points (r, theta)
\( (1.5, \pi/3) \text{ and } (1.5, 5\pi/3) \)
\( (0, \pi) \) Cusp/Origin
Phase 3: Vertical Tangents Key
Solve \( -\sin\theta(2\cos\theta + 1) = 0 \).
Roots
\( \sin\theta = 0 \implies \theta = 0, \pi \)
\( \cos\theta = -1/2 \implies \theta = 2\pi/3, 4\pi/3 \)
Points (r, theta)
\( (2, 0) \), \( (0.5, 2\pi/3) \), \( (0.5, 4\pi/3) \)
\( (0, \pi) \) Cusp/Origin
The Cusp Discussion Guide
The Paradox: At \( \theta = \pi \), both derivatives are zero. Direct application of the formula gives \( 0/0 \).
This point is a cusp . The cardioid comes to a sharp point at the pole.
How to handle it:
Ask students: "If you approach \( \pi \) from the left and right, what happens to the slope?" Analysis via L'Hôpital reveals the limit is actually 0, but the direction of approach defines the visual 'sharpness'.
Pole Tangent Slides Unit: Radial Calculus
Passing the Pole
Investigating the specific behavior and tangent lines of polar curves as they cross the origin.
Lesson 1.3: Origin Dynamics
The Origin Mystery
01 // Observation
When a polar curve passes through the pole (origin), it means \( r = 0 \).
The Big Question:
"What is the slope of the curve at the exact moment it touches the center?"
Consider a 3-petaled rose: \( r = \cos(3\theta) \). It passes through the center three times. Are the slopes the same each time?
The Pole Simplification
02 // Theorem
Let's look at our general slope formula when \( r = 0 \):
\[ \frac{dy}{dx} = \frac{f'(\theta) \sin\theta + (0) \cos\theta}{f'(\theta) \cos\theta - (0) \sin\theta} \]
\[ \frac{dy}{dx} = \tan\theta \]
The Tangent Line Rule at the Pole
If \( r = 0 \) at \( \theta = \alpha \), then the line \( \theta = \alpha \) is tangent to the curve at the origin.
Operational Logic: Rose Curves
03 // Step-by-Step
How to find all tangent lines at the pole:
1
Set \( r = 0 \)
Identify all angles \( \theta \) where the curve crosses the origin.
2
Solve the Trig Equation
For \( r = \cos(2\theta) \), solve \( 2\theta = \frac{\pi}{2} + k\pi \).
3
State the Lines
Each angle \( \theta = \alpha \) is its own tangent line passing through the center.
"Remember: At the pole, the angle of the curve's entry is the slope's angle."
Radial Reflections
The "Pole" Shortcut
Finding derivatives at the pole is significantly faster than general slope calculations.
If r=0, slope = tan(θ)
Wait... what about r' ?
Does the rate of change of the radius matter at the pole?
Only to ensure the slope exists! If \( r' = 0 \) at the pole too, we are back to our "indeterminate" cusp analysis.
Next Session: Peak Performance Optimization
Rose Curve Petal Worksheet Radial Calculus
Worksheet 1.3 // The Petal Intersection
Origin Analysis Log
Name:
Date:
The Theorem
If \( r(\alpha) = 0 \) and \( r'(\alpha) \neq 0 \), then the line
\( \theta = \alpha \) is tangent to the curve at the pole.
"In this worksheet, we map the 'approach' paths of rose curves as they enter and leave the origin. Each crossing creates a distinct tangent line."
1
The Three-Petaled Rose
Function: \( r = \cos(3\theta) \)
Find all values of \( \theta \) in the interval \( [0, \pi) \) where the curve passes through the origin.
Tip: Set \( 3\theta = \frac{\pi}{2}, \frac{3\pi}{2}, \dots \)
Final Tangent Lines: θ = _______, θ = _______, θ = _______
2
The Eight-Petaled Challenge
Function: \( r = \sin(4\theta) \)
Determine all tangent lines at the pole for the interval \( [0, 2\pi) \).
Sketch Area
Conceptual Reflection
"If we know the tangent line at the pole is \( \theta = \frac{\pi}{4} \), what is the Cartesian slope \( m \) of that line? Explain how this confirms our simplification theorem \( m = \tan(\theta) \)."
Pole Behavior Teacher Guide Teacher Reference Guide
Answer Key 1.3
Lesson 3: Passing the Pole
Origin Dynamics & Rose Curves
1. Three-Petaled Rose: \( r = \cos(3\theta) \)
Interval: \( [0, \pi) \)
Set \( \cos(3\theta) = 0 \)
\( 3\theta = \frac{\pi}{2}, \frac{3\pi}{2}, \frac{5\pi}{2} \)
\( \theta = \frac{\pi}{6} \) (Slope: \( \tan(\frac{\pi}{6}) = \frac{\sqrt{3}}{3} \))
\( \theta = \frac{\pi}{2} \) (Slope: Undefined / Vertical)
\( \theta = \frac{5\pi}{6} \) (Slope: \( \tan(\frac{5\pi}{6}) = -\frac{\sqrt{3}}{3} \))
Notice how these three lines divide the plane into six equal sectors of 60 degrees.
2. Eight-Petaled Rose: \( r = \sin(4\theta) \)
Interval: \( [0, \pi) \). Note: Since the period is \( \frac{2\pi}{4} = \frac{\pi}{2} \), we check all multiples.
Set \( \sin(4\theta) = 0 \)
\( 4\theta = 0, \pi, 2\pi, 3\pi, 4\pi, \dots \)
\( \theta = 0 \) (Slope: 0 / Horizontal)
\( \theta = \frac{\pi}{4} \) (Slope: 1)
\( \theta = \frac{\pi}{2} \) (Slope: Undefined / Vertical)
\( \theta = \frac{3\pi}{4} \) (Slope: -1)
Teaching Note: For \( r = \sin(n\theta) \), if \( n \) is even, there are \( 2n \) petals. In the interval \( [0, \pi) \), there will be \( n \) crossings through the pole.
Conceptual Discussion Points
Why it works: Remind students that at the pole, the curve is moving directly along the radial line. The 'angle' of the ray becomes the 'direction' of the curve.
This is a rare moment in calculus where the geometric definition (the angle) perfectly matches the rate of change (the slope).
Visual Verification:
Show students a plot of \( r = \cos(3\theta) \) and overlay the lines \( \theta = \pi/6, \pi/2, 5\pi/6 \). The lines will perfectly 'hug' the petals as they enter the origin.
Radial Peak Slides Unit: Radial Calculus
Peak Polar Performance
Leveraging derivatives to find extreme values: maximum distance, maximum height, and geometric bounds.
Lesson 1.4: Optimization
Defining Extremas
01 // Classification
Max Distance
How far is the curve from the origin?
Solve \( \frac{dr}{d\theta} = 0 \)
Finding the 'tips' of petals or the bulge of a limaçon.
Max Height
What is the highest y-coordinate?
Solve \( \frac{dy}{d\theta} = 0 \)
Finding the vertical ceiling of the entire graph.
Max Width
What is the furthest x-coordinate?
Solve \( \frac{dx}{d\theta} = 0 \)
Defining the lateral boundaries of the curve.
Case Study: The Limaçon
02 // Deep Dive
\( r = 2 + 4\cos\theta \)
This curve has an inner loop. We want to find its maximum width (maximum x-value).
Procedure:
Express \( x = r \cos\theta \)
Express \( x = (2 + 4\cos\theta)\cos\theta \)
Differentiate: \( \frac{dx}{d\theta} = -2\sin\theta - 8\cos\theta\sin\theta \)
Find zeros!
Optimizing Boundary X
Optimization vs. Tangency
03 // Comparison
Tangency Goal
Finding the slope at a specific point.
Uses the full formula: \[ \frac{dy}{dx} = \frac{dy/d\theta}{dx/d\theta} \]
Optimization Goal
Finding the location of an extreme value.
Focuses only on one part of the derivative (numerator or denominator).
"Optimization is about finding where the slope is horizontal or vertical."
Radial Finish Line
Common Identities
\( \sin(2\theta) = 2\sin\theta\cos\theta \)
\( \cos(2\theta) = 2\cos^2\theta - 1 \)
\( \cos(2\theta) = 1 - 2\sin^2\theta \)
Final Workshop Prep
Tomorrow, you will synthesize all rules: derivation, tangency, and optimization.
Next: Mastery Assessment Workshop
Limaçon Width Investigation Worksheet Radial Calculus
Inquiry 1.4 // The Widest Limaçon
Optimization Log
Name:
Date:
Target Function
r = 2 + 4 cos θ
"A limaçon with an inner loop. Your task: Define its extreme boundaries."
Phase 1: Horizontal Span (Max Width)
To find the absolute maximum and minimum x-values, we must differentiate \( x(\theta) = (2 + 4\cos\theta)\cos\theta \).
Step 1: Find \( \frac{dx}{d\theta} \)
Step 2: Solve \( \frac{dx}{d\theta} = 0 \)
Factor or use the quadratic formula for cosine.
Coordinates of Lateral Extrema:
Rightmost Point (x, y):
Leftmost Point (x, y):
Phase 2: Vertical Reach (Max Height)
Find the highest point on the curve by optimizing \( y(\theta) = (2 + 4\cos\theta)\sin\theta \).
Identity Tip
When solving for \( y \), you may encounter \( \cos(2\theta) \) or \( \cos^2\theta \). Ensure all terms are in the same trig function before solving!
Result
Maximum \( y \)-value: ________
Boundary Comparison
"Compare the point with the maximum \( r \)-value to the point with the maximum \( x \)-value. Are they the same? Why or why not?"
Optimization Teacher Guide Teacher Reference Guide
Answer Key 1.4
Lesson 4: Peak Polar Performance
Limaçon Optimization Key
Phase 1: Max Width (\( x \)-optimization)
Function: \( x = (2 + 4\cos\theta)\cos\theta = 2\cos\theta + 4\cos^2\theta \)
Derivation
\( \frac{dx}{d\theta} = -2\sin\theta - 8\cos\theta\sin\theta = -2\sin\theta(1 + 4\cos\theta) \)
Set to zero:
1. \( \sin\theta = 0 \implies \theta = 0, \pi \)
2. \( \cos\theta = -1/4 \implies \theta \approx 1.82, 4.46 \text{ rad} \)
Rightmost
\( \theta = 0 \implies r = 6, x = 6 \)
Leftmost
\( \theta = \pi \implies r = -2, x = 2 \)
Wait! r=-2 at θ=π is x=2. The leftmost point is actually at \(\theta = 1.82\).
Teacher Insight: This is a great moment to discuss how \( r \) being negative 'flips' the point across the origin. At \( \theta = \pi \), we are on the positive x-axis because \( r \) is negative.
Phase 2: Max Height (\( y \)-optimization)
Function: \( y = (2 + 4\cos\theta)\sin\theta = 2\sin\theta + 4\sin\theta\cos\theta = 2\sin\theta + 2\sin(2\theta) \)
\( \frac{dy}{d\theta} = 2\cos\theta + 4\cos(2\theta) = 2\cos\theta + 4(2\cos^2\theta - 1) \)
\( \frac{dy}{d\theta} = 8\cos^2\theta + 2\cos\theta - 4 = 0 \)
Divide by 2: \( 4\cos^2\theta + \cos\theta - 2 = 0 \)
Solve via Quadratic Formula:
\( \cos\theta = \frac{-1 \pm \sqrt{1 - 4(4)(-2)}}{2(4)} = \frac{-1 \pm \sqrt{33}}{8} \)
Max height occurs at \( \cos\theta \approx 0.593 \implies \theta \approx 0.936 \text{ rad} \).
The "Inner Loop" Trap
The Sign Swap: Limaçons with inner loops (\( a < b \)) have regions where \( r \) is negative. This flips the point to the opposite quadrant.
Students will calculate \( \theta = \pi \) and think it's the leftmost point. In reality, \( r(\pi) = -2 \), which puts the point at \( (x,y) = (2, 0) \) on the right side!
Correction Strategy:
Always have students calculate the actual Cartesian coordinates \( (x, y) \) after finding \( \theta \) to verify their geometric intuition. Don't trust the angle alone!
Workshop Problem Pack Radial Calculus
Assessment 1.5 // Mastery Workshop Problem Pack
Synthesis Lab Log
Name:
Date:
Level 1: Synthesis
The Lemniscate Tangent
Consider the lemniscate defined by \( r^2 = 4\cos(2\theta) \).
Find the slope of the tangent line at the point where \( \theta = \frac{\pi}{6} \). Hint: Use implicit differentiation for dr/d-theta.
Level 2: Architecture
The Structural Bounds
A satellite orbit is modeled by the polar equation \( r = \frac{4}{2 + \cos\theta} \).
Determine the coordinates \( (r, \theta) \) of the points where the satellite is moving purely vertically in the Cartesian plane.
Work Area A: dx/d-theta derivation
Work Area B: Trig solving
Level 3: Mastery
The Petal Conundrum
For the curve \( r = 1 + 2\sin(3\theta) \):
List all equations of the tangent lines at the pole in the interval \( [0, \pi) \).
UNIT ASSESSMENT // RADIAL 1.5
TOTAL POINTS: /30
Error Analysis Critique Sheet Radial Calculus
Analysis 1.5 // The Flawed Blueprint Activity
Critique Log
Name:
Date:
The "Mistaken" Solution
Below is a student's attempt to find the slope of the curve \( r = 4\theta \) at \( \theta = \pi/4 \). There are three major conceptual errors in their work. Your mission: Find them, explain them, and fix them.
Student Work:
Step 1: \( \frac{dr}{d\theta} = 4 \)
Step 2: \( \text{Slope} = \frac{dr}{d\theta} \cos\theta - r\sin\theta \) # Line A
Step 3: \( \text{Slope} = 4 \cos(\pi/4) - 4(\pi/4) \sin(\pi/4) \)
Step 4: \( \text{Slope} = 4(1) - \pi(1) \) # Line B
Step 5: \( \text{Final Answer: } 4 - \pi \)
Critique 1: Formulaic Error
Identify the error in Line A . What did the student forget about the polar slope formula?
Critique 2: Unit Circle Error
Identify the error in Line B . What is wrong with their evaluation of the trigonometric values?
Critique 3: Structural Repair
Perform the correct calculation for the slope \( \frac{dy}{dx} \) at \( \theta = \pi/4 \).
The "Why" Behind the Errors
"Why is it common for students to confuse \( \frac{dr}{d\theta} \) with the Cartesian slope \( \frac{dy}{dx} \)? How would you explain the difference to a student starting this unit?"
Radial Mastery Assessment Key Teacher Reference Guide
Mastery Key 1.5
Lesson 5: Mastery Workshop
Synthesis & Assessment Key
Problem Pack Solutions
1. Lemniscate: \( r^2 = 4\cos(2\theta) \) at \( \theta = \pi/6 \)
Implicitly: \( 2r \frac{dr}{d\theta} = -8\sin(2\theta) \implies \frac{dr}{d\theta} = \frac{-4\sin(2\theta)}{r} \)
At \( \pi/6 \): \( r^2 = 4\cos(\pi/3) = 2 \implies r = \sqrt{2} \)
\( \frac{dr}{d\theta} = \frac{-4\sin(\pi/3)}{\sqrt{2}} = \frac{-4(\sqrt{3}/2)}{\sqrt{2}} = -\sqrt{6} \)
Plug into full slope formula: \( \text{Slope} = 0 \) (Numerical check confirms horizontal tangent).
2. Satellite Bounds (\( dx/d\theta = 0 \))
\( r = 4(2 + \cos\theta)^{-1} \)
\( x = r\cos\theta = \frac{4\cos\theta}{2+\cos\theta} \)
Using Quotient Rule: \( \frac{dx}{d\theta} = \frac{-4\sin\theta(2+\cos\theta) - (-\sin\theta)(4\cos\theta)}{(2+\cos\theta)^2} \)
\( -8\sin\theta - 4\sin\theta\cos\theta + 4\sin\theta\cos\theta = 0 \implies -8\sin\theta = 0 \)
\( \theta = 0, \pi \). Points: \( (4/3, 0) \) and \( (4, \pi) \).
3. Petal Tangents: \( r = 1 + 2\sin(3\theta) \) at pole
Set \( 1 + 2\sin(3\theta) = 0 \implies \sin(3\theta) = -1/2 \)
\( 3\theta = 7\pi/6, 11\pi/6, 19\pi/6, \dots \)
\( \theta = 7\pi/18, 11\pi/18, 19\pi/18 \) (Only first two in [0, \pi)).
Critique Activity Key
Error 1 (Structural): The student used \( \frac{dx}{d\theta} \) as the formula for slope. Slope is \( \frac{dy/d\theta}{dx/d\theta} \).
Error 2 (Trigonometric): The student evaluated \( \cos(\pi/4) = 1 \) and \( \sin(\pi/4) = 1 \). The correct value is \( \sqrt{2}/2 \).
Correct Calculation:
\( dr/d\theta = 4, r = \pi \)
\( dy/d\theta = 4(\sqrt{2}/2) + \pi(\sqrt{2}/2) \)
\( dx/d\theta = 4(\sqrt{2}/2) - \pi(\sqrt{2}/2) \)
\( \frac{dy}{dx} = \frac{4+\pi}{4-\pi} \)
Pacing & Facilitation
0-15m: Critique
Individual work. Emphasize that finding errors is a higher-level cognitive skill than solving from scratch.
15-45m: Problem Pack
Collaborative workshop. Students should verify lemniscate slopes using graphing software (Desmos/GeoGebra).
45-60m: Synthesis
Whole class debrief on Problem 3. Why did the tangent lines change from Lesson 3? (Added constant shifts the crossings).