SlideShare une entreprise Scribd logo
1  sur  14
Newton raphson method
By-
Yogesh bhargawa
M.Sc. 4th sem.
Roll no. 4086
Introduction
As we know from school days , and still we have studied about
the solutions of equations like Quadratic equations , cubical
equations and polynomial equations and having roots in the
form of x=
−𝑏± 𝑏2−4𝑎𝑐
2𝑎
where a, b , c are the coefficient of equ.
But nowadays it is very difficult to remember formulas for higher
degree polynomial equations . Hence to remove these difficulties
there are few numerical methods, one of them is Newton
Raphson Method.
Which has to be discussed in this power point presentation.
Newton Raphson Method :
Newton Raphson method is a numerical technique
which is used to find the roots of Algebraic & transcendental
Equations .
Algebraic Equations :
An equation of the form of quadratic or polynomial.
e.g. 𝑥4+𝑥2+1=0
𝑥8-1 =0
𝑥3-2x -5=0
Transcendental equation :
An equation which contains some transcendental functions
Such as exponential or trigonometric functions.
e.g. sin , cos , tan , 𝑒 𝑥 , 𝑥 𝑒 , log etc.
3x-cosx-1=0
logx+2x=0
𝑒 𝑥
-3x=0
Sinx+10x-7=38
Newton Raphson Method :
Let us consider an equation f(x)=0 having graphical representation as
• f(x) =0 ,is an given equation
• Starting from an initial point 𝑥0
• Determine the slope of f(x) at x=𝑥0 .Call it f’(𝑥0).
Slope =tanѲ=
𝑓(𝑥 𝑖)−0
𝑥 𝑖−𝑥 𝑖+1
= 𝑓′ 𝑥𝑖 .
From here we get
• f’(𝑥𝑖) =
𝑓(𝑥 𝑖)
𝑥 𝑖−𝑥 𝑖+1
.
Hence ;
• 𝐱 𝐢+𝟏 = 𝐱 𝐢 −
𝐟(𝐱 𝐢)
𝐟′(𝐱 𝐢)
• Newton Raphson formula
Algorithm for f(x)=0
• Calculate f’(x) symbolically.
• Choose an initial guess 𝑥0as given below
let [a,b] be any interval such that f(a)<0 and f(b)>0 , then
𝑥0=
𝑎+𝑏
2
.
• then 𝑥1 = 𝑥0 −
𝑓 𝑥0
𝑓′ 𝑥0
.
• Similarly 𝑥2 = 𝑥1 −
𝑓 𝑥1
𝑓′(𝑥1)
.
• Then by repetition of this process we can find 𝑥3 , 𝑥4 , 𝑥5 … …
• At last we reach at a stage where we find 𝒙𝒊+𝟏 = 𝒙𝒊.
• Then we will stop.
• Hence 𝒙𝒊 will be the required root of given equation.
NRM by Taylor series :
if we have given an equation f(x)=0.
𝑥0 be the approximated root of given equation.
• Let (𝑥0 +h) be the actual root where ‘h’ is very small such that
• f(𝑥0 + ℎ)=0
From Taylor series expansion on expanding to f(𝑥0 + ℎ)
f(𝑥0 + ℎ)=f(𝑥0) + hf’(𝑥0)+
ℎ2
2!
f’’(𝑥0) +
ℎ3
3!
f’’’(𝑥0) +…….
Now on neglecting higher powers of h
• f(𝑥0) + hf’(𝑥0) =0
From above h= -
𝑓(𝑥0)
𝑓′(𝑥0)
Cont..
Hence first approximation 𝑥1=(𝑥0 + ℎ);
𝑥1=𝑥0-
𝑓(𝑥0)
𝑓′(𝑥0)
Second approximation ;
𝑥2=𝑥1-
𝑓(𝑥1)
𝑓′(𝑥1)
On repeating this process
We get
𝒙 𝒏+𝟏=𝒙 𝒏 −
𝒇(𝒙 𝒏)
𝒇′(𝒙 𝒏)
This is the required newton Raphson method.
How to solve an example :
F(x)= 𝑥3
- 2x – 5
F’(x) = 3𝑥2-2
Now checking for initial point
F(1) =-6
F(2)= -1
F(3) =16
Hence root lies between (2,3)
Initial point (𝑥0) =
2+3
2
=2.5
From NRM formula
𝑥 𝑛+1=𝑥 𝑛 −
𝑓(𝑥 𝑛)
𝑓′(𝑥 𝑛)
,putting all these above values in this formula
𝑥 𝑛+1 = 𝑥 𝑛 −
On putting initial value 𝑥0 = 2.5
We get first approximate root;
𝑥1=2.164179104
Similarly:
𝑥2=2.097135356
𝑥3=2.094555232
𝑥4=2.094551482
𝑥5=2.094551482
Hence 𝐱 𝟒=𝐱 𝟓
Hence 2.094551482 is the required root of given equation.
23
52
2
3


n
nn
x
xx
Application of NRM
• To find the square root of any no.
• To find the inverse
• To find inverse square root.
• Root of any given equation.
Limitations of NRM
• F’(x)=0 is real disaster for this method
• F’’(x)=0 causes the solution to diverse
• Sometimes get trapped in local maxima and minima .
THANK YOU..!!!!!!

Contenu connexe

Tendances

Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equationsaman1894
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolationVISHAL DONGA
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Minhas Kamal
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential EquationsAMINULISLAM439
 
Series solutions at ordinary point and regular singular point
Series solutions at ordinary point and regular singular pointSeries solutions at ordinary point and regular singular point
Series solutions at ordinary point and regular singular pointvaibhav tailor
 
Newton raphson
Newton raphsonNewton raphson
Newton raphsonbaxter89
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference InterpolationVARUN KUMAR
 
lagrange interpolation
lagrange interpolationlagrange interpolation
lagrange interpolationayush raj
 
Gaussian Elimination Method
Gaussian Elimination MethodGaussian Elimination Method
Gaussian Elimination MethodAndi Firdaus
 
Runge Kutta Method
Runge Kutta Method Runge Kutta Method
Runge Kutta Method Bhavik Vashi
 
the fourier series
the fourier seriesthe fourier series
the fourier seriessafi al amu
 

Tendances (20)

The newton raphson method
The newton raphson methodThe newton raphson method
The newton raphson method
 
Fourier series
Fourier seriesFourier series
Fourier series
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
 
Bisection method
Bisection methodBisection method
Bisection method
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolation
 
rank of matrix
rank of matrixrank of matrix
rank of matrix
 
Secant method
Secant methodSecant method
Secant method
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential Equations
 
Fourier series
Fourier seriesFourier series
Fourier series
 
Bisection method
Bisection methodBisection method
Bisection method
 
Series solutions at ordinary point and regular singular point
Series solutions at ordinary point and regular singular pointSeries solutions at ordinary point and regular singular point
Series solutions at ordinary point and regular singular point
 
Newton raphson
Newton raphsonNewton raphson
Newton raphson
 
Newton's Forward/Backward Difference Interpolation
Newton's Forward/Backward  Difference InterpolationNewton's Forward/Backward  Difference Interpolation
Newton's Forward/Backward Difference Interpolation
 
lagrange interpolation
lagrange interpolationlagrange interpolation
lagrange interpolation
 
Gaussian Elimination Method
Gaussian Elimination MethodGaussian Elimination Method
Gaussian Elimination Method
 
Runge Kutta Method
Runge Kutta Method Runge Kutta Method
Runge Kutta Method
 
Beta gamma functions
Beta gamma functionsBeta gamma functions
Beta gamma functions
 
the fourier series
the fourier seriesthe fourier series
the fourier series
 
GAUSS ELIMINATION METHOD
 GAUSS ELIMINATION METHOD GAUSS ELIMINATION METHOD
GAUSS ELIMINATION METHOD
 

En vedette

Newton-Raphson Method
Newton-Raphson MethodNewton-Raphson Method
Newton-Raphson MethodJigisha Dabhi
 
Newton Raphson method for load flow analysis
Newton Raphson method for load flow analysisNewton Raphson method for load flow analysis
Newton Raphson method for load flow analysisdivyanshuprakashrock
 
Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming Md Abu Bakar Siddique
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton RaphsonAisu
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methodsTarun Gehlot
 
Iterative methods
Iterative methodsIterative methods
Iterative methodsKt Silva
 
NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)krishnapriya R
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Muhammad Waqas
 
Mean, median, mode, & range ppt
Mean, median, mode, & range pptMean, median, mode, & range ppt
Mean, median, mode, & range pptmashal2013
 
Measures of central tendency
Measures of central tendencyMeasures of central tendency
Measures of central tendencyChie Pegollo
 
K10715 ankit kumar verma centrifugal pump
K10715 ankit kumar verma centrifugal pump K10715 ankit kumar verma centrifugal pump
K10715 ankit kumar verma centrifugal pump shailesh yadav
 

En vedette (20)

Newton-Raphson Method
Newton-Raphson MethodNewton-Raphson Method
Newton-Raphson Method
 
Newton Raphson method for load flow analysis
Newton Raphson method for load flow analysisNewton Raphson method for load flow analysis
Newton Raphson method for load flow analysis
 
Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming Newton Raphson Method Using C Programming
Newton Raphson Method Using C Programming
 
load flow 1
 load flow 1 load flow 1
load flow 1
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton Raphson
 
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZEAPPLICATION OF NUMERICAL METHODS IN SMALL SIZE
APPLICATION OF NUMERICAL METHODS IN SMALL SIZE
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methods
 
Iterative methods
Iterative methodsIterative methods
Iterative methods
 
Newton-Raphson Method
Newton-Raphson MethodNewton-Raphson Method
Newton-Raphson Method
 
Unit4
Unit4Unit4
Unit4
 
Bisection
BisectionBisection
Bisection
 
bisection method
bisection methodbisection method
bisection method
 
NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)NUMERICAL METHODS -Iterative methods(indirect method)
NUMERICAL METHODS -Iterative methods(indirect method)
 
Bisection
BisectionBisection
Bisection
 
Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1Engineering Numerical Analysis Lecture-1
Engineering Numerical Analysis Lecture-1
 
Mean, median, mode, & range ppt
Mean, median, mode, & range pptMean, median, mode, & range ppt
Mean, median, mode, & range ppt
 
Bisection and fixed point method
Bisection and fixed point methodBisection and fixed point method
Bisection and fixed point method
 
Measures of central tendency
Measures of central tendencyMeasures of central tendency
Measures of central tendency
 
K10715 ankit kumar verma centrifugal pump
K10715 ankit kumar verma centrifugal pump K10715 ankit kumar verma centrifugal pump
K10715 ankit kumar verma centrifugal pump
 
Funcion gamma
Funcion gammaFuncion gamma
Funcion gamma
 

Similaire à newton raphson method

Newton Raphson pptx
Newton Raphson pptxNewton Raphson pptx
Newton Raphson pptxMDSHABBIR12
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentationAbdullah Moin
 
Newton Raphson Method in numerical methods of advanced engineering mathematics
Newton Raphson Method in numerical methods of advanced engineering mathematicsNewton Raphson Method in numerical methods of advanced engineering mathematics
Newton Raphson Method in numerical methods of advanced engineering mathematicsaryyaka99
 
Newton's Raphson method
Newton's Raphson methodNewton's Raphson method
Newton's Raphson methodSaloni Singhal
 
Intro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdfIntro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdfJifarRaya
 
Fortran chapter 2.pdf
Fortran chapter 2.pdfFortran chapter 2.pdf
Fortran chapter 2.pdfJifarRaya
 
NUMERICAL METHODS ppt new (1).pptx
NUMERICAL METHODS  ppt new (1).pptxNUMERICAL METHODS  ppt new (1).pptx
NUMERICAL METHODS ppt new (1).pptxbaljitkaur96270
 
Classical optimization theory Unconstrained Problem
Classical optimization theory Unconstrained ProblemClassical optimization theory Unconstrained Problem
Classical optimization theory Unconstrained ProblemSurya Teja
 
Newton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationNewton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationmuyuubyou
 
Numerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsNumerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsGobinda Debnath
 
AP Advantage: AP Calculus
AP Advantage: AP CalculusAP Advantage: AP Calculus
AP Advantage: AP CalculusShashank Patil
 
Numerical solutions of algebraic equations
Numerical solutions of algebraic equationsNumerical solutions of algebraic equations
Numerical solutions of algebraic equationsAvneet Singh Lal
 
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docx
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docxCALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docx
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docxRAHUL126667
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlabsheetslibrary
 

Similaire à newton raphson method (20)

Newton Raphson pptx
Newton Raphson pptxNewton Raphson pptx
Newton Raphson pptx
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentation
 
Newton Raphson Method in numerical methods of advanced engineering mathematics
Newton Raphson Method in numerical methods of advanced engineering mathematicsNewton Raphson Method in numerical methods of advanced engineering mathematics
Newton Raphson Method in numerical methods of advanced engineering mathematics
 
Newton
NewtonNewton
Newton
 
OPERATIONS RESEARCH
OPERATIONS RESEARCHOPERATIONS RESEARCH
OPERATIONS RESEARCH
 
Newton's Raphson method
Newton's Raphson methodNewton's Raphson method
Newton's Raphson method
 
Chapter two
Chapter twoChapter two
Chapter two
 
Intro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdfIntro. to computational Physics ch2.pdf
Intro. to computational Physics ch2.pdf
 
Fortran chapter 2.pdf
Fortran chapter 2.pdfFortran chapter 2.pdf
Fortran chapter 2.pdf
 
NUMERICAL METHODS ppt new (1).pptx
NUMERICAL METHODS  ppt new (1).pptxNUMERICAL METHODS  ppt new (1).pptx
NUMERICAL METHODS ppt new (1).pptx
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Classical optimization theory Unconstrained Problem
Classical optimization theory Unconstrained ProblemClassical optimization theory Unconstrained Problem
Classical optimization theory Unconstrained Problem
 
Newton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationNewton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanation
 
Numerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsNumerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value Problems
 
AP Advantage: AP Calculus
AP Advantage: AP CalculusAP Advantage: AP Calculus
AP Advantage: AP Calculus
 
Module in Remainder Theorem
Module in Remainder TheoremModule in Remainder Theorem
Module in Remainder Theorem
 
Numerical solutions of algebraic equations
Numerical solutions of algebraic equationsNumerical solutions of algebraic equations
Numerical solutions of algebraic equations
 
AM III ppt.pptx
AM III ppt.pptxAM III ppt.pptx
AM III ppt.pptx
 
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docx
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docxCALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docx
CALIFORNIA STATE UNIVERSITY, NORTHRIDGEMECHANICAL ENGINEERIN.docx
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlab
 

Dernier

well logging & petrophysical analysis.pptx
well logging & petrophysical analysis.pptxwell logging & petrophysical analysis.pptx
well logging & petrophysical analysis.pptxzaydmeerab121
 
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxGENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxRitchAndruAgustin
 
whole genome sequencing new and its types including shortgun and clone by clone
whole genome sequencing new  and its types including shortgun and clone by clonewhole genome sequencing new  and its types including shortgun and clone by clone
whole genome sequencing new and its types including shortgun and clone by clonechaudhary charan shingh university
 
Oxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxOxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxfarhanvvdk
 
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11GelineAvendao
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests GlycosidesNandakishor Bhaurao Deshmukh
 
Gas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGiovaniTrinidad
 
FBI Profiling - Forensic Psychology.pptx
FBI Profiling - Forensic Psychology.pptxFBI Profiling - Forensic Psychology.pptx
FBI Profiling - Forensic Psychology.pptxPayal Shrivastava
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxpriyankatabhane
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Sérgio Sacani
 
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Christina Parmionova
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxMedical College
 
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书zdzoqco
 
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024Jene van der Heide
 
Loudspeaker- direct radiating type and horn type.pptx
Loudspeaker- direct radiating type and horn type.pptxLoudspeaker- direct radiating type and horn type.pptx
Loudspeaker- direct radiating type and horn type.pptxpriyankatabhane
 
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep LearningCombining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learningvschiavoni
 
complex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfcomplex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfSubhamKumar3239
 
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPRPirithiRaju
 

Dernier (20)

well logging & petrophysical analysis.pptx
well logging & petrophysical analysis.pptxwell logging & petrophysical analysis.pptx
well logging & petrophysical analysis.pptx
 
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxGENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
 
whole genome sequencing new and its types including shortgun and clone by clone
whole genome sequencing new  and its types including shortgun and clone by clonewhole genome sequencing new  and its types including shortgun and clone by clone
whole genome sequencing new and its types including shortgun and clone by clone
 
Oxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptxOxo-Acids of Halogens and their Salts.pptx
Oxo-Acids of Halogens and their Salts.pptx
 
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
 
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests GlycosidesGLYCOSIDES Classification Of GLYCOSIDES  Chemical Tests Glycosides
GLYCOSIDES Classification Of GLYCOSIDES Chemical Tests Glycosides
 
Gas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptx
 
FBI Profiling - Forensic Psychology.pptx
FBI Profiling - Forensic Psychology.pptxFBI Profiling - Forensic Psychology.pptx
FBI Profiling - Forensic Psychology.pptx
 
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptxEnvironmental Acoustics- Speech interference level, acoustics calibrator.pptx
Environmental Acoustics- Speech interference level, acoustics calibrator.pptx
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
 
PLASMODIUM. PPTX
PLASMODIUM. PPTXPLASMODIUM. PPTX
PLASMODIUM. PPTX
 
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
 
Interferons.pptx.
Interferons.pptx.Interferons.pptx.
Interferons.pptx.
 
Introduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptxIntroduction of Human Body & Structure of cell.pptx
Introduction of Human Body & Structure of cell.pptx
 
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书
办理麦克马斯特大学毕业证成绩单|购买加拿大文凭证书
 
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024GenAI talk for Young at Wageningen University & Research (WUR) March 2024
GenAI talk for Young at Wageningen University & Research (WUR) March 2024
 
Loudspeaker- direct radiating type and horn type.pptx
Loudspeaker- direct radiating type and horn type.pptxLoudspeaker- direct radiating type and horn type.pptx
Loudspeaker- direct radiating type and horn type.pptx
 
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep LearningCombining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
 
complex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfcomplex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdf
 
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
 

newton raphson method

  • 1. Newton raphson method By- Yogesh bhargawa M.Sc. 4th sem. Roll no. 4086
  • 2. Introduction As we know from school days , and still we have studied about the solutions of equations like Quadratic equations , cubical equations and polynomial equations and having roots in the form of x= −𝑏± 𝑏2−4𝑎𝑐 2𝑎 where a, b , c are the coefficient of equ. But nowadays it is very difficult to remember formulas for higher degree polynomial equations . Hence to remove these difficulties there are few numerical methods, one of them is Newton Raphson Method. Which has to be discussed in this power point presentation.
  • 3. Newton Raphson Method : Newton Raphson method is a numerical technique which is used to find the roots of Algebraic & transcendental Equations . Algebraic Equations : An equation of the form of quadratic or polynomial. e.g. 𝑥4+𝑥2+1=0 𝑥8-1 =0 𝑥3-2x -5=0
  • 4. Transcendental equation : An equation which contains some transcendental functions Such as exponential or trigonometric functions. e.g. sin , cos , tan , 𝑒 𝑥 , 𝑥 𝑒 , log etc. 3x-cosx-1=0 logx+2x=0 𝑒 𝑥 -3x=0 Sinx+10x-7=38
  • 5. Newton Raphson Method : Let us consider an equation f(x)=0 having graphical representation as
  • 6. • f(x) =0 ,is an given equation • Starting from an initial point 𝑥0 • Determine the slope of f(x) at x=𝑥0 .Call it f’(𝑥0). Slope =tanѲ= 𝑓(𝑥 𝑖)−0 𝑥 𝑖−𝑥 𝑖+1 = 𝑓′ 𝑥𝑖 . From here we get • f’(𝑥𝑖) = 𝑓(𝑥 𝑖) 𝑥 𝑖−𝑥 𝑖+1 . Hence ; • 𝐱 𝐢+𝟏 = 𝐱 𝐢 − 𝐟(𝐱 𝐢) 𝐟′(𝐱 𝐢) • Newton Raphson formula
  • 7. Algorithm for f(x)=0 • Calculate f’(x) symbolically. • Choose an initial guess 𝑥0as given below let [a,b] be any interval such that f(a)<0 and f(b)>0 , then 𝑥0= 𝑎+𝑏 2 . • then 𝑥1 = 𝑥0 − 𝑓 𝑥0 𝑓′ 𝑥0 . • Similarly 𝑥2 = 𝑥1 − 𝑓 𝑥1 𝑓′(𝑥1) . • Then by repetition of this process we can find 𝑥3 , 𝑥4 , 𝑥5 … … • At last we reach at a stage where we find 𝒙𝒊+𝟏 = 𝒙𝒊. • Then we will stop. • Hence 𝒙𝒊 will be the required root of given equation.
  • 8. NRM by Taylor series : if we have given an equation f(x)=0. 𝑥0 be the approximated root of given equation. • Let (𝑥0 +h) be the actual root where ‘h’ is very small such that • f(𝑥0 + ℎ)=0 From Taylor series expansion on expanding to f(𝑥0 + ℎ) f(𝑥0 + ℎ)=f(𝑥0) + hf’(𝑥0)+ ℎ2 2! f’’(𝑥0) + ℎ3 3! f’’’(𝑥0) +……. Now on neglecting higher powers of h • f(𝑥0) + hf’(𝑥0) =0 From above h= - 𝑓(𝑥0) 𝑓′(𝑥0) Cont..
  • 9. Hence first approximation 𝑥1=(𝑥0 + ℎ); 𝑥1=𝑥0- 𝑓(𝑥0) 𝑓′(𝑥0) Second approximation ; 𝑥2=𝑥1- 𝑓(𝑥1) 𝑓′(𝑥1) On repeating this process We get 𝒙 𝒏+𝟏=𝒙 𝒏 − 𝒇(𝒙 𝒏) 𝒇′(𝒙 𝒏) This is the required newton Raphson method.
  • 10. How to solve an example : F(x)= 𝑥3 - 2x – 5 F’(x) = 3𝑥2-2 Now checking for initial point F(1) =-6 F(2)= -1 F(3) =16 Hence root lies between (2,3) Initial point (𝑥0) = 2+3 2 =2.5 From NRM formula 𝑥 𝑛+1=𝑥 𝑛 − 𝑓(𝑥 𝑛) 𝑓′(𝑥 𝑛) ,putting all these above values in this formula
  • 11. 𝑥 𝑛+1 = 𝑥 𝑛 − On putting initial value 𝑥0 = 2.5 We get first approximate root; 𝑥1=2.164179104 Similarly: 𝑥2=2.097135356 𝑥3=2.094555232 𝑥4=2.094551482 𝑥5=2.094551482 Hence 𝐱 𝟒=𝐱 𝟓 Hence 2.094551482 is the required root of given equation. 23 52 2 3   n nn x xx
  • 12. Application of NRM • To find the square root of any no. • To find the inverse • To find inverse square root. • Root of any given equation.
  • 13. Limitations of NRM • F’(x)=0 is real disaster for this method • F’’(x)=0 causes the solution to diverse • Sometimes get trapped in local maxima and minima .