Newton Method Calculator

    Find roots using Newton-Raphson method

    Formula

    x_{n+1} = x_n - f(x_n)/f'(x_n)

    Newton-Raphson iteratively refines an initial guess to find roots.

    Examples

    x²-3x+2, guess=4

    Converges to root x=2.

    Frequently Asked Questions

    About Newton Method

    Find roots of polynomial functions using the Newton-Raphson iterative method.