I have a question about Newton's Method

Click For Summary
SUMMARY

Newton's Method is a numerical technique used to estimate the roots of real-valued functions, such as finding the x-intercept of f(x) = x^7 - 1000. While plotting the function can provide insight into selecting an appropriate initial guess (x1), it is not strictly necessary for the method's application, especially in automated optimization codes. For functions like f(x) = x^7 - 1000, which is strictly convex in the interval x >= 0, any positive starting point will yield rapid convergence, assuming no roundoff errors occur.

PREREQUISITES
  • Understanding of Newton's Method and its application in root-finding
  • Familiarity with convex functions and their properties
  • Basic knowledge of numerical optimization techniques
  • Experience with graphing functions to visualize roots
NEXT STEPS
  • Study the concept of "safeguarded Newton" methods for improved reliability
  • Explore the properties of strictly convex functions and their implications for root-finding
  • Learn about numerical optimization libraries that implement Newton's Method
  • Practice using software tools to graph functions and apply Newton's Method
USEFUL FOR

Mathematicians, engineers, computer scientists, and students interested in numerical methods and optimization techniques.

gungun8799
Messages
5
Reaction score
0
Hi, guys, I have a questions to ask you about Newton's Method.
I knew that Newton's Method was used to estimate the true value of the root of the real number by analysis the graph of that particular function, but I just wonder that do I have to plot the graph of the function everytime I want to use Newton's method, my understanding was 'yes', I think that ploting the graph help me to know "what value" will be used to be x1 or the approximate answer I was looking for, I'm I right or wrong ?

suppose the problem wants me to find x intersect of f(x) = x^7-1000 by using Newton's Method

Do I have to plot this graph first in order to approximate the value of x1
Thank you so much, sir !
 
Physics news on Phys.org
gungun8799 said:
Hi, guys, I have a questions to ask you about Newton's Method.
I knew that Newton's Method was used to estimate the true value of the root of the real number by analysis the graph of that particular function, but I just wonder that do I have to plot the graph of the function everytime I want to use Newton's method, my understanding was 'yes', I think that ploting the graph help me to know "what value" will be used to be x1 or the approximate answer I was looking for, I'm I right or wrong ?

suppose the problem wants me to find x intersect of f(x) = x^7-1000 by using Newton's Method

Do I have to plot this graph first in order to approximate the value of x1
Thank you so much, sir !

No, usually plotting is out of the question. For example, some optimization codes may apply Newton's Method as subroutines, but cannot look at plots because they are inanimate computer programs. For certain classes of functions, we know that Newton will always work, starting from any point; for other types of functions, we know that Newton can fail spectacularly if the wrong initial point is chosen. Usually, computer codes do not apply "pure" Newton, but rather, a form of "safeguarded Newton", that tries to guard against failure. These are safer, but slower than pure Newton methods.

However, when solving problems one-by-one manually (although using software to assist you) a plot is usually advisable.

Your example function f(x) = x^7-1000 is "strictly convex", at least in the interval x >= 0, so as long as roundoff errors do not give you negative x values, you should get rapid convergence from *any* positive starting point (try it and see).

RGV
 
Thank you very very much Mr.Ray, your post helps me a lot...^_^
 

Similar threads

Replies
16
Views
7K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 4 ·
Replies
4
Views
1K
Replies
13
Views
2K
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
5K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 12 ·
Replies
12
Views
5K
  • · Replies 7 ·
Replies
7
Views
4K