Newton's Method
Using derivatives to find numerical solutions to equations
🎯 Newton's Method
What is Newton's Method?
Newton's Method (also called the Newton-Raphson Method) is a powerful technique for finding approximate solutions to equations of the form .
💡 Key Idea: Start with a guess, use the tangent line to get a better guess, and repeat!
The Problem
We want to solve , but:
- Can't solve algebraically
- Need a numerical approximation
Example: Solve
No algebraic method exists! Newton's Method to the rescue! 🚀
The Method (How It Works)
The Recursive Formula
Start with an initial guess , then generate better approximations:
Repeat this process until the values converge!
Geometric Interpretation
Step 1: Start at point on the curve
Step 2: Draw the tangent line at that point
Step 3: Find where the tangent line crosses the -axis
Step 4: This -intercept becomes (your next guess)
Step 5: Repeat!
The tangent line equation at is:
Setting and solving for gives:
This is !
Step-by-Step Process
Step 1: Make sure exists and can be calculated
Step 2: Choose an initial guess (look at a graph if possible)
Step 3: Apply the formula:
Step 4: Repeat with to get :
Step 5: Continue until:
- is very small, OR
- 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 (starting with ).
Step 1: Set up the equation
We want , so we need to solve
Rewrite as:
Step 2: Find
Step 3: Write Newton's formula
Simplify:
Step 4: Iterate starting from
Check: ✓
After just 4 iterations, we have 8 decimal places of accuracy!
Example 2: Solving a Polynomial
Find the root of near .
Step 1: Find
Step 2: Newton's formula
Step 3: Iterate starting from
(converged!)
Answer: The root is approximately
Check: ✓
Example 3: Finding Where Functions Intersect
Find where (i.e., solve ).
Step 1: Set up
Step 2: Choose initial guess
From a graph, the intersection is near
Let
Step 3: Newton's formula
Step 4: Iterate
(converged!)
Answer: at
When Newton's Method Works Best
Good Conditions
Newton's Method converges quickly when:
- near the root
- Good initial guess (close to actual root)
- is smooth (continuous, differentiable)
- doesn't change sign near the root
Convergence Rate
When it works, Newton's Method has quadratic convergence:
- The number of correct digits roughly doubles each iteration!
- This is why we got 8 decimals in just 4 steps for
When Newton's Method Fails
Failure Case 1: Division by Zero
If , the formula breaks down!
Example: Finding root of starting at
→ Cannot compute !
Failure Case 2: Cycles
Sometimes the iterates go in circles and never converge.
Example: with creates a 2-cycle
Failure Case 3: Divergence
Poor initial guess can cause iterates to move away from the root.
Example: Finding but starting with can diverge
Failure Case 4: Multiple Roots
At a multiple root (where ), convergence is much slower.
Example: has a double root at
Tips for Choosing
Strategy 1: Use a Graph
Sketch or plot to see where it crosses the -axis
Strategy 2: Try Simple Values
Test , etc. and see which gives closest to 0
Strategy 3: Use Algebra
Simplify or factor as much as possible first
Strategy 4: Intermediate Value Theorem
Find and where and have opposite signs
The root is between and → use
How Many Iterations?
Stopping Criteria
Stop when ONE of these is true:
-
Relative error: (e.g., )
-
Absolute error:
-
Function value:
-
Maximum iterations: Reached some limit (e.g., 50 iterations)
Applications of Newton's Method
Application 1: Square Roots
The formula for :
This was the ancient Babylonian method!
Application 2: Finding Reciprocals
To compute , solve :
Used in calculators (avoids division!)
Application 3: Optimization
Newton's Method can optimize by finding where
Apply the method to !
Application 4: Root-Finding in Engineering
Used in:
- Solving nonlinear circuits
- Finding equilibrium points
- Solving transcendental equations
- Computer graphics and animation
⚠️ Common Mistakes
Mistake 1: Wrong Sign
The formula is (MINUS, not plus!)
Mistake 2: Derivative of the Whole Expression
Calculate and separately, don't mix them up!
Mistake 3: Stopping Too Early
Check that consecutive iterates are actually close before stopping
Mistake 4: Bad Initial Guess
If iterates jump around wildly, try a different
Mistake 5: Not Checking the Answer
Always verify: plug your answer into to see if it's close to 0!
Comparison with Other Methods
Bisection Method
- Pros: Always converges (if conditions met), simple
- Cons: Slow (linear convergence)
Newton's Method
- Pros: Very fast (quadratic convergence)
- Cons: Requires derivative, can fail
Secant Method
- Pros: No derivative needed, faster than bisection
- Cons: Slower than Newton's, can still fail
Modified Newton's Method
For multiple roots (where ), use:
where is the multiplicity of the root.
This restores quadratic convergence!
The Big Picture
Historical Significance
- 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 and clearly
- Set up the formula:
- Choose a reasonable (use a graph or test values)
- Calculate systematically - make a table with columns for , , , ,
- Check convergence - are successive values getting closer?
- Verify your answer by substituting into
- Keep 6-8 decimal places during calculations to avoid rounding errors
📚 Practice Problems
1Problem 1medium
❓ Question:
Use Newton's Method to approximate with initial guess . Perform 3 iterations.
💡 Show Solution
Step 1: Set up the equation
We want , so we need to solve
Let
Step 2: Find
Step 3: Newton's formula
Simplify:
Step 4: First iteration ()
Step 5: Second iteration ()
Step 6: Third iteration ()
Step 7: Verify convergence
and → Converged!
Check: ✓
Answer: (after 3 iterations)
Actual value: (excellent match!)
2Problem 2hard
❓ Question:
Find the positive solution to using Newton's Method. Start with and perform iterations until consecutive approximations differ by less than 0.001.
💡 Show Solution
Step 1: Rewrite as
Step 2: Find
Step 3: Newton's formula
Step 4: Iteration 0 → 1
Wait, this doesn't look right. Let me recalculate more carefully:
This suggests our initial guess led to , but . Let me try :
Restart with
Iteration 1 → 2
Check convergence
✓
Answer:
Verify: and ✓
3Problem 3expert
❓ Question:
Show what happens when Newton's Method is applied to with initial guess . Does it converge to the root at ?
💡 Show Solution
Step 1: Set up
, and we're looking for the root at
Step 2: Find
Step 3: Newton's formula
Step 4: Iterate from
The iterates are:
Step 5: Analysis
The sequence diverges! The values alternate in sign and grow in magnitude.
Why does this happen?
At the root , we have but is undefined (vertical tangent).
The tangent line at any point is very steep, causing the next iterate to overshoot dramatically.
Answer: Newton's Method fails for this function. The iterates diverge because doesn't exist and the function has a vertical tangent at the root.
Lesson: Newton's Method requires near the root!
Practice with Flashcards
Review key concepts with our flashcard system
Browse All Topics
Explore other calculus topics