Solve any maths problem
Equations, derivatives, integrals, matrices, triangles, primes, statistics — or a word problem the tutor breaks into parts.
Step by step
- f(x) = e^{x} - 3,\quad x_0 = 1
Newton's method: x_{n+1} = x_n − f(x_n)/f′(x_n) — follow the tangent line down to the axis, repeat.
- f'(x) = e^{x}
Differentiate once; the same derivative serves every iteration.
- x_{1} = 1.0 - \frac{-0.28171819}{2.71828175} = 1.10363832
Iteration 1.
- x_{2} = 1.10363832 - \frac{0.01511606}{3.01511621} = 1.0986249
Iteration 2.
- x_{3} = 1.0986249 - \frac{3.783 \cdot 10^{-5}}{3.00003767} = 1.09861229
Iteration 3.
- x_{4} = 1.09861229 - \frac{0.0}{3.0} = 1.09861229
Iteration 4.
- x_{5} = 1.09861229 - \frac{0.0}{3.0} = 1.09861229
Iteration 5.
- \text{converged}
The iterates have stopped changing to 12 decimal places.
- x \approx 1.09861229
Quadratic convergence: the number of correct digits roughly doubles each step.
Reveal the answer
x \approx 1.09861229