๐ Worked Example: Related Rates โ Expanding Circle
Problem:
A stone is dropped into a still pond, creating a circular ripple. The radius of the ripple is increasing at a rate of 2 cm/s. How fast is the area of the circle increasing when the radius is 10 cm?
Using derivatives to find numerical solutions to equations
How can I study Newton's Method effectively?โพ
Start by reading the study notes and working through the examples on this page. Then use the flashcards to test your recall. Practice with the 5 problems provided, checking solutions as you go. Regular review and active practice are key to retention.
Is this Newton's Method study guide free?โพ
Yes โ all study notes, flashcards, and practice problems for Newton's Method on Study Mondo are 100% free. No account is needed to access the content.
What course covers Newton's Method?โพ
Newton's Method is part of the AP Calculus AB course on Study Mondo, specifically in the Applications of Derivatives section. You can explore the full course for more related topics and practice resources.
Are there practice problems for Newton's Method?
f
(
x
)
=
0
Can't solve algebraically
Need a numerical approximation
Example: Solve x5โ2xโ1=0
No algebraic method exists! Newton's Method to the rescue! ๐
The Method (How It Works)
The Recursive Formula
Start with an initial guess x0โ, then generate better approximations:
xn+1โ=xnโโfโฒ(xnโ)f(xnโ)โ
Repeat this process until the values converge!
Geometric Interpretation
Step 1: Start at point (xnโ,f(xnโ)) on the curve
Step 2: Draw the tangent line at that point
Step 3: Find where the tangent line crosses the x-axis
Step 4: This x-intercept becomes xn+1โ (your next guess)
Step 5: Repeat!
The tangent line equation at (xnโ,f(xnโ)) is:
yโf(xnโ)=fโฒ(xnโ)(xโx
Setting y=0 and solving for x gives:
x=xnโโfโฒ(xnโ)f(xnโ)โ
This is xn+1โ!
Step-by-Step Process
Step 1: Make sure fโฒ(x) exists and can be calculated
Step 2: Choose an initial guess x0โ (look at a graph if possible)
Step 3: Apply the formula:
x1โ=x0โโfโฒ(x0โ)f(x0โ)โ
Step 4: Repeat with x1โ to get x2โ:
x2โ=x1โโfโฒ(x
Step 5: Continue until:
โฃxn+1โโxnโโฃ is very small, OR
โฃf(xnโ)โฃ is very close to 0, OR
You've reached a specified number of iterations
Example 1: Finding a Square Root
Use Newton's Method to approximate 2โ (starting with x0โ=1).
Discovered by Isaac Newton (1669) and Joseph Raphson (1690)
One of the first iterative numerical methods
Foundation for modern computational mathematics
Modern Importance
Built into calculators and computer software
Basis for more advanced methods
Essential in scientific computing
๐ Practice Strategy
Write down f(x) and fโฒ(x) clearly
Set up the formula: xn+1โ=xnโโfโฒ(x
Choose a reasonable x0โ (use a graph or test values)
Calculate systematically - make a table with columns for n, xnโ, f(xnโ), ,
Check convergence - are successive values getting closer?
Verify your answer by substituting into f(x)
Keep 6-8 decimal places during calculations to avoid rounding errors
โ
x0โ=2
๐ก Show Solution
Step 1: Set up the equation
We want 310โ, so we need to solve x3=10
Let f(x)=x3โ10=0
Step 2: Find fโฒ(x)
fโฒ(x)=3x2
Step 3: Newton's formula
xn+1โ=xnโโ
Simplify:
xn+1โ=x
Step 4: First iteration (n=0)
x0โ=2
x1โ=3(2
Step 5: Second iteration (n=1)
x1โ=2.1667
x2โ=3(2.1667)2
=3(4.6946)2(10.1584)+10โ=
Step 6: Third iteration (n=2)
x2โ=2.1544
x3โ=3(2.1544)2
=3(4.6414)2(10.0008)+10โ=
Step 7: Verify convergence
x2โโ2.1544 and x3โโ2.1544 โ Converged!
Check: (2.1544)3โ10.00 โ
Answer: 310โโ2.1544 (after 3 iterations)
Actual value: 310โโ2.154434... (excellent match!)
2Problem 2hard
โ Question:
Find the positive solution to ex=3x using Newton's Method. Start with x0โ=1 and perform iterations until consecutive approximations differ by less than 0.001.
๐ก Show Solution
Step 1: Rewrite as f(x)=0
ex=
3Problem 3expert
โ Question:
Show what happens when Newton's Method is applied to f(x)=x1/3 with initial guess x0โ=1. Does it converge to the root at x=0?
๐ก Show Solution
Step 1: Set up
f(x)=x1/3, and we're looking for the root at x=0
4Problem 4medium
โ Question:
Use Newton's method with xโ = 2 to find one iteration approximating the root of f(x) = xยฒ - 5.
Yes, this page includes 5 practice problems with detailed solutions. Each problem includes a step-by-step explanation to help you understand the approach.
nโ
)
1
โ
)
f(x1โ)
โ
2
โ
โ
2
)
โ
=
โ
1
โ
โ
a
โ
)
n
โ
)
nโ
)
f(xnโ)
โ
fโฒ(xnโ)
xn+1โ
3xn2โ
xn3โโ10
โ
nโ
โ
3xn2โxn3โโ10โ=
3xn2โ3xn3โโ(xn3โโ10)โ=
3xn2โ2xn3โ+10โ
)
2
2(2)3+10
โ
=
3(4)2(8)+10โ=
1216+10โ=
1226โโ
2.1667
2(2.1667)3+10
โ
14.083820.3168+10โ
=
14.083830.3168โโ
2.1544
2(2.1544)3+10
โ
13.924220.0016+10โ
=
13.924230.0016โโ
2.1544
3xโน
f(x)=
exโ
3x=
0
Step 2: Find fโฒ(x)
fโฒ(x)=exโ3
Step 3: Newton's formula
xn+1โ=xnโโexnโโ3exnโโ3x
Step 4: Iteration 0 โ 1
x0โ=1
f(1)=e1โ3(1)=2.7183โ3=โ0.2817
fโฒ(1)=e1โ3=2.7183โ3=โ0.2817
x1โ=1โโ0.2817โ0.2817โ=1โ1=0
Wait, this doesn't look right. Let me recalculate more carefully:
f(1)=eโ3โ2.7183โ3=โ0.2817
fโฒ(1)=eโ3โโ0.2817
x1โ=1โโ0.2817โ0.2817โ=1โ1.0=0
This suggests our initial guess led to x1โ=0, but e0=1๎ =0. Let me try x0โ=1.5:
The sequence diverges! The values alternate in sign and grow in magnitude.
Why does this happen?
At the root x=0, we have f(0)=0 but fโฒ(0) is undefined (vertical tangent).
The tangent line at any point (xnโ,xn1/3โ) is very steep, causing the next iterate to overshoot dramatically.
Answer: Newton's Method fails for this function. The iterates diverge because fโฒ(0) doesn't exist and the function has a vertical tangent at the root.
Lesson: Newton's Method requires fโฒ(x)๎ =0 near the root!