Log in Sign up
Back to Discover
🔢

Newton's method

math Maturity 7-9

We can find a secret number.

NewtonIteration Ani.gif
NewtonIteration Ani.gif
First, we make a good guess. Then, we use a trick to get closer. Each step makes our guess much better. It is like getting very close to a prize. Can you find the number?
Methode newton.png
Methode newton.png

45 words

Sometimes we need to find a secret number.

NewtonIteration Ani.gif
NewtonIteration Ani.gif
We start with a smart guess. Then, we use a special trick to get closer. We look at a line that touches a curve. This line helps us find a better guess.
Methode newton.png
Methode newton.png
Each step makes our guess much better. The number of correct digits can double each time. This makes the search very fast. People have used this idea for a long time. Even very old thinkers used similar tricks. It is a great way to solve puzzles.

90 words

Sometimes we want to find a secret number. This number is a root. A root is where a curve hits a flat line.

Methode newton.png
Methode newton.png

We can find this number using Newton's method. This is a set of steps to get better answers. First, we make a smart guess. We look at the curve near our guess. We draw a straight line that just touches the curve. This is called a tangent line.

newton iteration.svg
newton iteration.svg

Next, we see where that straight line hits the flat axis. That spot becomes our new, better guess. We repeat these steps over and over. Each step makes our guess much more accurate. In fact, the number of correct digits often doubles each time!

NewtonIteration Ani.gif
NewtonIteration Ani.gif

Many people helped build this idea. Old Babylonian thinkers used similar tricks. Later, Jamshīd al-Kāshī used a similar way. Isaac Newton and Joseph Raphson gave it its name. It is a very fast way to solve math puzzles. But it can fail if the curve is too tricky. It can also be slow if the root is not simple.

180 words

Sometimes, math puzzles require us to find a secret number called a root. A root is the exact spot where a curved line crosses a flat horizontal line. Finding this spot can be very hard if the curve is wiggly or complex. Newton's method is a clever way to find these roots through repeated guessing. It is a type of algorithm, which is just a set of steps to follow. By following these steps, we can find a much better answer each time.

Methode newton.png
Methode newton.png

To use this method, you must start with an initial guess. You pick a number that you think is close to the real root. Next, you look at the curve right at that guess. You draw a straight line that just touches the curve at that single point. This straight line is called a tangent line.

newton iteration.svg
newton iteration.svg
You then find where this straight line hits the flat axis. This new spot becomes your next, better guess. You repeat this whole process over and over again.
NewtonIteration Ani.gif
NewtonIteration Ani.gif
If your guess is close enough, the number of correct digits often doubles with every single step.

Many brilliant thinkers helped develop these ideas over a very long time. During the Old Babylonian period, people used similar tricks to find the sides of squares. Later, the mathematician Jamshīd al-Kāshī used a similar way in his 1427 book. He built on work by earlier scholars like al-Bīrūnī and Sharaf al-Dīn al-Ṭūsī. In the 1600s, Isaac Newton and Joseph Raphson helped shape the modern version. Newton wrote about his ideas in many papers between 1669 and 1671.

newtroot 1 0 0 0 0 m1.png
newtroot 1 0 0 0 0 m1.png
Even though many people contributed, the method carries their names today.

This method is famous because it is incredibly fast at solving problems. In math, we say it has quadratic convergence when it works well. This means the accuracy grows very quickly as you keep going. However, the method can sometimes run into hard jobs or mistakes. It might fail to find the root if the curve is too bumpy. It can also be slow if the root is not a simple one. Sometimes, the math requires a derivative, which describes how the curve changes. If that is too hard to find, the method might struggle.

NewtonsMethodConvergenceFailure.svg
NewtonsMethodConvergenceFailure.svg

You can see this math at work in many parts of our world. It helps scientists solve complex equations that describe how things move or change. Even though it sounds difficult, it is just a way of refining a guess. It is like trying to find the center of a target by getting closer with every shot. By using straight lines to track a curve, we turn a hard problem into an easy one. This makes it a very powerful tool for anyone studying the patterns of our universe.

471 words

Newton's method, also known as the Newton-Raphson method, is a powerful root-finding algorithm. In mathematics, a root is a value that makes a function equal to zero. These roots are also called zeroes. Finding these points is essential for solving complex equations in science and engineering. The method works by creating a sequence of increasingly accurate approximations. It turns a difficult curve into a series of simple, straight lines.

Methode newton.png
Methode newton.png

The mechanism relies on a process called iteration. To begin, you start with an initial guess, which we call $x_0$. This guess should be a real number close to the actual root. Next, you find the derivative of the function at that point. The derivative tells you the slope of the tangent line. A tangent line is a straight line that just touches the curve at your guess.

newton iteration.svg
newton iteration.svg

Once you have the tangent line, you find where it crosses the x-axis. This intersection point becomes your next, improved guess, $x_1$. You then repeat this entire cycle using the new value. You calculate a new tangent line at $x_1$ and find its x-intercept. This process creates a chain of values that move closer to the true root.

NewtonIteration Ani.gif
NewtonIteration Ani.gif
If the initial guess is close enough, the method converges very quickly.

Newton's method belongs to a larger class of algorithms called Householder's methods. It is often succeeded by Halley's method, which can be even faster. There are different types of convergence based on how the error decreases. For a root with a multiplicity of one, the method shows quadratic convergence. This means the number of correct decimal digits roughly doubles with each step. However, if the root has a multiplicity greater than one, the convergence becomes linear. This means the error only reduces by a constant factor each time.

newtroot 1 0 0 0 0 m1.png
newtroot 1 0 0 0 0 m1.png

The history of this idea spans thousands of years. During the Old Babylonian period, between the 19th and 16th centuries BCE, people used a similar technique. They used it to approximate the sides of squares. This is often called Heron's method after Hero of Alexandria. In 1427, Jamshīd al-Kāshī published a method in his book *Miftāḥ al-Ḥisāb*. His work was based on earlier scholars like al-Bīrūnī and Sharaf al-Dīn al-Ṭūsī.

newtroot 1 0 0 0 0 m1.png
newtroot 1 0 0 0 0 m1.png

Modern versions of the method emerged much later in Europe. Isaac Newton wrote about his ideas between 1669 and 1671. Joseph Raphson later provided a simplified description in 1690. Raphson's version was helpful because it avoided tedious rewriting processes. He used a reusable iterative expression for polynomials. In 1740, Thomas Simpson described the method for general nonlinear equations. He also showed how it could be used for systems of equations.

newtroot 1 0 0 0 0 m1.png
newtroot 1 0 0 0 0 m1.png

Despite its power, the method has practical limitations. One difficulty is calculating the derivative. Sometimes an analytical expression for the derivative is too expensive to evaluate. In these cases, mathematicians might use the secant method instead. The secant method is slower but easier to compute. Another problem is the failure to converge. If the derivative is not well-behaved near the root, the method might oscillate.

NewtonsMethodConvergenceFailure.svg
NewtonsMethodConvergenceFailure.svg
This can cause the guesses to jump back and forth without ever hitting the target.

Newton's method is connected to many broader fields of study. It can be extended to complex functions and systems of equations. Arthur Cayley first studied the difficulties of using the method with complex roots in 1879. This research helped start the study of the iteration of rational functions. Today, the method remains a fundamental tool in numerical analysis. It helps us solve the optimization problems that define much of modern mathematics.

614 words
🖼️ Images & Media (7)
File:Methode newton.png
Methode newton.png
File:newton iteration.svg
newton iteration.svg
File:NewtonIteration Ani.gif
NewtonIteration Ani.gif
File:NewtonsMethodConvergenceFailure.svg
NewtonsMethodConvergenceFailure.svg
File:milk-carton-overlap.png
milk-carton-overlap.png
File:milk-carton-overlap-flat.png
milk-carton-overlap-flat.png
File:newtroot 1 0 0 0 0 m1.png
newtroot 1 0 0 0 0 m1.png
Up Next
🔢
Secant method
Math
More to explore

What is Nepedia?

A free, ad-free encyclopedia for children. Every article is written at five reading levels, so the same page works for a five-year-old and a fifteen-year-old — use the level switcher above to see this one change. No account needed to read.