0% found this document useful (0 votes)
6 views1 page

Numerical Methods Formula Card

The document provides formulas for various numerical methods used to find roots of functions. It includes the Bisection Method, False Position Method, Newton–Raphson Method, and Secant Method, each with their respective formulas and stopping criteria. Each method aims to approximate the root of a function with a specified level of accuracy, ε.

Uploaded by

belayneha361
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Numerical Methods Formula Card

The document provides formulas for various numerical methods used to find roots of functions. It includes the Bisection Method, False Position Method, Newton–Raphson Method, and Secant Method, each with their respective formulas and stopping criteria. Each method aims to approximate the root of a function with a specified level of accuracy, ε.

Uploaded by

belayneha361
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Numerical Methods Formula Card

Bisection Method
c = (a + b) / 2
Stop when: |f(c)| < ε or |b - a| < ε

False Position (Regula Falsi)


c = (a f(b) - b f(a)) / (f(b) - f(a))
Stop when: |f(c)| < ε

Newton–Raphson Method
x_{n+1} = x_n - f(x_n) / f'(x_n)
Stop when: |x_{n+1} - x_n| < ε

Secant Method
x_{n+1} = x_n - f(x_n)\frac{x_n - x_{n-1}}{f(x_n) - f(x_{n-1})}
Stop when: |x_{n+1} - x_n| < ε

You might also like