SlideShare a Scribd company logo
Overview of Aitken Method
Numerical Analysis
Isaac Amornortey Yowetu
NIMS-Ghana
June 28, 2020
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Outline
Background of Aitken ∆2
Method
Derivation of Aitken’s ∆2
Method
Working With the Aitken’s Algorithm
Finding root with Fixed-Point Iteration
Fixed-Point Iteration with Aitken Method
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Background of Aitken ∆2
Method
This method is used to accelerate the rate of convergence
of sequences generated from an iterative method.
It is most useful for accelerating the convergence of
sequences that converges linearly.
Aitken ∆2
Method is said to be named after Alexander
Aitken (1926).
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Derivation of Aitken’s ∆2
Method
suppose xn − α = δn and ∃λ ∈ R, such that
δn+1 = λδn (1)
δn+2 = λδn+1 (2)
We divide eqn(1) by eqn(2)
δn+1
δn+2
=
λδn
λδn+1
(3)
λδ2
n+1 = λδn · δn+2 (4)
δ2
n+1 = δn · δn+2 (5)
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Derivation Continues...
Substitute δn = xn − α
(xn+1 − α)2
= (xn − α) · (xn+2 − α) (6)
x2
n+1 − 2α · xn+1 + α2
= xn · xn+2 − α · xn+2 − α · xn + α2
(7)
x2
n+1 − 2α · xn+1 = xn · xn+2 − α · xn+2 − α · xn
(8)
α · xn+2 − 2α · xn+1 + α · xn = xn · xn+2 − x2
n+1 (9)
α(xn+2 − 2xn+1 + xn) = xn · xn+2 − x2
n+1 (10)
α =
xn · xn+2 − x2
n+1
xn+2 − 2xn+1 + xn
(11)
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Derivation Continues....
α =
xn(xn+2 − 2xn+1 + xn) − xn(−2xn+1 + xn) − x2
n+1
xn+2 − 2xn+1 + xn
(12)
α =
xn(xn+2 − 2xn+1 + xn) + 2xnxn+1 − x2
n − x2
n+1
xn+2 − 2xn+1 + xn
(13)
α =
xn(xn+2 − 2xn+1 + xn) − (x2
n+1 − 2xnxn+1 + x2
n )
xn+2 − 2xn+1 + xn
(14)
α =
xn(xn+2 − 2xn+1 + xn) − (xn+1 − xn)2
xn+2 − 2xn+1 + xn
(15)
α = xn −
(xn+1 − xn)2
xn+2 − 2xn+1 + xn
(16)
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Working With the Aitken’s ∆2
Algorithm
Step 1. Get x0
Step 2. Solve for
x1 = g(x0) and x2 = g(x1)
Step 3. Solve for x3 using Aitken’s method to accelerate the
convergence
x3 = x0 −
(x1 − x0)2
x2 − 2x1 + x0
Step 4. Set x3 = x0 and start the iteration again.
Step 5. Continue till convergence is obtained.
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Finding root with Fixed-Point Iteration
Example 1
Find a root of xex
= 1 on I = [0, 1] using fixed-point iteration.
Considering our f (x) = xex
− 1 = 0
Solution
We could express f (x) as x = e−x
y1 = x and y2 = g(x) = e−x
g(x) = e−x
(17)
g (x) = −e−x
(18)
choose x0 = 0.5 ∈ [0, 1]
|g (0.5)| = | − e−0.5
| = 0.6065 < 1. Hence, g(x) is good
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Solution Continue...
x1 = g(x0) = e−0.5
= 0.6065 (19)
x2 = g(x1) = 0.5452 (20)
x3 = g(x2) = 0.5797 (21)
x4 = g(x3) = 0.5601 (22)
x5 = g(x4) = 0.5712 (23)
x6 = g(x5) = 0.5649 (24)
x7 = g(x6) = 0.5684 (25)
x8 = g(x7) = 0.5664 (26)
x9 = g(x8) = 0.5676 (27)
After successive iterations, the approximated value converges
x∗
= 0.5671
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Finding root with Fixed-Point Iteration & Aitken
Example 2
Find a root of xex
= 1 on I = [0, 1] using fixed-point iteration
with Aitken’s method.
Considering our f (x) = xex
− 1 = 0
Solution
From eqn(17), g(x) = e−x
Using x0 = 0.5, x1 = 0.6065, x2 = 0.5452
x3 = 0.5 −
(0.6065 − 0.5)2
0.5452 − 2(0.6065) + 0.5
= 0.5676 (28)
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
Solution Continues...
x4 = g(x3) = e−0.5676
= 0.5669 (29)
x5 = g(x4) = 0.5672 (30)
Using x3 = 0.5676, x4 = 0.5669, x5 = 0.5672
x6 = 0.5676 −
(0.5669 − 0.5676)2
0.5672 − 2(0.5669) + 0.5676
= 0.5671 (31)
After successive iterations, the approximated value converges
x∗
= 0.5671
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method
Background of Aitken ∆2
Method Derivation of Aitken’s ∆2
Method Working With the Aitken’s Algorithm Finding ro
End
THANK YOU
Isaac Amornortey Yowetu NIMS-Ghana
Overview of Aitken Method

More Related Content

What's hot

Spline interpolation numerical methods presentation
Spline interpolation numerical methods presentationSpline interpolation numerical methods presentation
Spline interpolation numerical methods presentation
Shohanur Nishad
 
Fourier series
Fourier series Fourier series
Fourier series
Santhanam Krishnan
 
Interpolation
InterpolationInterpolation
Interpolation
Bhavik A Shah
 
Runge-Kutta-Methods.pptx
Runge-Kutta-Methods.pptxRunge-Kutta-Methods.pptx
Runge-Kutta-Methods.pptx
RAINERGERALDGALINATO
 
Solution of equations and eigenvalue problems
Solution of equations and eigenvalue problemsSolution of equations and eigenvalue problems
Solution of equations and eigenvalue problems
Santhanam Krishnan
 
Interpolation
InterpolationInterpolation
Interpolation
Santhanam Krishnan
 
Interpolation
InterpolationInterpolation
Interpolation
Brijesh Padhiyar
 
08 interpolation lagrange
08 interpolation   lagrange08 interpolation   lagrange
08 interpolation lagrangeMohammad Tawfik
 
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
IJERA Editor
 
Numerical Methods - Power Method for Eigen values
Numerical Methods - Power Method for Eigen valuesNumerical Methods - Power Method for Eigen values
Numerical Methods - Power Method for Eigen values
Dr. Nirav Vyas
 
Runge kutta
Runge kuttaRunge kutta
Runge kutta
Shubham Tomar
 
Curve fitting
Curve fittingCurve fitting
Curve fitting
aashikareliya
 
21 monotone sequences x
21 monotone sequences x21 monotone sequences x
21 monotone sequences x
math266
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
Meet Nayak
 
Numerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential EquationsNumerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential Equations
Meenakshisundaram N
 
Chap-1 Preliminary Concepts and Linear Finite Elements.pptx
Chap-1 Preliminary Concepts and Linear Finite Elements.pptxChap-1 Preliminary Concepts and Linear Finite Elements.pptx
Chap-1 Preliminary Concepts and Linear Finite Elements.pptx
Samirsinh Parmar
 
stirling method maths
stirling method mathsstirling method maths
stirling method maths
harsh kothari
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
MalathiNagarajan20
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
Diler4
 
Runge kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
Runge  kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...Runge  kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
Runge kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
Prashant Goad
 

What's hot (20)

Spline interpolation numerical methods presentation
Spline interpolation numerical methods presentationSpline interpolation numerical methods presentation
Spline interpolation numerical methods presentation
 
Fourier series
Fourier series Fourier series
Fourier series
 
Interpolation
InterpolationInterpolation
Interpolation
 
Runge-Kutta-Methods.pptx
Runge-Kutta-Methods.pptxRunge-Kutta-Methods.pptx
Runge-Kutta-Methods.pptx
 
Solution of equations and eigenvalue problems
Solution of equations and eigenvalue problemsSolution of equations and eigenvalue problems
Solution of equations and eigenvalue problems
 
Interpolation
InterpolationInterpolation
Interpolation
 
Interpolation
InterpolationInterpolation
Interpolation
 
08 interpolation lagrange
08 interpolation   lagrange08 interpolation   lagrange
08 interpolation lagrange
 
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
Properties of Caputo Operator and Its Applications to Linear Fractional Diffe...
 
Numerical Methods - Power Method for Eigen values
Numerical Methods - Power Method for Eigen valuesNumerical Methods - Power Method for Eigen values
Numerical Methods - Power Method for Eigen values
 
Runge kutta
Runge kuttaRunge kutta
Runge kutta
 
Curve fitting
Curve fittingCurve fitting
Curve fitting
 
21 monotone sequences x
21 monotone sequences x21 monotone sequences x
21 monotone sequences x
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
 
Numerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential EquationsNumerical Solution of Ordinary Differential Equations
Numerical Solution of Ordinary Differential Equations
 
Chap-1 Preliminary Concepts and Linear Finite Elements.pptx
Chap-1 Preliminary Concepts and Linear Finite Elements.pptxChap-1 Preliminary Concepts and Linear Finite Elements.pptx
Chap-1 Preliminary Concepts and Linear Finite Elements.pptx
 
stirling method maths
stirling method mathsstirling method maths
stirling method maths
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
 
Runge kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
Runge  kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...Runge  kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
Runge kutta method -by Prof.Prashant Goad(R.C.Patel Institute of Technology,...
 

Similar to Aitken's Method

Secant Iterative method
Secant Iterative methodSecant Iterative method
Secant Iterative method
Isaac Yowetu
 
Linear regression using least squares
Linear regression using least squaresLinear regression using least squares
Linear regression using least squares
Waleed Zaghal
 
51546 0131469657 ism-5
51546 0131469657 ism-551546 0131469657 ism-5
51546 0131469657 ism-5Carlos Fuentes
 
Calculo integral - Larson
Calculo integral - LarsonCalculo integral - Larson
Calculo integral - Larson
Juan Alejandro Alvarez Agudelo
 
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
The Statistical and Applied Mathematical Sciences Institute
 
51554 0131469657 ism-13
51554 0131469657 ism-1351554 0131469657 ism-13
51554 0131469657 ism-13Carlos Fuentes
 
Ejerciciosderivadasresueltos
EjerciciosderivadasresueltosEjerciciosderivadasresueltos
Ejerciciosderivadasresueltosbellidomates
 
Calculo i
Calculo iCalculo i
Calculo i
salomon benito
 
51548 0131469657 ism-7
51548 0131469657 ism-751548 0131469657 ism-7
51548 0131469657 ism-7Carlos Fuentes
 
Calculo i
Calculo iCalculo i
Calculo i
salomon benito
 
Cuaderno+de+integrales
Cuaderno+de+integralesCuaderno+de+integrales
Cuaderno+de+integralesjoseluisroyo
 
Presentation esa udrescu
Presentation esa udrescuPresentation esa udrescu
Presentation esa udrescu
Advanced-Concepts-Team
 
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
Jhonatan Minchán
 
Solucionario de matemáticas para administación y economia
Solucionario de matemáticas para administación y economiaSolucionario de matemáticas para administación y economia
Solucionario de matemáticas para administación y economia
Luis Perez Anampa
 
31350052 introductory-mathematical-analysis-textbook-solution-manual
31350052 introductory-mathematical-analysis-textbook-solution-manual31350052 introductory-mathematical-analysis-textbook-solution-manual
31350052 introductory-mathematical-analysis-textbook-solution-manual
Mahrukh Khalid
 
Sol mat haeussler_by_priale
Sol mat haeussler_by_prialeSol mat haeussler_by_priale
Sol mat haeussler_by_priale
Jeff Chasi
 
Formulario oficial-calculo
Formulario oficial-calculoFormulario oficial-calculo
Formulario oficial-calculo
Favian Flores
 

Similar to Aitken's Method (20)

Secant Iterative method
Secant Iterative methodSecant Iterative method
Secant Iterative method
 
Linear regression using least squares
Linear regression using least squaresLinear regression using least squares
Linear regression using least squares
 
Capitulo 5 Soluciones Purcell 9na Edicion
Capitulo 5 Soluciones Purcell 9na EdicionCapitulo 5 Soluciones Purcell 9na Edicion
Capitulo 5 Soluciones Purcell 9na Edicion
 
51546 0131469657 ism-5
51546 0131469657 ism-551546 0131469657 ism-5
51546 0131469657 ism-5
 
Calculo integral - Larson
Calculo integral - LarsonCalculo integral - Larson
Calculo integral - Larson
 
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
QMC: Operator Splitting Workshop, Projective Splitting with Forward Steps and...
 
51554 0131469657 ism-13
51554 0131469657 ism-1351554 0131469657 ism-13
51554 0131469657 ism-13
 
Ejerciciosderivadasresueltos
EjerciciosderivadasresueltosEjerciciosderivadasresueltos
Ejerciciosderivadasresueltos
 
Capitulo 7 Soluciones Purcell 9na Edicion
Capitulo 7 Soluciones Purcell 9na EdicionCapitulo 7 Soluciones Purcell 9na Edicion
Capitulo 7 Soluciones Purcell 9na Edicion
 
Calculo i
Calculo iCalculo i
Calculo i
 
51548 0131469657 ism-7
51548 0131469657 ism-751548 0131469657 ism-7
51548 0131469657 ism-7
 
Calculo i
Calculo iCalculo i
Calculo i
 
Cuaderno+de+integrales
Cuaderno+de+integralesCuaderno+de+integrales
Cuaderno+de+integrales
 
Presentation esa udrescu
Presentation esa udrescuPresentation esa udrescu
Presentation esa udrescu
 
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
Ernest f. haeussler, richard s. paul y richard j. wood. matemáticas para admi...
 
Solucionario de matemáticas para administación y economia
Solucionario de matemáticas para administación y economiaSolucionario de matemáticas para administación y economia
Solucionario de matemáticas para administación y economia
 
31350052 introductory-mathematical-analysis-textbook-solution-manual
31350052 introductory-mathematical-analysis-textbook-solution-manual31350052 introductory-mathematical-analysis-textbook-solution-manual
31350052 introductory-mathematical-analysis-textbook-solution-manual
 
Sol mat haeussler_by_priale
Sol mat haeussler_by_prialeSol mat haeussler_by_priale
Sol mat haeussler_by_priale
 
Formulario oficial-calculo
Formulario oficial-calculoFormulario oficial-calculo
Formulario oficial-calculo
 
Formulario calculo
Formulario calculoFormulario calculo
Formulario calculo
 

More from Isaac Yowetu

Inverse-power-method.pdf
Inverse-power-method.pdfInverse-power-method.pdf
Inverse-power-method.pdf
Isaac 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 Method
Isaac 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 3
Isaac 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 2
Isaac 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 1
Isaac 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 method
Isaac Yowetu
 
Sherman-Morrison Formula Proof
Sherman-Morrison Formula ProofSherman-Morrison Formula Proof
Sherman-Morrison Formula Proof
Isaac 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 Decomposition
Isaac 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 Matrices
Isaac 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) Method
Isaac Yowetu
 
Bisection method
Bisection methodBisection method
Bisection method
Isaac Yowetu
 
Projectors and Projection Onto Subspaces
Projectors and Projection Onto SubspacesProjectors and Projection Onto Subspaces
Projectors and Projection Onto Subspaces
Isaac Yowetu
 
Projectors and Projection Onto a Line
Projectors and Projection Onto a LineProjectors and Projection Onto a Line
Projectors and Projection Onto a Line
Isaac Yowetu
 
Newton Raphson iterative Method
Newton Raphson iterative MethodNewton Raphson iterative Method
Newton Raphson iterative Method
Isaac Yowetu
 
Fixed point iteration
Fixed point iterationFixed point iteration
Fixed point iteration
Isaac Yowetu
 

More from Isaac Yowetu (18)

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
 
Newton Raphson iterative Method
Newton Raphson iterative MethodNewton Raphson iterative Method
Newton Raphson iterative Method
 
Fixed point iteration
Fixed point iterationFixed point iteration
Fixed point iteration
 

Recently uploaded

Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
goswamiyash170123
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
AG2 Design
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
Krisztián Száraz
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
NelTorrente
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Landownership in the Philippines under the Americans-2-pptx.pptx
Landownership in the Philippines under the Americans-2-pptx.pptxLandownership in the Philippines under the Americans-2-pptx.pptx
Landownership in the Philippines under the Americans-2-pptx.pptx
JezreelCabil2
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
ArianaBusciglio
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 

Recently uploaded (20)

Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Landownership in the Philippines under the Americans-2-pptx.pptx
Landownership in the Philippines under the Americans-2-pptx.pptxLandownership in the Philippines under the Americans-2-pptx.pptx
Landownership in the Philippines under the Americans-2-pptx.pptx
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 

Aitken's Method

  • 1. Overview of Aitken Method Numerical Analysis Isaac Amornortey Yowetu NIMS-Ghana June 28, 2020
  • 2. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Outline Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding root with Fixed-Point Iteration Fixed-Point Iteration with Aitken Method Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 3. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Background of Aitken ∆2 Method This method is used to accelerate the rate of convergence of sequences generated from an iterative method. It is most useful for accelerating the convergence of sequences that converges linearly. Aitken ∆2 Method is said to be named after Alexander Aitken (1926). Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 4. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Derivation of Aitken’s ∆2 Method suppose xn − α = δn and ∃λ ∈ R, such that δn+1 = λδn (1) δn+2 = λδn+1 (2) We divide eqn(1) by eqn(2) δn+1 δn+2 = λδn λδn+1 (3) λδ2 n+1 = λδn · δn+2 (4) δ2 n+1 = δn · δn+2 (5) Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 5. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Derivation Continues... Substitute δn = xn − α (xn+1 − α)2 = (xn − α) · (xn+2 − α) (6) x2 n+1 − 2α · xn+1 + α2 = xn · xn+2 − α · xn+2 − α · xn + α2 (7) x2 n+1 − 2α · xn+1 = xn · xn+2 − α · xn+2 − α · xn (8) α · xn+2 − 2α · xn+1 + α · xn = xn · xn+2 − x2 n+1 (9) α(xn+2 − 2xn+1 + xn) = xn · xn+2 − x2 n+1 (10) α = xn · xn+2 − x2 n+1 xn+2 − 2xn+1 + xn (11) Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 6. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Derivation Continues.... α = xn(xn+2 − 2xn+1 + xn) − xn(−2xn+1 + xn) − x2 n+1 xn+2 − 2xn+1 + xn (12) α = xn(xn+2 − 2xn+1 + xn) + 2xnxn+1 − x2 n − x2 n+1 xn+2 − 2xn+1 + xn (13) α = xn(xn+2 − 2xn+1 + xn) − (x2 n+1 − 2xnxn+1 + x2 n ) xn+2 − 2xn+1 + xn (14) α = xn(xn+2 − 2xn+1 + xn) − (xn+1 − xn)2 xn+2 − 2xn+1 + xn (15) α = xn − (xn+1 − xn)2 xn+2 − 2xn+1 + xn (16) Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 7. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Working With the Aitken’s ∆2 Algorithm Step 1. Get x0 Step 2. Solve for x1 = g(x0) and x2 = g(x1) Step 3. Solve for x3 using Aitken’s method to accelerate the convergence x3 = x0 − (x1 − x0)2 x2 − 2x1 + x0 Step 4. Set x3 = x0 and start the iteration again. Step 5. Continue till convergence is obtained. Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 8. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Finding root with Fixed-Point Iteration Example 1 Find a root of xex = 1 on I = [0, 1] using fixed-point iteration. Considering our f (x) = xex − 1 = 0 Solution We could express f (x) as x = e−x y1 = x and y2 = g(x) = e−x g(x) = e−x (17) g (x) = −e−x (18) choose x0 = 0.5 ∈ [0, 1] |g (0.5)| = | − e−0.5 | = 0.6065 < 1. Hence, g(x) is good Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 9. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Solution Continue... x1 = g(x0) = e−0.5 = 0.6065 (19) x2 = g(x1) = 0.5452 (20) x3 = g(x2) = 0.5797 (21) x4 = g(x3) = 0.5601 (22) x5 = g(x4) = 0.5712 (23) x6 = g(x5) = 0.5649 (24) x7 = g(x6) = 0.5684 (25) x8 = g(x7) = 0.5664 (26) x9 = g(x8) = 0.5676 (27) After successive iterations, the approximated value converges x∗ = 0.5671 Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 10. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Finding root with Fixed-Point Iteration & Aitken Example 2 Find a root of xex = 1 on I = [0, 1] using fixed-point iteration with Aitken’s method. Considering our f (x) = xex − 1 = 0 Solution From eqn(17), g(x) = e−x Using x0 = 0.5, x1 = 0.6065, x2 = 0.5452 x3 = 0.5 − (0.6065 − 0.5)2 0.5452 − 2(0.6065) + 0.5 = 0.5676 (28) Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 11. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro Solution Continues... x4 = g(x3) = e−0.5676 = 0.5669 (29) x5 = g(x4) = 0.5672 (30) Using x3 = 0.5676, x4 = 0.5669, x5 = 0.5672 x6 = 0.5676 − (0.5669 − 0.5676)2 0.5672 − 2(0.5669) + 0.5676 = 0.5671 (31) After successive iterations, the approximated value converges x∗ = 0.5671 Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method
  • 12. Background of Aitken ∆2 Method Derivation of Aitken’s ∆2 Method Working With the Aitken’s Algorithm Finding ro End THANK YOU Isaac Amornortey Yowetu NIMS-Ghana Overview of Aitken Method