Newton's Method

Hello!

To view this page you need Microsoft Silverlight 3 plug-in.
Silverlight will enable your browser to understand complex Rich Internet Applications.
After installing (~10 seconds), you will be able to view and execute live algorithms.

Click here to download the plugin directly from Microsoft (4 MB)
If you want to learn more about MS Silverlight, take a look at this Wikipedia article.
Output
type in the input above and click 'Execute'
the result will be outputted here
Related Algorithms
Discussion
2
Runtime Error (0:0): Invalid math expression: unknown charachter found in expression '(2,00000019992006)^2 - 1' at index 2 value ','
May be problem in my russian locale? (uses "," instead of ".")
27 months and one week ago by corristo
Yes definitely a locale problem. Will work on it and let you know.
27 months and 6 days ago by ANaimi
login to leave a comment
Version 1
Version 1 by ANaimi
+2
Newton-Raphson method is used for finding successively better approximations to the zeroes (or roots) of a real-valued function. This implementation is restricted to operate on one-dimensional routines.

The method takes a routine (expression), initial guessed value, and number of steps. The number of steps represents the number of iterations (a.k.a. corrections.) The increase in number of steps should yield better approximations. Note that usually the number of steps is discarded and instead the error (the difference in approximation from subsequent iterations) is examined.

The method is powerful because of its rate of convergence. It can also yield disastrous results if the initial value is too far from the real root. This is especially concerning when the function/expression includes local maximum and local minimum.

See http://en.wikipedia.org/wiki/Newton's_method
By ANaimi
28 months and one week ago
up down

implementations

one version available

rated by

2 users - list?

viewed by

15 users - list?

favorited by

0 users - list?

last activity

27 months and 6 days ago

depends on making external calls to