Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Solution of equations and eigenvalue problems
 To find an approximate real root of given
equation.
 ITERATION FORMULA OF NEWTON-
RAPHSON METHOD
 𝒙𝒊+𝟏 = 𝒙𝒊 −
𝒇 𝒙 𝒊
𝒇′ 𝒙 𝒊
, 𝒊 = 𝟎, 𝟏, 𝟐 … .
 THE CONDITION FOR CONVERGENCE OF
NEWTON-RAPHSON METHOD FOR 𝒇(𝒙) = 𝟎
 The condition is |𝑓(𝑥). 𝑓′(𝑥)| < 𝑓′ 𝑥
2
in a
neighbourhood of the root
 ORDER OF CONVERGENCE OF NEWTON-
RAPHSON METHOD
 The order of convergence is 2.
 To find the root of the equation 𝑓(𝑥) = 0
 Step 1. Find the numbers a and b in such a way that
𝑓(𝑎) and 𝑓(𝑏) are in opposite signs. (From this we
conclude that there is one real root between a and b)
 Step 2. Choose the initial approximate root as 𝑥0
 Step 3. Using the Newton Raphson’s formula 𝒙𝒊+𝟏 =
𝒙𝒊 −
𝒇 𝒙𝒊
𝒇′ 𝒙 𝒊
, 𝒊 = 𝟎, 𝟏, 𝟐 … ., find the sequence
𝑥0, 𝑥1, … 𝑥 𝑛, . . and the point of convergence of the
sequence is the root of the given equation.
 1. It can be used for finding root of both
algebraic and transcendental equations.
 2. The convergence of Newton’s method is
faster and so it is preferred compared to
other methods.
 3. It is simple and easy to deal with and it is
used to improve the results obtained by
other methods.
 To find the root of the equation 𝑓(𝑥) = 0
 Step 1. Find the numbers a and b in such a way that
𝑓(𝑎) and 𝑓(𝑏) are in opposite signs. (From this we
conclude that there is one real root between a and b)
 Step 2. Write the given equation on the form 𝑥 =
∅(𝑥)
 Step 3. Choose the initial approximate root as 𝑥0
 Step 4. Replace 𝑥 by 𝑥0 in step 2, and take 𝑥1 =
∅(𝑥0)
 Step 5. Further , find 𝑥2 = ∅(𝑥1)
 Step 6. Continuing this way, we will get a sequence
𝑥0, 𝑥1, … 𝑥 𝑛, . . and the point of convergence of the
sequence is the root of the given equation
 ORDER OF CONVERGENCE OF FIXED POINT
ITERATION METHOD
 The order of convergence is 1.
 THE CONDITION FOR CONVERGENCE OF
FIXED POINT ITERATION METHOD FOR
𝒇(𝒙) = 𝟎
 The condition is |∅′ 𝑥 | < 1, for all values of
𝑥
 DIRECT METHOD
 1. Gauss-elimination method
 2. Gauss-Jordan method
 INDIRECT METHOD (ITERATION METHOD)
 1. Gauss-Jacobi method
 2. Gauss- Seidel method
 This is a direct method. In this method the
given ‘n’ system of simultaneous linear
equations
 𝑎𝑖1 𝑥1 + 𝑎𝑖2 𝑥2 + ⋯ + 𝑎𝑖𝑛 𝑥 𝑛 = 𝑏𝑖 , 𝑖 = 1,2, … 𝑛
 can be written in the form AX = B
 Where 𝐴 = 𝑎𝑖𝑗 𝑛×𝑛
𝑋 = 𝑥𝑖 𝑛×1 𝐵 =
𝑏𝑖 𝑛×1 matrices
 And in the augmented matrix (A, B), the
coefficient matrix A can be reduced to upper
triangular matrix, which can be solved by
using back substitution.
 This is a direct method. In this method the
given ‘n’ system of simultaneous linear
equations
 𝑎𝑖1 𝑥1 + 𝑎𝑖2 𝑥2 + ⋯ + 𝑎𝑖𝑛 𝑥 𝑛 = 𝑏𝑖 , 𝑖 = 1,2, … 𝑛
 can be written in the form AX = B
 Where 𝐴 = 𝑎𝑖𝑗 𝑛×𝑛
𝑋 = 𝑥𝑖 𝑛×1 𝐵 =
𝑏𝑖 𝑛×1 matrices
 And in the augmented matrix (A, B), the
coefficient matrix A can be reduced to a
diagonal matrix, which can be solved by
using back substitution.
 This is an iterative method.
 Suppose the given linear equations are
 𝑎1 𝑥 + 𝑏1 𝑦 + 𝑐1 𝑧 = 𝑑1 , 𝑎2 𝑥 + 𝑏2 𝑦 + 𝑐2 𝑧 = 𝑑2 , 𝑎3 𝑥 + 𝑏3 𝑦 + 𝑐3 𝑧 = 𝑑3
 Let the coefficient matrix 𝐴 =
𝑎1 𝑏1 𝑐1
𝑎2 𝑏2 𝑐2
𝑎3 𝑏3 𝑐3
 To apply Gauss – Jacobi, the coefficient matrix A should be diagonally dominant.
 (i.e) 𝑎1 > 𝑏1 + 𝑐1
 𝑏2 > 𝑎2 + 𝑐2
 𝑐3 > 𝑎3 + |𝑏3|
 To solve the given system, we have
 𝑥 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 − 𝑐1 𝑧)
 𝑦 =
1
𝑏2
(𝑑2 − 𝑎2 𝑥 − 𝑐2 𝑧)
 𝑧 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 − 𝑏3 𝑦)
 If 𝑥(0), 𝑦(0), 𝑧(0) are the initial values of x, y, z respectively
 First iteration values are
 𝑥 1 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 0 − 𝑐1 𝑧 0 )
 𝑦 1 =
1
𝑏2
(𝑑2 − 𝑎2 𝑥 0 − 𝑐2 𝑧 0 )
 𝑧 1 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 0 − 𝑏3 𝑦 0 )
 Second iteration values are
 𝑥 2 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 1 − 𝑐1 𝑧 1 )
 𝑦 2 =
1
𝑏2
(𝑑2 − 𝑎2 𝑥 1 − 𝑐2 𝑧 1 )
 𝑧 2 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 1 − 𝑏3 𝑦 1 )
 Proceeding like this and stop the iteration when the values of x, y, z are start repeating with required degree of
accuracy.
 This is an iterative method.
 Suppose the given linear equations are
 𝑎1 𝑥 + 𝑏1 𝑦 + 𝑐1 𝑧 = 𝑑1 , 𝑎2 𝑥 + 𝑏2 𝑦 + 𝑐2 𝑧 = 𝑑2 , 𝑎3 𝑥 + 𝑏3 𝑦 + 𝑐3 𝑧 = 𝑑3
 Let the coefficient matrix 𝐴 =
𝑎1 𝑏1 𝑐1
𝑎2 𝑏2 𝑐2
𝑎3 𝑏3 𝑐3
 To apply Gauss – Seidel, the coefficient matrix A should be diagonally dominant.
 (i.e) 𝑎1 > 𝑏1 + 𝑐1
 𝑏2 > 𝑎2 + 𝑐2
 𝑐3 > 𝑎3 + |𝑏3|
 To solve the given system, we have
 𝑥 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 − 𝑐1 𝑧)
 𝑦 =
1
𝑏2
(𝑑2 − 𝑎2 𝑥 − 𝑐2 𝑧)
 𝑧 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 − 𝑏3 𝑦)
 If 𝑥(0), 𝑦(0), 𝑧(0) are the initial values of x, y, z respectively
 First iteration values are
 𝑥 1 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 0 − 𝑐1 𝑧 0 )
 𝑦 1 =
1
𝑏2
(𝑑2 − 𝑎2 𝑥 1 − 𝑐2 𝑧 0 )
 𝑧 1 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 1 − 𝑏3 𝑦 1 )
 Second iteration values are
 𝑥 2 =
1
𝑎1
(𝑑1 − 𝑏1 𝑦 1 − 𝑐1 𝑧 1 )
 𝑦 2 =
1
𝑏2
𝑑2 − 𝑎2 𝑥 2 − 𝑐2 𝑧 1
 𝑧 2 =
1
𝑐3
(𝑑3 − 𝑎3 𝑥 2 − 𝑏3 𝑦 2 )
 Proceeding like this and stop the iteration when the values of x, y, z are start repeating with required degree of
accuracy.
 The condition is the absolute value of largest
coefficient is greater than the sum of the
absolute value of all the remaining
coefficients.
 (i.e) the coefficient matrix is diagonally
dominant
 (i.e) 𝑎𝑖𝑖 > 𝑗=1,𝑖≠𝑗
𝑛
|𝑎𝑖𝑗| ∀ 𝑖 = 1,2 … 𝑛
 The rate of convergence in Gauss –Seidel
method is very fast than in Gauss-Jacobi
S.No Gauss Jorden Gauss Jacobi
1 Direct method Iterative method
2 This method produce exact
solution
after a finite number of
steps
This method gives a sequence
of approximate solutions, which
ultimately approach the actual
solution.
3 Applicable if the coefficient
matrix
is non-singular
Applicable if the coefficient
matrix is diagonally dominant.
S.No Gauss elimination Gauss Jacobi
1 Direct method Iterative method
2 This method produce exact
solution after a finite number
of steps
This method gives a sequence
of approximate solutions,
which ultimately approach the
actual solution.
3 Applicable if the coefficient
matrix
is non-singular
Applicable if the coefficient
matrix is diagonally dominant.
 Procedure
 Step 1. Write the augmented matrix (𝐴, 𝐼) ,
where A is the given matrix
 Step 2. Reduce the matrix A in (𝐴, 𝐼) to the
identity matrix by using row transformation.
 Step 3. From step 2, you will get (𝐼 𝐴−1
)
 If A is any square matrix, then there exist a
scalar 𝜆 and a non-zero column vector X such
that AX = 𝜆 X, the scalar 𝜆 is called Eigen value
of A and the corresponding X is called Eigen
vector.
 By the property of Eigen values and Eigen
vectors , if 𝜆 is an Eigen value of A and X is the
corresponding Eigen vector, then
1
𝜆
is an Eigen
value of 𝐴−1
with the same Eigen vector X
 Also the smallest Eigen value of A is
1
𝜆
and the
corresponding Eigen vector is X
 And sum of the Eigen values of A= sum of the
principal diagonal elements of A
 Procedure - (for a square matrix A of order 3 x 3)
 1. Let 𝑋0 be the initial which is usually chosen as a vector
with all components equal to 1. 𝑖. 𝑒 𝑋0 =
1
1
1
(i.e.,
normalized)
 2. Find the product 𝐴𝑋0 and express it in the form 𝐴𝑋0 =
𝜆1 𝑋1, where 𝑋1 is normalized by taking out the largest
component𝜆1.
 3. Find 𝐴𝑋1 and express it in the form𝐴𝑋1 = 𝜆2 𝑋2, where
𝑋2 is normalized by taking out the largest component 𝜆2
and continue the process.
 4. Thus we have a sequence of equations
 𝐴𝑋0 = 𝜆1 𝑋1, 𝐴𝑋1 = 𝜆2 𝑋2, 𝐴𝑋2 = 𝜆3 𝑋3 … . ·
 5. We stop at the stage where 𝑋 𝑟−1, 𝑋 𝑟 are almost same.
 Then 𝜆 𝑟 is the largest Eigen value and 𝑋 𝑟 is the
corresponding Eigen vector.
 1. Symmetric Matrix
 A square matrix 𝑎𝑖𝑗 𝑛×𝑛
is said to be
symmetric matrix if 𝑎𝑖𝑗 = 𝑎𝑗𝑖 𝑓𝑜𝑟 𝑎𝑙𝑙 𝑖 ≠ 𝑗
 2. Orthogonal Matrix
 A square matrix 𝑎𝑖𝑗 𝑛×𝑛
is said to be
Orthogonal matrix if 𝐴𝐴 𝑇
= 𝐼
 (Or) 𝐴 𝑇 = 𝐴−1
 3. For an Orthogonal matrix A, 𝑑𝑒𝑡 𝐴 = 𝐴 =
± 1
 4. The diagonal elements of a diagonal
matrix D are its Eigen values
 Working Rule (Jacobi Method)
 If 𝐴 =
𝑎11 𝑎12 𝑎13
𝑎21 𝑎22 𝑎23
𝑎31 𝑎32 𝑎33
is the given symmetric matrix (𝑖𝑒. 𝑎𝑖𝑗 = 𝑎𝑗𝑖)
 Step 1. Choose the largest off diagonal element (say 𝑎13)
 Step 2. Then take the rotation matrix 𝑆1 =
𝑐𝑜𝑠𝜃 0 −𝑠𝑖𝑛𝜃
0 1 0
𝑠𝑖𝑛𝜃 0 𝑐𝑜𝑠𝜃
 Step 3. Define 𝑡𝑎𝑛2𝜃 =
2𝑎13
𝑎11−𝑎33
 𝑖. 𝑒 𝜃 =
1
2
tan−1 2𝑎13
𝑎11−𝑎33
𝑖𝑓 𝑎11 ≠ 𝑎33
 (or) 𝜃 =
𝜋
4
𝑖𝑓 𝑎11 = 𝑎33 & 𝑎12 > 0
 (or) 𝜃 = −
𝜋
4
𝑖𝑓 𝑎11 = 𝑎33 & 𝑎12 < 0
 Step 4. Substitute 𝜃 value in 𝑆1
 Step 5. Find 𝐴1 = 𝑆1
−1
𝐴𝑆1 = 𝑆1
𝑇
𝐴 𝑆1
 Step 6. Again choose the largest off-diagonal element of 𝐴1
 Step 7. Proceed again from Step 2 to step 5 until you get a diagonal matrix 𝐴 𝑛
 The diagonal elements in 𝐴 𝑛 are the Eigen values of A
 Step 8. For Eigen vector , to find the matrix 𝑆 = 𝑆1 𝑆2 . . = 𝑠𝑖𝑗
 The corresponding vectors are 𝑠𝑖1 , 𝑠𝑖2 , 𝑠𝑖3

More Related Content

What's hot

Green function
Green functionGreen function
Green function
hamza dahoka
 
Ode powerpoint presentation1
Ode powerpoint presentation1Ode powerpoint presentation1
Ode powerpoint presentation1
Pokkarn Narkhede
 
Gauss jordan
Gauss jordanGauss jordan
Gauss jordan
jorgeduardooo
 
Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014 Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014
Rani Sulvianuri
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of Matrices
AmenahGondal1
 
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-VEngineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Rai University
 
Secant method
Secant methodSecant method
Secant method
Nafiz Fuad
 
Eigenvalue problems .ppt
Eigenvalue problems .pptEigenvalue problems .ppt
Eigenvalue problems .ppt
Self-employed
 
Fuzzy Sets Introduction With Example
Fuzzy Sets Introduction With ExampleFuzzy Sets Introduction With Example
Fuzzy Sets Introduction With Example
raisnasir
 
Beta gamma functions
Beta gamma functionsBeta gamma functions
Beta gamma functions
Dr. Nirav Vyas
 
introduction to differential equations
introduction to differential equationsintroduction to differential equations
introduction to differential equations
Emdadul Haque Milon
 
B.tech ii unit-2 material beta gamma function
B.tech ii unit-2 material beta gamma functionB.tech ii unit-2 material beta gamma function
B.tech ii unit-2 material beta gamma function
Rai University
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical Integration
Tausif Shahanshah
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
aman1894
 
Direct Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations SystemsDirect Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations Systems
Lizeth Paola Barrero
 
Numerical method
Numerical methodNumerical method
Numerical method
Kumar Gaurav
 
Stability of Differential Equations
Stability of Differential EquationsStability of Differential Equations
Stability of Differential Equations
AbdullahMdSaifee
 
Linear vector space
Linear vector spaceLinear vector space
Linear vector space
Safiya Amer
 
Fuzzy arithmetic
Fuzzy arithmeticFuzzy arithmetic
Fuzzy arithmetic
Mohit Chimankar
 
Eigenvalues
EigenvaluesEigenvalues
Eigenvalues
Tarun Gehlot
 

What's hot (20)

Green function
Green functionGreen function
Green function
 
Ode powerpoint presentation1
Ode powerpoint presentation1Ode powerpoint presentation1
Ode powerpoint presentation1
 
Gauss jordan
Gauss jordanGauss jordan
Gauss jordan
 
Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014 Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of Matrices
 
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-VEngineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
Engineering Mathematics-IV_B.Tech_Semester-IV_Unit-V
 
Secant method
Secant methodSecant method
Secant method
 
Eigenvalue problems .ppt
Eigenvalue problems .pptEigenvalue problems .ppt
Eigenvalue problems .ppt
 
Fuzzy Sets Introduction With Example
Fuzzy Sets Introduction With ExampleFuzzy Sets Introduction With Example
Fuzzy Sets Introduction With Example
 
Beta gamma functions
Beta gamma functionsBeta gamma functions
Beta gamma functions
 
introduction to differential equations
introduction to differential equationsintroduction to differential equations
introduction to differential equations
 
B.tech ii unit-2 material beta gamma function
B.tech ii unit-2 material beta gamma functionB.tech ii unit-2 material beta gamma function
B.tech ii unit-2 material beta gamma function
 
Presentation on Numerical Integration
Presentation on Numerical IntegrationPresentation on Numerical Integration
Presentation on Numerical Integration
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
 
Direct Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations SystemsDirect Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations Systems
 
Numerical method
Numerical methodNumerical method
Numerical method
 
Stability of Differential Equations
Stability of Differential EquationsStability of Differential Equations
Stability of Differential Equations
 
Linear vector space
Linear vector spaceLinear vector space
Linear vector space
 
Fuzzy arithmetic
Fuzzy arithmeticFuzzy arithmetic
Fuzzy arithmetic
 
Eigenvalues
EigenvaluesEigenvalues
Eigenvalues
 

Similar to Solution of equations and eigenvalue problems

On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
International Journal of Engineering Inventions www.ijeijournal.com
 
E04 06 3943
E04 06 3943E04 06 3943
lec19.ppt
lec19.pptlec19.ppt
lec14.ppt
lec14.pptlec14.ppt
Computational Method for Engineers: Solving a system of Linear Equations
Computational Method for Engineers: Solving a system of Linear EquationsComputational Method for Engineers: Solving a system of Linear Equations
Computational Method for Engineers: Solving a system of Linear Equations
Bektu Dida
 
Tutorial_3_Solution_.pdf
Tutorial_3_Solution_.pdfTutorial_3_Solution_.pdf
Tutorial_3_Solution_.pdf
ssuserfb9ae6
 
Optimum Engineering Design - Day 2b. Classical Optimization methods
Optimum Engineering Design - Day 2b. Classical Optimization methodsOptimum Engineering Design - Day 2b. Classical Optimization methods
Optimum Engineering Design - Day 2b. Classical Optimization methods
SantiagoGarridoBulln
 
Calculas
CalculasCalculas
Calculas
Vatsal Manavar
 
2415systems_odes
2415systems_odes2415systems_odes
2415systems_odes
Betsy McCall
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
Rai University
 
Lecture 1.2 quadratic functions
Lecture 1.2 quadratic functionsLecture 1.2 quadratic functions
Lecture 1.2 quadratic functions
narayana dash
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
Rai University
 
lec23.ppt
lec23.pptlec23.ppt
One solution for many linear partial differential equations with terms of equ...
One solution for many linear partial differential equations with terms of equ...One solution for many linear partial differential equations with terms of equ...
One solution for many linear partial differential equations with terms of equ...
Lossian Barbosa Bacelar Miranda
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
RajKumar382958
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
RajKumar382958
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
MalathiNagarajan20
 
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
Vladimir Godovalov
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
MalarMohana
 
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
mathsjournal
 

Similar to Solution of equations and eigenvalue problems (20)

On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
On the Analysis of the Finite Element Solutions of Boundary Value Problems Us...
 
E04 06 3943
E04 06 3943E04 06 3943
E04 06 3943
 
lec19.ppt
lec19.pptlec19.ppt
lec19.ppt
 
lec14.ppt
lec14.pptlec14.ppt
lec14.ppt
 
Computational Method for Engineers: Solving a system of Linear Equations
Computational Method for Engineers: Solving a system of Linear EquationsComputational Method for Engineers: Solving a system of Linear Equations
Computational Method for Engineers: Solving a system of Linear Equations
 
Tutorial_3_Solution_.pdf
Tutorial_3_Solution_.pdfTutorial_3_Solution_.pdf
Tutorial_3_Solution_.pdf
 
Optimum Engineering Design - Day 2b. Classical Optimization methods
Optimum Engineering Design - Day 2b. Classical Optimization methodsOptimum Engineering Design - Day 2b. Classical Optimization methods
Optimum Engineering Design - Day 2b. Classical Optimization methods
 
Calculas
CalculasCalculas
Calculas
 
2415systems_odes
2415systems_odes2415systems_odes
2415systems_odes
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
 
Lecture 1.2 quadratic functions
Lecture 1.2 quadratic functionsLecture 1.2 quadratic functions
Lecture 1.2 quadratic functions
 
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICSBSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
BSC_COMPUTER _SCIENCE_UNIT-5_DISCRETE MATHEMATICS
 
lec23.ppt
lec23.pptlec23.ppt
lec23.ppt
 
One solution for many linear partial differential equations with terms of equ...
One solution for many linear partial differential equations with terms of equ...One solution for many linear partial differential equations with terms of equ...
One solution for many linear partial differential equations with terms of equ...
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
Comparative analysis of x^3+y^3=z^3 and x^2+y^2=z^2 in the Interconnected Sets
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
A Probabilistic Algorithm for Computation of Polynomial Greatest Common with ...
 

More from Santhanam Krishnan

Matrices
MatricesMatrices
Integral calculus
Integral calculusIntegral calculus
Integral calculus
Santhanam Krishnan
 
Functions of severable variables
Functions of severable variablesFunctions of severable variables
Functions of severable variables
Santhanam Krishnan
 
Differential calculus maxima minima
Differential calculus  maxima minimaDifferential calculus  maxima minima
Differential calculus maxima minima
Santhanam Krishnan
 
Differential Calculus- differentiation
Differential Calculus- differentiationDifferential Calculus- differentiation
Differential Calculus- differentiation
Santhanam Krishnan
 
Differential calculus
Differential calculus  Differential calculus
Differential calculus
Santhanam Krishnan
 
Fourier transforms
Fourier transformsFourier transforms
Fourier transforms
Santhanam Krishnan
 
Fourier series
Fourier series Fourier series
Fourier series
Santhanam Krishnan
 
Solution to second order pde
Solution to second order pdeSolution to second order pde
Solution to second order pde
Santhanam Krishnan
 
Solution to pde
Solution to pdeSolution to pde
Solution to pde
Santhanam Krishnan
 
Pde lagrangian
Pde lagrangianPde lagrangian
Pde lagrangian
Santhanam Krishnan
 
Laplace transformation
Laplace transformationLaplace transformation
Laplace transformation
Santhanam Krishnan
 
Complex integration
Complex integrationComplex integration
Complex integration
Santhanam Krishnan
 
Differential equations
Differential equationsDifferential equations
Differential equations
Santhanam Krishnan
 
Integral calculus
Integral calculusIntegral calculus
Integral calculus
Santhanam Krishnan
 
Analytic function
Analytic functionAnalytic function
Analytic function
Santhanam Krishnan
 
Vector calculus
Vector calculusVector calculus
Vector calculus
Santhanam Krishnan
 
Design of experiments
Design of experimentsDesign of experiments
Design of experiments
Santhanam Krishnan
 
Numerical solution of ordinary differential equations
Numerical solution of ordinary differential equationsNumerical solution of ordinary differential equations
Numerical solution of ordinary differential equations
Santhanam Krishnan
 
Interpolation
InterpolationInterpolation
Interpolation
Santhanam Krishnan
 

More from Santhanam Krishnan (20)

Matrices
MatricesMatrices
Matrices
 
Integral calculus
Integral calculusIntegral calculus
Integral calculus
 
Functions of severable variables
Functions of severable variablesFunctions of severable variables
Functions of severable variables
 
Differential calculus maxima minima
Differential calculus  maxima minimaDifferential calculus  maxima minima
Differential calculus maxima minima
 
Differential Calculus- differentiation
Differential Calculus- differentiationDifferential Calculus- differentiation
Differential Calculus- differentiation
 
Differential calculus
Differential calculus  Differential calculus
Differential calculus
 
Fourier transforms
Fourier transformsFourier transforms
Fourier transforms
 
Fourier series
Fourier series Fourier series
Fourier series
 
Solution to second order pde
Solution to second order pdeSolution to second order pde
Solution to second order pde
 
Solution to pde
Solution to pdeSolution to pde
Solution to pde
 
Pde lagrangian
Pde lagrangianPde lagrangian
Pde lagrangian
 
Laplace transformation
Laplace transformationLaplace transformation
Laplace transformation
 
Complex integration
Complex integrationComplex integration
Complex integration
 
Differential equations
Differential equationsDifferential equations
Differential equations
 
Integral calculus
Integral calculusIntegral calculus
Integral calculus
 
Analytic function
Analytic functionAnalytic function
Analytic function
 
Vector calculus
Vector calculusVector calculus
Vector calculus
 
Design of experiments
Design of experimentsDesign of experiments
Design of experiments
 
Numerical solution of ordinary differential equations
Numerical solution of ordinary differential equationsNumerical solution of ordinary differential equations
Numerical solution of ordinary differential equations
 
Interpolation
InterpolationInterpolation
Interpolation
 

Recently uploaded

Conducting exciting academic research in Computer Science
Conducting exciting academic research in Computer ScienceConducting exciting academic research in Computer Science
Conducting exciting academic research in Computer Science
Abhik Roychoudhury
 
Front Desk Management in the Odoo 17 ERP
Front Desk  Management in the Odoo 17 ERPFront Desk  Management in the Odoo 17 ERP
Front Desk Management in the Odoo 17 ERP
Celine George
 
Lesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
Lesson 11 - On Happiness. Introduction to Philosophy of a Human PersonpptxLesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
Lesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
JonathanMansueto1
 
The membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERPThe membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERP
Celine George
 
Principles of Roods Approach!!!!!!!.pptx
Principles of Roods Approach!!!!!!!.pptxPrinciples of Roods Approach!!!!!!!.pptx
Principles of Roods Approach!!!!!!!.pptx
ibtesaam huma
 
NLC English 7 Consolidation Lesson plan for teacher
NLC English 7 Consolidation Lesson plan for teacherNLC English 7 Consolidation Lesson plan for teacher
NLC English 7 Consolidation Lesson plan for teacher
AngelicaLubrica
 
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
Neny Isharyanti
 
No, it's not a robot: prompt writing for investigative journalism
No, it's not a robot: prompt writing for investigative journalismNo, it's not a robot: prompt writing for investigative journalism
No, it's not a robot: prompt writing for investigative journalism
Paul Bradshaw
 
Views in Odoo - Advanced Views - Pivot View in Odoo 17
Views in Odoo - Advanced Views - Pivot View in Odoo 17Views in Odoo - Advanced Views - Pivot View in Odoo 17
Views in Odoo - Advanced Views - Pivot View in Odoo 17
Celine George
 
Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17
Celine George
 
How to Configure Time Off Types in Odoo 17
How to Configure Time Off Types in Odoo 17How to Configure Time Off Types in Odoo 17
How to Configure Time Off Types in Odoo 17
Celine George
 
debts of gratitude 2 detailed meaning and certificate of appreciation.pptx
debts of gratitude 2 detailed meaning and certificate of appreciation.pptxdebts of gratitude 2 detailed meaning and certificate of appreciation.pptx
debts of gratitude 2 detailed meaning and certificate of appreciation.pptx
AncyTEnglish
 
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Zuzana Mészárosová
 
Capitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptxCapitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptx
CapitolTechU
 
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUMENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
HappieMontevirgenCas
 
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
heathfieldcps1
 
How to Install Theme in the Odoo 17 ERP
How to  Install Theme in the Odoo 17 ERPHow to  Install Theme in the Odoo 17 ERP
How to Install Theme in the Odoo 17 ERP
Celine George
 
How to Show Sample Data in Tree and Kanban View in Odoo 17
How to Show Sample Data in Tree and Kanban View in Odoo 17How to Show Sample Data in Tree and Kanban View in Odoo 17
How to Show Sample Data in Tree and Kanban View in Odoo 17
Celine George
 
How to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 NotebookHow to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 Notebook
Celine George
 
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptxNationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
CelestineMiranda
 

Recently uploaded (20)

Conducting exciting academic research in Computer Science
Conducting exciting academic research in Computer ScienceConducting exciting academic research in Computer Science
Conducting exciting academic research in Computer Science
 
Front Desk Management in the Odoo 17 ERP
Front Desk  Management in the Odoo 17 ERPFront Desk  Management in the Odoo 17 ERP
Front Desk Management in the Odoo 17 ERP
 
Lesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
Lesson 11 - On Happiness. Introduction to Philosophy of a Human PersonpptxLesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
Lesson 11 - On Happiness. Introduction to Philosophy of a Human Personpptx
 
The membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERPThe membership Module in the Odoo 17 ERP
The membership Module in the Odoo 17 ERP
 
Principles of Roods Approach!!!!!!!.pptx
Principles of Roods Approach!!!!!!!.pptxPrinciples of Roods Approach!!!!!!!.pptx
Principles of Roods Approach!!!!!!!.pptx
 
NLC English 7 Consolidation Lesson plan for teacher
NLC English 7 Consolidation Lesson plan for teacherNLC English 7 Consolidation Lesson plan for teacher
NLC English 7 Consolidation Lesson plan for teacher
 
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
Understanding and Interpreting Teachers’ TPACK for Teaching Multimodalities i...
 
No, it's not a robot: prompt writing for investigative journalism
No, it's not a robot: prompt writing for investigative journalismNo, it's not a robot: prompt writing for investigative journalism
No, it's not a robot: prompt writing for investigative journalism
 
Views in Odoo - Advanced Views - Pivot View in Odoo 17
Views in Odoo - Advanced Views - Pivot View in Odoo 17Views in Odoo - Advanced Views - Pivot View in Odoo 17
Views in Odoo - Advanced Views - Pivot View in Odoo 17
 
Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17Credit limit improvement system in odoo 17
Credit limit improvement system in odoo 17
 
How to Configure Time Off Types in Odoo 17
How to Configure Time Off Types in Odoo 17How to Configure Time Off Types in Odoo 17
How to Configure Time Off Types in Odoo 17
 
debts of gratitude 2 detailed meaning and certificate of appreciation.pptx
debts of gratitude 2 detailed meaning and certificate of appreciation.pptxdebts of gratitude 2 detailed meaning and certificate of appreciation.pptx
debts of gratitude 2 detailed meaning and certificate of appreciation.pptx
 
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
Traces of the Holocaust in our communities in Levice Sovakia and Constanta Ro...
 
Capitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptxCapitol Doctoral Presentation -June 2024v2.pptx
Capitol Doctoral Presentation -June 2024v2.pptx
 
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUMENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
ENGLISH-7-CURRICULUM MAP- MATATAG CURRICULUM
 
The basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptxThe basics of sentences session 9pptx.pptx
The basics of sentences session 9pptx.pptx
 
How to Install Theme in the Odoo 17 ERP
How to  Install Theme in the Odoo 17 ERPHow to  Install Theme in the Odoo 17 ERP
How to Install Theme in the Odoo 17 ERP
 
How to Show Sample Data in Tree and Kanban View in Odoo 17
How to Show Sample Data in Tree and Kanban View in Odoo 17How to Show Sample Data in Tree and Kanban View in Odoo 17
How to Show Sample Data in Tree and Kanban View in Odoo 17
 
How to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 NotebookHow to Add Colour Kanban Records in Odoo 17 Notebook
How to Add Colour Kanban Records in Odoo 17 Notebook
 
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptxNationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
NationalLearningCamp-2024-Orientation-for-RO-SDO.pptx
 

Solution of equations and eigenvalue problems

  • 2.  To find an approximate real root of given equation.  ITERATION FORMULA OF NEWTON- RAPHSON METHOD  𝒙𝒊+𝟏 = 𝒙𝒊 − 𝒇 𝒙 𝒊 𝒇′ 𝒙 𝒊 , 𝒊 = 𝟎, 𝟏, 𝟐 … .
  • 3.  THE CONDITION FOR CONVERGENCE OF NEWTON-RAPHSON METHOD FOR 𝒇(𝒙) = 𝟎  The condition is |𝑓(𝑥). 𝑓′(𝑥)| < 𝑓′ 𝑥 2 in a neighbourhood of the root  ORDER OF CONVERGENCE OF NEWTON- RAPHSON METHOD  The order of convergence is 2.
  • 4.  To find the root of the equation 𝑓(𝑥) = 0  Step 1. Find the numbers a and b in such a way that 𝑓(𝑎) and 𝑓(𝑏) are in opposite signs. (From this we conclude that there is one real root between a and b)  Step 2. Choose the initial approximate root as 𝑥0  Step 3. Using the Newton Raphson’s formula 𝒙𝒊+𝟏 = 𝒙𝒊 − 𝒇 𝒙𝒊 𝒇′ 𝒙 𝒊 , 𝒊 = 𝟎, 𝟏, 𝟐 … ., find the sequence 𝑥0, 𝑥1, … 𝑥 𝑛, . . and the point of convergence of the sequence is the root of the given equation.
  • 5.  1. It can be used for finding root of both algebraic and transcendental equations.  2. The convergence of Newton’s method is faster and so it is preferred compared to other methods.  3. It is simple and easy to deal with and it is used to improve the results obtained by other methods.
  • 6.  To find the root of the equation 𝑓(𝑥) = 0  Step 1. Find the numbers a and b in such a way that 𝑓(𝑎) and 𝑓(𝑏) are in opposite signs. (From this we conclude that there is one real root between a and b)  Step 2. Write the given equation on the form 𝑥 = ∅(𝑥)  Step 3. Choose the initial approximate root as 𝑥0  Step 4. Replace 𝑥 by 𝑥0 in step 2, and take 𝑥1 = ∅(𝑥0)  Step 5. Further , find 𝑥2 = ∅(𝑥1)  Step 6. Continuing this way, we will get a sequence 𝑥0, 𝑥1, … 𝑥 𝑛, . . and the point of convergence of the sequence is the root of the given equation
  • 7.  ORDER OF CONVERGENCE OF FIXED POINT ITERATION METHOD  The order of convergence is 1.  THE CONDITION FOR CONVERGENCE OF FIXED POINT ITERATION METHOD FOR 𝒇(𝒙) = 𝟎  The condition is |∅′ 𝑥 | < 1, for all values of 𝑥
  • 8.  DIRECT METHOD  1. Gauss-elimination method  2. Gauss-Jordan method  INDIRECT METHOD (ITERATION METHOD)  1. Gauss-Jacobi method  2. Gauss- Seidel method
  • 9.  This is a direct method. In this method the given ‘n’ system of simultaneous linear equations  𝑎𝑖1 𝑥1 + 𝑎𝑖2 𝑥2 + ⋯ + 𝑎𝑖𝑛 𝑥 𝑛 = 𝑏𝑖 , 𝑖 = 1,2, … 𝑛  can be written in the form AX = B  Where 𝐴 = 𝑎𝑖𝑗 𝑛×𝑛 𝑋 = 𝑥𝑖 𝑛×1 𝐵 = 𝑏𝑖 𝑛×1 matrices  And in the augmented matrix (A, B), the coefficient matrix A can be reduced to upper triangular matrix, which can be solved by using back substitution.
  • 10.  This is a direct method. In this method the given ‘n’ system of simultaneous linear equations  𝑎𝑖1 𝑥1 + 𝑎𝑖2 𝑥2 + ⋯ + 𝑎𝑖𝑛 𝑥 𝑛 = 𝑏𝑖 , 𝑖 = 1,2, … 𝑛  can be written in the form AX = B  Where 𝐴 = 𝑎𝑖𝑗 𝑛×𝑛 𝑋 = 𝑥𝑖 𝑛×1 𝐵 = 𝑏𝑖 𝑛×1 matrices  And in the augmented matrix (A, B), the coefficient matrix A can be reduced to a diagonal matrix, which can be solved by using back substitution.
  • 11.  This is an iterative method.  Suppose the given linear equations are  𝑎1 𝑥 + 𝑏1 𝑦 + 𝑐1 𝑧 = 𝑑1 , 𝑎2 𝑥 + 𝑏2 𝑦 + 𝑐2 𝑧 = 𝑑2 , 𝑎3 𝑥 + 𝑏3 𝑦 + 𝑐3 𝑧 = 𝑑3  Let the coefficient matrix 𝐴 = 𝑎1 𝑏1 𝑐1 𝑎2 𝑏2 𝑐2 𝑎3 𝑏3 𝑐3  To apply Gauss – Jacobi, the coefficient matrix A should be diagonally dominant.  (i.e) 𝑎1 > 𝑏1 + 𝑐1  𝑏2 > 𝑎2 + 𝑐2  𝑐3 > 𝑎3 + |𝑏3|  To solve the given system, we have  𝑥 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 − 𝑐1 𝑧)  𝑦 = 1 𝑏2 (𝑑2 − 𝑎2 𝑥 − 𝑐2 𝑧)  𝑧 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 − 𝑏3 𝑦)  If 𝑥(0), 𝑦(0), 𝑧(0) are the initial values of x, y, z respectively  First iteration values are  𝑥 1 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 0 − 𝑐1 𝑧 0 )  𝑦 1 = 1 𝑏2 (𝑑2 − 𝑎2 𝑥 0 − 𝑐2 𝑧 0 )  𝑧 1 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 0 − 𝑏3 𝑦 0 )  Second iteration values are  𝑥 2 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 1 − 𝑐1 𝑧 1 )  𝑦 2 = 1 𝑏2 (𝑑2 − 𝑎2 𝑥 1 − 𝑐2 𝑧 1 )  𝑧 2 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 1 − 𝑏3 𝑦 1 )  Proceeding like this and stop the iteration when the values of x, y, z are start repeating with required degree of accuracy.
  • 12.  This is an iterative method.  Suppose the given linear equations are  𝑎1 𝑥 + 𝑏1 𝑦 + 𝑐1 𝑧 = 𝑑1 , 𝑎2 𝑥 + 𝑏2 𝑦 + 𝑐2 𝑧 = 𝑑2 , 𝑎3 𝑥 + 𝑏3 𝑦 + 𝑐3 𝑧 = 𝑑3  Let the coefficient matrix 𝐴 = 𝑎1 𝑏1 𝑐1 𝑎2 𝑏2 𝑐2 𝑎3 𝑏3 𝑐3  To apply Gauss – Seidel, the coefficient matrix A should be diagonally dominant.  (i.e) 𝑎1 > 𝑏1 + 𝑐1  𝑏2 > 𝑎2 + 𝑐2  𝑐3 > 𝑎3 + |𝑏3|  To solve the given system, we have  𝑥 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 − 𝑐1 𝑧)  𝑦 = 1 𝑏2 (𝑑2 − 𝑎2 𝑥 − 𝑐2 𝑧)  𝑧 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 − 𝑏3 𝑦)  If 𝑥(0), 𝑦(0), 𝑧(0) are the initial values of x, y, z respectively  First iteration values are  𝑥 1 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 0 − 𝑐1 𝑧 0 )  𝑦 1 = 1 𝑏2 (𝑑2 − 𝑎2 𝑥 1 − 𝑐2 𝑧 0 )  𝑧 1 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 1 − 𝑏3 𝑦 1 )  Second iteration values are  𝑥 2 = 1 𝑎1 (𝑑1 − 𝑏1 𝑦 1 − 𝑐1 𝑧 1 )  𝑦 2 = 1 𝑏2 𝑑2 − 𝑎2 𝑥 2 − 𝑐2 𝑧 1  𝑧 2 = 1 𝑐3 (𝑑3 − 𝑎3 𝑥 2 − 𝑏3 𝑦 2 )  Proceeding like this and stop the iteration when the values of x, y, z are start repeating with required degree of accuracy.
  • 13.  The condition is the absolute value of largest coefficient is greater than the sum of the absolute value of all the remaining coefficients.  (i.e) the coefficient matrix is diagonally dominant  (i.e) 𝑎𝑖𝑖 > 𝑗=1,𝑖≠𝑗 𝑛 |𝑎𝑖𝑗| ∀ 𝑖 = 1,2 … 𝑛  The rate of convergence in Gauss –Seidel method is very fast than in Gauss-Jacobi
  • 14. S.No Gauss Jorden Gauss Jacobi 1 Direct method Iterative method 2 This method produce exact solution after a finite number of steps This method gives a sequence of approximate solutions, which ultimately approach the actual solution. 3 Applicable if the coefficient matrix is non-singular Applicable if the coefficient matrix is diagonally dominant.
  • 15. S.No Gauss elimination Gauss Jacobi 1 Direct method Iterative method 2 This method produce exact solution after a finite number of steps This method gives a sequence of approximate solutions, which ultimately approach the actual solution. 3 Applicable if the coefficient matrix is non-singular Applicable if the coefficient matrix is diagonally dominant.
  • 16.  Procedure  Step 1. Write the augmented matrix (𝐴, 𝐼) , where A is the given matrix  Step 2. Reduce the matrix A in (𝐴, 𝐼) to the identity matrix by using row transformation.  Step 3. From step 2, you will get (𝐼 𝐴−1 )
  • 17.  If A is any square matrix, then there exist a scalar 𝜆 and a non-zero column vector X such that AX = 𝜆 X, the scalar 𝜆 is called Eigen value of A and the corresponding X is called Eigen vector.  By the property of Eigen values and Eigen vectors , if 𝜆 is an Eigen value of A and X is the corresponding Eigen vector, then 1 𝜆 is an Eigen value of 𝐴−1 with the same Eigen vector X  Also the smallest Eigen value of A is 1 𝜆 and the corresponding Eigen vector is X  And sum of the Eigen values of A= sum of the principal diagonal elements of A
  • 18.  Procedure - (for a square matrix A of order 3 x 3)  1. Let 𝑋0 be the initial which is usually chosen as a vector with all components equal to 1. 𝑖. 𝑒 𝑋0 = 1 1 1 (i.e., normalized)  2. Find the product 𝐴𝑋0 and express it in the form 𝐴𝑋0 = 𝜆1 𝑋1, where 𝑋1 is normalized by taking out the largest component𝜆1.  3. Find 𝐴𝑋1 and express it in the form𝐴𝑋1 = 𝜆2 𝑋2, where 𝑋2 is normalized by taking out the largest component 𝜆2 and continue the process.  4. Thus we have a sequence of equations  𝐴𝑋0 = 𝜆1 𝑋1, 𝐴𝑋1 = 𝜆2 𝑋2, 𝐴𝑋2 = 𝜆3 𝑋3 … . ·  5. We stop at the stage where 𝑋 𝑟−1, 𝑋 𝑟 are almost same.  Then 𝜆 𝑟 is the largest Eigen value and 𝑋 𝑟 is the corresponding Eigen vector.
  • 19.  1. Symmetric Matrix  A square matrix 𝑎𝑖𝑗 𝑛×𝑛 is said to be symmetric matrix if 𝑎𝑖𝑗 = 𝑎𝑗𝑖 𝑓𝑜𝑟 𝑎𝑙𝑙 𝑖 ≠ 𝑗  2. Orthogonal Matrix  A square matrix 𝑎𝑖𝑗 𝑛×𝑛 is said to be Orthogonal matrix if 𝐴𝐴 𝑇 = 𝐼  (Or) 𝐴 𝑇 = 𝐴−1
  • 20.  3. For an Orthogonal matrix A, 𝑑𝑒𝑡 𝐴 = 𝐴 = ± 1  4. The diagonal elements of a diagonal matrix D are its Eigen values
  • 21.  Working Rule (Jacobi Method)  If 𝐴 = 𝑎11 𝑎12 𝑎13 𝑎21 𝑎22 𝑎23 𝑎31 𝑎32 𝑎33 is the given symmetric matrix (𝑖𝑒. 𝑎𝑖𝑗 = 𝑎𝑗𝑖)  Step 1. Choose the largest off diagonal element (say 𝑎13)  Step 2. Then take the rotation matrix 𝑆1 = 𝑐𝑜𝑠𝜃 0 −𝑠𝑖𝑛𝜃 0 1 0 𝑠𝑖𝑛𝜃 0 𝑐𝑜𝑠𝜃  Step 3. Define 𝑡𝑎𝑛2𝜃 = 2𝑎13 𝑎11−𝑎33  𝑖. 𝑒 𝜃 = 1 2 tan−1 2𝑎13 𝑎11−𝑎33 𝑖𝑓 𝑎11 ≠ 𝑎33  (or) 𝜃 = 𝜋 4 𝑖𝑓 𝑎11 = 𝑎33 & 𝑎12 > 0  (or) 𝜃 = − 𝜋 4 𝑖𝑓 𝑎11 = 𝑎33 & 𝑎12 < 0  Step 4. Substitute 𝜃 value in 𝑆1  Step 5. Find 𝐴1 = 𝑆1 −1 𝐴𝑆1 = 𝑆1 𝑇 𝐴 𝑆1  Step 6. Again choose the largest off-diagonal element of 𝐴1  Step 7. Proceed again from Step 2 to step 5 until you get a diagonal matrix 𝐴 𝑛  The diagonal elements in 𝐴 𝑛 are the Eigen values of A  Step 8. For Eigen vector , to find the matrix 𝑆 = 𝑆1 𝑆2 . . = 𝑠𝑖𝑗  The corresponding vectors are 𝑠𝑖1 , 𝑠𝑖2 , 𝑠𝑖3