Purcell EM Problem 1.2: Theory Behind Numerical Solution?

Click For Summary
SUMMARY

The discussion centers on solving the equation $$\frac{1}{(y+\sqrt{3})^2} - 2 \cdot \frac{1}{1 + y^2} \left( \frac{y}{\sqrt{1+y^2}} \right) = 0$$ using fixed-point iteration, leading to the result $$y \approx 0.1463$$. The iterative method involves using an initial guess for y, calculating the right-hand side, and using the result for subsequent iterations. The method is confirmed to be fixed-point iteration rather than Newton's Method, which focuses on finding roots of functions.

PREREQUISITES
  • Understanding of fixed-point iteration methods
  • Familiarity with numerical analysis concepts
  • Basic algebra and manipulation of equations
  • Knowledge of convergence criteria for iterative methods
NEXT STEPS
  • Study fixed-point iteration techniques in numerical analysis
  • Learn about convergence properties of iterative methods
  • Explore Newton's Method and its applications in root-finding
  • Practice solving equations using numerical methods with software tools like MATLAB or Python
USEFUL FOR

Students and professionals in mathematics, engineering, and computer science who are interested in numerical methods for solving equations and understanding iterative techniques.

yucheng
Messages
232
Reaction score
57
Homework Statement
(Purcell Electricity and Magnetism Problem 1.2)
Relevant Equations
N/A
The author start of with $\frac{1}{(y+\sqrt{3})^2} - 2 \cdot \frac{1}{1 + y^2} \left( \frac{y}{\sqrt{1+y^2}} \right) = 0$ and arrives at the equation $y = \frac{(1+y^2)^{3/2}}{2(y+\sqrt{3})^2}$ The solution is merely by iterating (use an initial guess value of y, calculate the RHS, then use this answer for the next calculation) Then the answer forms a converging sequence, with the limit ##y \approx 0.1463##. Which method is this supposed to be? Newton's Method?
 
Last edited:
Physics news on Phys.org
yucheng said:
Homework Statement:: N/A
Relevant Equations:: N/A

The author start of with $$\frac{1}{(y+\sqrt{3})^2} - 2 \cdot \frac{1}{1 + y^2} \left( \frac{y}{\sqrt{1+y^2}} \right) = 0$$ and arrives at the equation $$y = \frac{(1+y^2)^{3/2}}{2(y+\sqrt{3})^2}$$ The solution is merely by iterating (use an initial guess value of y, calculate the RHS, then use this answer for the next calculation) Then the answer forms a converging sequence, with the limit ##y \approx 0.1463##. Which method is this supposed to be? Newton's Method?
No, not really. It's the fixed-point-iteration because we are looking for a fixed point ##y=f(y)## where ##f(y)## is the function on the right.

Newton is looking for zeroes. Originally by approximating with ##y_0+p## and using only the constant and linear term for ##p##, and ##y_0## the starting guess: ##0=y-f(y)=y_0+p-f(y_0+p)=a_1+b_1p+ r(p)## then solve for ##0=a_1+b_1p_1## and continue with ##y_1 :=p_1+p_2## and solve ##0=a_2+b_2p_3## etc.
 
  • Like
Likes   Reactions: yucheng

Similar threads

  • · Replies 8 ·
Replies
8
Views
2K
Replies
3
Views
2K
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 9 ·
Replies
9
Views
2K
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
1K