Skip to content

this is a numerical method for finding approximate root of a function.

License

Notifications You must be signed in to change notification settings

Monir-cse04/Newton-Raphson-Method

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Newton-Raphson-Method

definition: The Newton-Raphson method (also known as Newton's method) is a way to quickly find a good approximation for the root of a real-valued function f(x)=0. It uses the idea that acontinuous and differentiable function can be approximated by a straight line tangent to it. We Know, eq. of tangent is : y-y1 = f'(x) (x-x1). Y-f(Xo) = f'(xo)(X-Xo) 0-f(Xo) = f'(Xo)(X1-Xo); (putting y = 0) => X1 = Xo- (f(Xo)/f'(Xo)) Hence, Xn+1= Xn-(f(Xn)/f'(Xn)

About

this is a numerical method for finding approximate root of a function.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages