SlideShare a Scribd company logo
1 of 16
Download to read offline
Overview of Newton Raphson Method
Numerical Analysis
Isaac Amornortey Yowetu
NIMS-Ghana
June 24, 2020
Background of Newton Raphson Iteration
1 Background of Newton Raphson Iteration
Graphical Example
2 Steps in Deriving Newton Raphson Iteration
Derivations of Newton Raphson Method
3 Performing Iteration to find approximate Solution
4 Application of Newton Raphson Iteration
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 2 / 13
Background of Newton Raphson Iteration
Background of Newton Raphson Iteration
This iterative method Newton Raphson is said to be named after
Isaac Newton and Joseph Raphson. It is one of the opened Iterative
method that helps in a quick way of finding the solutions of
non-linear equations. This is achieved by producing successively
better approximations to the actual roots of a real-valued functions
f (x) = 0.
This iterative method is applicable when f (x) and f (x) are both
continuous and differentiable. The function f (x) is approximated by
a straight line tangential to function curve, starting with an initial
guess then, the x-intercept of the tangent line gives us the next
approximation.
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 2 / 13
Background of Newton Raphson Iteration Graphical Example
Graphical Example
Figure: A Graphic Example of Newton Raphson’s Iterations
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 3 / 13
Steps in Deriving Newton Raphson Iteration
Steps in Deriving Newton Raphson Iteration
Given f (x) = 0
tanθ = f (x) =
f (xn+1) − f (xn)
xn+1 − xn
(1)
From the graph, when we can consider these Cartesian coordinates:
xn+1, f (xn+1) and xn, f (xn) , but f (xn+1) = 0. Hence,
f (x) =
0 − f (xn)
xn+1 − xn
(2)
(xn+1 − xn)f (x) = −f (xn) (3)
(xn+1 − xn) = −
f (xn)
f (x)
(4)
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 4 / 13
Steps in Deriving Newton Raphson Iteration Derivations of Newton Raphson Method
xn+1 = xn −
f (xn)
f (x)
(5)
Remarks
The xn+1 − value at which there is converges is the solution of
interest.
It takes an intial guess to start its iteration process
Second Derivation
Suppose x∗
is the solution of f (x) = 0 and let xn be the approximate
solution of x∗
s.t |x∗
− xn| = δ << 1.
By the use of Taylor Series approximation, we can have:
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 5 / 13
Steps in Deriving Newton Raphson Iteration Derivations of Newton Raphson Method
0 = f (x∗
) = f (xn + δ) = f (xn+1) (6)
f (xn+1) = f (xn) + δf (xn) +
δ2
2!
f (xn) + ... = 0 (7)
But neglecting the powers of δ, n ≥ 2, we now have;
f (xn) + δf (xn) ≈ 0 (8)
But δ = xn+1 − xn. We can write eqn(8) as:
f (xn) = −(xn+1 − xn)f (xn) (9)
f (xn)
f (xn)
= xn − xn+1 (10)
xn+1 = xn −
f (xn)
f (xn)
(11)
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 6 / 13
Performing Iteration to find approximate Solution
Performing Newton Raphson Iteration
We start our iteration with an initial point x0
x1 = x0 −
f (x0)
f (x0)
x2 = x1 −
f (x1)
f (x1)
x3 = x2 −
f (x2)
f (x2)
x4 = x3 −
f (x3)
f (x3)
...
xn+1 = xn −
f (xn)
f (xn)
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 7 / 13
Performing Iteration to find approximate Solution
Convergence Criteria of Newton Raphson
Using the Newton Raphson Formula: xn+1 = xn − f (xn)
f (xn)
Φ(xn) = xn −
f (xn)
f (xn)
Φ (xn) =
d
dx
xn −
f (xn)
f (xn)
= 1 −
d
dx
f (xn)
f (xn)
= 1 −
d
dx
f (xn) · f (xn)−1
= 1 − f (xn) · f (xn)−1
− f (xn) · f (xn)−2
· f (xn)
= 1 −
f (xn)
f (xn)
−
f (xn) · f (xn)
f (xn)2
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 8 / 13
Performing Iteration to find approximate Solution
Derivation continue....
Φ (xn) =
f (xn) · f (xn)
f (xn)2
For convergences with respect to the initial guess,
|Φ (xn)| < 1
We can also consider checking the convergence criterion as:
f (xn) · f (xn) < f (xn)2
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 9 / 13
Performing Iteration to find approximate Solution
Stopping Criteria
Error Formula
Absolute Error = |x − x∗
|
Relative Error =
|x − x∗
|
|x|
Where x, x∗
are true-value and approximated-value respectively.
These error formula is not of direct use as the true value x is not
known.
Commonly Use Stopping Criteria
|xn+1 − xn| < ε
|xn+1−xn|
|xn+1|
< ε or |xn−xn+1|
|xn|
< ε
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 9 / 13
Application of Newton Raphson Iteration
Application of Newton Raphson Iteration
Example 1
Find a root of xex
= 1 using Newton Raphson iteration. Take
x0 = 0.5
Considering our f (x) = xex
− 1 = 0
Solution
Checking the convergence at x0 = 0.5
f (x) = ex
+ xex
= ex
(1 + x) (12)
f (x) = ex
+ ex
+ xex
= ex
(2 + x) (13)
|Φ (0.5)| = (0.5·e0.5−1)·e0.5(2+0.5)
e0.5(1+0.5)
2 = 0.1184 < 1.
Hence, there will be convergence
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 10 / 13
Application of Newton Raphson Iteration
Solution Continue...
x1 = x0 −
f (x0)
f (x0)
= 0.5 −
0.5e0.5
− 1
e0.5(1 + 0.5)
= 0.5710
x2 = x1 −
f (x1)
f (x1)
= 0.5672
x3 = x2 −
f (x2)
f (x2)
= 0.5671
...
x100 = x99 −
f (x99)
f (x99)
= 0.5671 −
0.5671e0.5671
− 1
e0.5671(1 + 0.5671)
= 0.5671
After successive iterations, the approximated value converges
x∗
= 0.5671
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 11 / 13
Application of Newton Raphson Iteration
Example 2
Consider the nonlinear equation x3
= 2x + 1 with a solution with the
interval I = [1.5, 2.0] using Newton Raphson iteration with initial
guess x0 = 1.5, find the approximated root.
Considering our f (x) = x3
− 2x − 1 = 0
Solution
Checking the convergence at x0 = 1.5
f (x) = 3x2
− 2 (14)
f (x) = 6x (15)
|Φ (1.5)| =
(1.5)3−2(1.5)−1 · 6(1.5)
3(1.5)2−2
2 = 0.2493 < 1.
Hence, there will be convergence
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 12 / 13
Application of Newton Raphson Iteration
Solution Continue...
x1 = x0 −
f (x0)
f (x0)
= 1.5 −
(1.5)3
− 2(1.5) − 1
3(1.5)2 − 2
= 1.6316
x2 = x1 −
f (x1)
f (x1)
= 1.6182
x3 = x2 −
f (x2)
f (x2)
= 1.6180
...
x100 = x99 −
f (x99)
f (x99)
= 1.6180 −
(1.6180)3
− 2(1.6180) − 1
3(1.6180)2 − 2
= 1.6180
After successive iterations, the approximated value converges
x∗
= 1.6180
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 13 / 13
Application of Newton Raphson Iteration
End
THANK YOU
Please Like, Comment and
Subscribe to this Youtube Channel
Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 13 / 13

More Related Content

What's hot

random forests for ABC model choice and parameter estimation
random forests for ABC model choice and parameter estimationrandom forests for ABC model choice and parameter estimation
random forests for ABC model choice and parameter estimationChristian Robert
 
Multiple estimators for Monte Carlo approximations
Multiple estimators for Monte Carlo approximationsMultiple estimators for Monte Carlo approximations
Multiple estimators for Monte Carlo approximationsChristian Robert
 
Laplace's Demon: seminar #1
Laplace's Demon: seminar #1Laplace's Demon: seminar #1
Laplace's Demon: seminar #1Christian Robert
 
Lecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcLecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcRiyandika Jastin
 
Bayesian inference for mixed-effects models driven by SDEs and other stochast...
Bayesian inference for mixed-effects models driven by SDEs and other stochast...Bayesian inference for mixed-effects models driven by SDEs and other stochast...
Bayesian inference for mixed-effects models driven by SDEs and other stochast...Umberto Picchini
 
IJSRED-V2I5P56
IJSRED-V2I5P56IJSRED-V2I5P56
IJSRED-V2I5P56IJSRED
 
ABC short course: survey chapter
ABC short course: survey chapterABC short course: survey chapter
ABC short course: survey chapterChristian Robert
 
BlUP and BLUE- REML of linear mixed model
BlUP and BLUE- REML of linear mixed modelBlUP and BLUE- REML of linear mixed model
BlUP and BLUE- REML of linear mixed modelKyusonLim
 
Slides: Hypothesis testing, information divergence and computational geometry
Slides: Hypothesis testing, information divergence and computational geometrySlides: Hypothesis testing, information divergence and computational geometry
Slides: Hypothesis testing, information divergence and computational geometryFrank Nielsen
 
CISEA 2019: ABC consistency and convergence
CISEA 2019: ABC consistency and convergenceCISEA 2019: ABC consistency and convergence
CISEA 2019: ABC consistency and convergenceChristian Robert
 
Coordinate sampler : A non-reversible Gibbs-like sampler
Coordinate sampler : A non-reversible Gibbs-like samplerCoordinate sampler : A non-reversible Gibbs-like sampler
Coordinate sampler : A non-reversible Gibbs-like samplerChristian Robert
 
ABC based on Wasserstein distances
ABC based on Wasserstein distancesABC based on Wasserstein distances
ABC based on Wasserstein distancesChristian Robert
 
Introduction to Evidential Neural Networks
Introduction to Evidential Neural NetworksIntroduction to Evidential Neural Networks
Introduction to Evidential Neural NetworksFederico Cerutti
 
Convergence of ABC methods
Convergence of ABC methodsConvergence of ABC methods
Convergence of ABC methodsChristian Robert
 
Inference in generative models using the Wasserstein distance [[INI]
Inference in generative models using the Wasserstein distance [[INI]Inference in generative models using the Wasserstein distance [[INI]
Inference in generative models using the Wasserstein distance [[INI]Christian Robert
 

What's hot (20)

random forests for ABC model choice and parameter estimation
random forests for ABC model choice and parameter estimationrandom forests for ABC model choice and parameter estimation
random forests for ABC model choice and parameter estimation
 
the ABC of ABC
the ABC of ABCthe ABC of ABC
the ABC of ABC
 
Multiple estimators for Monte Carlo approximations
Multiple estimators for Monte Carlo approximationsMultiple estimators for Monte Carlo approximations
Multiple estimators for Monte Carlo approximations
 
ABC-Gibbs
ABC-GibbsABC-Gibbs
ABC-Gibbs
 
Laplace's Demon: seminar #1
Laplace's Demon: seminar #1Laplace's Demon: seminar #1
Laplace's Demon: seminar #1
 
Lecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etcLecture 04 newton-raphson, secant method etc
Lecture 04 newton-raphson, secant method etc
 
asymptotics of ABC
asymptotics of ABCasymptotics of ABC
asymptotics of ABC
 
Bayesian inference for mixed-effects models driven by SDEs and other stochast...
Bayesian inference for mixed-effects models driven by SDEs and other stochast...Bayesian inference for mixed-effects models driven by SDEs and other stochast...
Bayesian inference for mixed-effects models driven by SDEs and other stochast...
 
IJSRED-V2I5P56
IJSRED-V2I5P56IJSRED-V2I5P56
IJSRED-V2I5P56
 
ABC short course: survey chapter
ABC short course: survey chapterABC short course: survey chapter
ABC short course: survey chapter
 
BlUP and BLUE- REML of linear mixed model
BlUP and BLUE- REML of linear mixed modelBlUP and BLUE- REML of linear mixed model
BlUP and BLUE- REML of linear mixed model
 
ABC-Gibbs
ABC-GibbsABC-Gibbs
ABC-Gibbs
 
Slides: Hypothesis testing, information divergence and computational geometry
Slides: Hypothesis testing, information divergence and computational geometrySlides: Hypothesis testing, information divergence and computational geometry
Slides: Hypothesis testing, information divergence and computational geometry
 
CISEA 2019: ABC consistency and convergence
CISEA 2019: ABC consistency and convergenceCISEA 2019: ABC consistency and convergence
CISEA 2019: ABC consistency and convergence
 
Coordinate sampler : A non-reversible Gibbs-like sampler
Coordinate sampler : A non-reversible Gibbs-like samplerCoordinate sampler : A non-reversible Gibbs-like sampler
Coordinate sampler : A non-reversible Gibbs-like sampler
 
ABC based on Wasserstein distances
ABC based on Wasserstein distancesABC based on Wasserstein distances
ABC based on Wasserstein distances
 
Introduction to Evidential Neural Networks
Introduction to Evidential Neural NetworksIntroduction to Evidential Neural Networks
Introduction to Evidential Neural Networks
 
Convergence of ABC methods
Convergence of ABC methodsConvergence of ABC methods
Convergence of ABC methods
 
Inference in generative models using the Wasserstein distance [[INI]
Inference in generative models using the Wasserstein distance [[INI]Inference in generative models using the Wasserstein distance [[INI]
Inference in generative models using the Wasserstein distance [[INI]
 
ABC workshop: 17w5025
ABC workshop: 17w5025ABC workshop: 17w5025
ABC workshop: 17w5025
 

Similar to Newton Raphson iterative Method

Secant Iterative method
Secant Iterative methodSecant Iterative method
Secant Iterative methodIsaac Yowetu
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentationAbdullah Moin
 
Mit18 330 s12_chapter4
Mit18 330 s12_chapter4Mit18 330 s12_chapter4
Mit18 330 s12_chapter4CAALAAA
 
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...RaihanHossain49
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlabsheetslibrary
 
Solution of non-linear equations
Solution of non-linear equationsSolution of non-linear equations
Solution of non-linear equationsZunAib Ali
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlabZunAib Ali
 
Newton-Raphson Iteration marths 4 ntsm
Newton-Raphson Iteration marths 4 ntsmNewton-Raphson Iteration marths 4 ntsm
Newton-Raphson Iteration marths 4 ntsmNemish Bhojani
 
Newton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationNewton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationmuyuubyou
 
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...mathsjournal
 
Applied numerical methods lec5
Applied numerical methods lec5Applied numerical methods lec5
Applied numerical methods lec5Yasser Ahmed
 
Concentration inequality in Machine Learning
Concentration inequality in Machine LearningConcentration inequality in Machine Learning
Concentration inequality in Machine LearningVARUN KUMAR
 
Newton's Raphson method
Newton's Raphson methodNewton's Raphson method
Newton's Raphson methodSaloni Singhal
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson methodBijay Mishra
 
Numerical differentation with c
Numerical differentation with cNumerical differentation with c
Numerical differentation with cYagya Dev Bhardwaj
 
Fixed point iteration
Fixed point iterationFixed point iteration
Fixed point iterationIsaac Yowetu
 

Similar to Newton Raphson iterative Method (20)

Secant Iterative method
Secant Iterative methodSecant Iterative method
Secant Iterative method
 
Newton raphsonmethod presentation
Newton raphsonmethod presentationNewton raphsonmethod presentation
Newton raphsonmethod presentation
 
Mit18 330 s12_chapter4
Mit18 330 s12_chapter4Mit18 330 s12_chapter4
Mit18 330 s12_chapter4
 
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...
Exploring_the_Fundamentals_of_Numerical_Analysis_An_Overview_of_Newton_Raphso...
 
S3-3.pdf
S3-3.pdfS3-3.pdf
S3-3.pdf
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlab
 
Solution of non-linear equations
Solution of non-linear equationsSolution of non-linear equations
Solution of non-linear equations
 
Non linearequationsmatlab
Non linearequationsmatlabNon linearequationsmatlab
Non linearequationsmatlab
 
Newton-Raphson Iteration marths 4 ntsm
Newton-Raphson Iteration marths 4 ntsmNewton-Raphson Iteration marths 4 ntsm
Newton-Raphson Iteration marths 4 ntsm
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton Raphson
 
Newton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanationNewton raphson halley_householder_simpleexplanation
Newton raphson halley_householder_simpleexplanation
 
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
 
Applied numerical methods lec5
Applied numerical methods lec5Applied numerical methods lec5
Applied numerical methods lec5
 
Concentration inequality in Machine Learning
Concentration inequality in Machine LearningConcentration inequality in Machine Learning
Concentration inequality in Machine Learning
 
Newton's Raphson method
Newton's Raphson methodNewton's Raphson method
Newton's Raphson method
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
 
Numerical differentation with c
Numerical differentation with cNumerical differentation with c
Numerical differentation with c
 
AJMS_402_22_Reprocess_new.pdf
AJMS_402_22_Reprocess_new.pdfAJMS_402_22_Reprocess_new.pdf
AJMS_402_22_Reprocess_new.pdf
 
Fixed point iteration
Fixed point iterationFixed point iteration
Fixed point iteration
 
Prerna actual.pptx
Prerna actual.pptxPrerna actual.pptx
Prerna actual.pptx
 

More from Isaac Yowetu

Inverse-power-method.pdf
Inverse-power-method.pdfInverse-power-method.pdf
Inverse-power-method.pdfIsaac Yowetu
 
Approximating Dominant Eivenvalue By The Power Method
Approximating Dominant Eivenvalue By The Power MethodApproximating Dominant Eivenvalue By The Power Method
Approximating Dominant Eivenvalue By The Power MethodIsaac Yowetu
 
Singular Value Decompostion (SVD): Worked example 3
Singular Value Decompostion (SVD): Worked example 3Singular Value Decompostion (SVD): Worked example 3
Singular Value Decompostion (SVD): Worked example 3Isaac Yowetu
 
Singular Value Decompostion (SVD): Worked example 2
Singular Value Decompostion (SVD): Worked example 2Singular Value Decompostion (SVD): Worked example 2
Singular Value Decompostion (SVD): Worked example 2Isaac Yowetu
 
Singular Value Decompostion (SVD): Worked example 1
Singular Value Decompostion (SVD): Worked example 1Singular Value Decompostion (SVD): Worked example 1
Singular Value Decompostion (SVD): Worked example 1Isaac Yowetu
 
Singular Value Decompostion (SVD)
Singular Value Decompostion (SVD)Singular Value Decompostion (SVD)
Singular Value Decompostion (SVD)Isaac Yowetu
 
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.Isaac Yowetu
 
Givens rotation method
Givens rotation methodGivens rotation method
Givens rotation methodIsaac Yowetu
 
Sherman-Morrison Formula Proof
Sherman-Morrison Formula ProofSherman-Morrison Formula Proof
Sherman-Morrison Formula ProofIsaac Yowetu
 
Householder transformation | Householder Reflection with QR Decomposition
Householder transformation | Householder Reflection with QR DecompositionHouseholder transformation | Householder Reflection with QR Decomposition
Householder transformation | Householder Reflection with QR DecompositionIsaac Yowetu
 
Gram-Schmidt and QR Decomposition (Factorization) of Matrices
Gram-Schmidt and QR Decomposition (Factorization) of MatricesGram-Schmidt and QR Decomposition (Factorization) of Matrices
Gram-Schmidt and QR Decomposition (Factorization) of MatricesIsaac Yowetu
 
Gram schmidt orthogonalization | Orthonormal Process
Gram schmidt orthogonalization | Orthonormal Process Gram schmidt orthogonalization | Orthonormal Process
Gram schmidt orthogonalization | Orthonormal Process Isaac Yowetu
 
Regula Falsi (False position) Method
Regula Falsi (False position) MethodRegula Falsi (False position) Method
Regula Falsi (False position) MethodIsaac Yowetu
 
Projectors and Projection Onto Subspaces
Projectors and Projection Onto SubspacesProjectors and Projection Onto Subspaces
Projectors and Projection Onto SubspacesIsaac Yowetu
 
Projectors and Projection Onto a Line
Projectors and Projection Onto a LineProjectors and Projection Onto a Line
Projectors and Projection Onto a LineIsaac Yowetu
 

More from Isaac Yowetu (17)

Inverse-power-method.pdf
Inverse-power-method.pdfInverse-power-method.pdf
Inverse-power-method.pdf
 
Approximating Dominant Eivenvalue By The Power Method
Approximating Dominant Eivenvalue By The Power MethodApproximating Dominant Eivenvalue By The Power Method
Approximating Dominant Eivenvalue By The Power Method
 
Singular Value Decompostion (SVD): Worked example 3
Singular Value Decompostion (SVD): Worked example 3Singular Value Decompostion (SVD): Worked example 3
Singular Value Decompostion (SVD): Worked example 3
 
Singular Value Decompostion (SVD): Worked example 2
Singular Value Decompostion (SVD): Worked example 2Singular Value Decompostion (SVD): Worked example 2
Singular Value Decompostion (SVD): Worked example 2
 
Singular Value Decompostion (SVD): Worked example 1
Singular Value Decompostion (SVD): Worked example 1Singular Value Decompostion (SVD): Worked example 1
Singular Value Decompostion (SVD): Worked example 1
 
Singular Value Decompostion (SVD)
Singular Value Decompostion (SVD)Singular Value Decompostion (SVD)
Singular Value Decompostion (SVD)
 
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.
Cayley-Hamilton Theorem, Eigenvalues, Eigenvectors and Eigenspace.
 
Givens rotation method
Givens rotation methodGivens rotation method
Givens rotation method
 
Sherman-Morrison Formula Proof
Sherman-Morrison Formula ProofSherman-Morrison Formula Proof
Sherman-Morrison Formula Proof
 
Householder transformation | Householder Reflection with QR Decomposition
Householder transformation | Householder Reflection with QR DecompositionHouseholder transformation | Householder Reflection with QR Decomposition
Householder transformation | Householder Reflection with QR Decomposition
 
Gram-Schmidt and QR Decomposition (Factorization) of Matrices
Gram-Schmidt and QR Decomposition (Factorization) of MatricesGram-Schmidt and QR Decomposition (Factorization) of Matrices
Gram-Schmidt and QR Decomposition (Factorization) of Matrices
 
Gram schmidt orthogonalization | Orthonormal Process
Gram schmidt orthogonalization | Orthonormal Process Gram schmidt orthogonalization | Orthonormal Process
Gram schmidt orthogonalization | Orthonormal Process
 
Regula Falsi (False position) Method
Regula Falsi (False position) MethodRegula Falsi (False position) Method
Regula Falsi (False position) Method
 
Bisection method
Bisection methodBisection method
Bisection method
 
Projectors and Projection Onto Subspaces
Projectors and Projection Onto SubspacesProjectors and Projection Onto Subspaces
Projectors and Projection Onto Subspaces
 
Projectors and Projection Onto a Line
Projectors and Projection Onto a LineProjectors and Projection Onto a Line
Projectors and Projection Onto a Line
 
Aitken's Method
Aitken's MethodAitken's Method
Aitken's Method
 

Recently uploaded

Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxAmita Gupta
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 

Recently uploaded (20)

Third Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptxThird Battle of Panipat detailed notes.pptx
Third Battle of Panipat detailed notes.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 

Newton Raphson iterative Method

  • 1. Overview of Newton Raphson Method Numerical Analysis Isaac Amornortey Yowetu NIMS-Ghana June 24, 2020
  • 2. Background of Newton Raphson Iteration 1 Background of Newton Raphson Iteration Graphical Example 2 Steps in Deriving Newton Raphson Iteration Derivations of Newton Raphson Method 3 Performing Iteration to find approximate Solution 4 Application of Newton Raphson Iteration Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 2 / 13
  • 3. Background of Newton Raphson Iteration Background of Newton Raphson Iteration This iterative method Newton Raphson is said to be named after Isaac Newton and Joseph Raphson. It is one of the opened Iterative method that helps in a quick way of finding the solutions of non-linear equations. This is achieved by producing successively better approximations to the actual roots of a real-valued functions f (x) = 0. This iterative method is applicable when f (x) and f (x) are both continuous and differentiable. The function f (x) is approximated by a straight line tangential to function curve, starting with an initial guess then, the x-intercept of the tangent line gives us the next approximation. Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 2 / 13
  • 4. Background of Newton Raphson Iteration Graphical Example Graphical Example Figure: A Graphic Example of Newton Raphson’s Iterations Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 3 / 13
  • 5. Steps in Deriving Newton Raphson Iteration Steps in Deriving Newton Raphson Iteration Given f (x) = 0 tanθ = f (x) = f (xn+1) − f (xn) xn+1 − xn (1) From the graph, when we can consider these Cartesian coordinates: xn+1, f (xn+1) and xn, f (xn) , but f (xn+1) = 0. Hence, f (x) = 0 − f (xn) xn+1 − xn (2) (xn+1 − xn)f (x) = −f (xn) (3) (xn+1 − xn) = − f (xn) f (x) (4) Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 4 / 13
  • 6. Steps in Deriving Newton Raphson Iteration Derivations of Newton Raphson Method xn+1 = xn − f (xn) f (x) (5) Remarks The xn+1 − value at which there is converges is the solution of interest. It takes an intial guess to start its iteration process Second Derivation Suppose x∗ is the solution of f (x) = 0 and let xn be the approximate solution of x∗ s.t |x∗ − xn| = δ << 1. By the use of Taylor Series approximation, we can have: Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 5 / 13
  • 7. Steps in Deriving Newton Raphson Iteration Derivations of Newton Raphson Method 0 = f (x∗ ) = f (xn + δ) = f (xn+1) (6) f (xn+1) = f (xn) + δf (xn) + δ2 2! f (xn) + ... = 0 (7) But neglecting the powers of δ, n ≥ 2, we now have; f (xn) + δf (xn) ≈ 0 (8) But δ = xn+1 − xn. We can write eqn(8) as: f (xn) = −(xn+1 − xn)f (xn) (9) f (xn) f (xn) = xn − xn+1 (10) xn+1 = xn − f (xn) f (xn) (11) Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 6 / 13
  • 8. Performing Iteration to find approximate Solution Performing Newton Raphson Iteration We start our iteration with an initial point x0 x1 = x0 − f (x0) f (x0) x2 = x1 − f (x1) f (x1) x3 = x2 − f (x2) f (x2) x4 = x3 − f (x3) f (x3) ... xn+1 = xn − f (xn) f (xn) Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 7 / 13
  • 9. Performing Iteration to find approximate Solution Convergence Criteria of Newton Raphson Using the Newton Raphson Formula: xn+1 = xn − f (xn) f (xn) Φ(xn) = xn − f (xn) f (xn) Φ (xn) = d dx xn − f (xn) f (xn) = 1 − d dx f (xn) f (xn) = 1 − d dx f (xn) · f (xn)−1 = 1 − f (xn) · f (xn)−1 − f (xn) · f (xn)−2 · f (xn) = 1 − f (xn) f (xn) − f (xn) · f (xn) f (xn)2 Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 8 / 13
  • 10. Performing Iteration to find approximate Solution Derivation continue.... Φ (xn) = f (xn) · f (xn) f (xn)2 For convergences with respect to the initial guess, |Φ (xn)| < 1 We can also consider checking the convergence criterion as: f (xn) · f (xn) < f (xn)2 Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 9 / 13
  • 11. Performing Iteration to find approximate Solution Stopping Criteria Error Formula Absolute Error = |x − x∗ | Relative Error = |x − x∗ | |x| Where x, x∗ are true-value and approximated-value respectively. These error formula is not of direct use as the true value x is not known. Commonly Use Stopping Criteria |xn+1 − xn| < ε |xn+1−xn| |xn+1| < ε or |xn−xn+1| |xn| < ε Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 9 / 13
  • 12. Application of Newton Raphson Iteration Application of Newton Raphson Iteration Example 1 Find a root of xex = 1 using Newton Raphson iteration. Take x0 = 0.5 Considering our f (x) = xex − 1 = 0 Solution Checking the convergence at x0 = 0.5 f (x) = ex + xex = ex (1 + x) (12) f (x) = ex + ex + xex = ex (2 + x) (13) |Φ (0.5)| = (0.5·e0.5−1)·e0.5(2+0.5) e0.5(1+0.5) 2 = 0.1184 < 1. Hence, there will be convergence Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 10 / 13
  • 13. Application of Newton Raphson Iteration Solution Continue... x1 = x0 − f (x0) f (x0) = 0.5 − 0.5e0.5 − 1 e0.5(1 + 0.5) = 0.5710 x2 = x1 − f (x1) f (x1) = 0.5672 x3 = x2 − f (x2) f (x2) = 0.5671 ... x100 = x99 − f (x99) f (x99) = 0.5671 − 0.5671e0.5671 − 1 e0.5671(1 + 0.5671) = 0.5671 After successive iterations, the approximated value converges x∗ = 0.5671 Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 11 / 13
  • 14. Application of Newton Raphson Iteration Example 2 Consider the nonlinear equation x3 = 2x + 1 with a solution with the interval I = [1.5, 2.0] using Newton Raphson iteration with initial guess x0 = 1.5, find the approximated root. Considering our f (x) = x3 − 2x − 1 = 0 Solution Checking the convergence at x0 = 1.5 f (x) = 3x2 − 2 (14) f (x) = 6x (15) |Φ (1.5)| = (1.5)3−2(1.5)−1 · 6(1.5) 3(1.5)2−2 2 = 0.2493 < 1. Hence, there will be convergence Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 12 / 13
  • 15. Application of Newton Raphson Iteration Solution Continue... x1 = x0 − f (x0) f (x0) = 1.5 − (1.5)3 − 2(1.5) − 1 3(1.5)2 − 2 = 1.6316 x2 = x1 − f (x1) f (x1) = 1.6182 x3 = x2 − f (x2) f (x2) = 1.6180 ... x100 = x99 − f (x99) f (x99) = 1.6180 − (1.6180)3 − 2(1.6180) − 1 3(1.6180)2 − 2 = 1.6180 After successive iterations, the approximated value converges x∗ = 1.6180 Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 13 / 13
  • 16. Application of Newton Raphson Iteration End THANK YOU Please Like, Comment and Subscribe to this Youtube Channel Isaac Amornortey Yowetu (NIMS-Ghana) Overview of Newton Raphson Method June 24, 2020 13 / 13