Linear Algebra Lecture 16.

Slides:



Advertisements
Similar presentations
Numerical Solution of Linear Equations
Advertisements

Elementary Linear Algebra Anton & Rorres, 9th Edition
Linear System Remark: Remark: Remark: Example: Solve:
Algebraic, transcendental (i.e., involving trigonometric and exponential functions), ordinary differential equations, or partial differential equations...
Linear Equations in Linear Algebra
1.5 Elementary Matrices and a Method for Finding
Rayan Alsemmeri Amseena Mansoor. LINEAR SYSTEMS Jacobi method is used to solve linear systems of the form Ax=b, where A is the square and invertible.
Solving Systems of Linear Equations Part Pivot a Matrix 2. Gaussian Elimination Method 3. Infinitely Many Solutions 4. Inconsistent System 5. Geometric.
1 Systems of Linear Equations Iterative Methods. 2 B. Iterative Methods 1.Jacobi method and Gauss Seidel 2.Relaxation method for iterative methods.
1 Systems of Linear Equations Iterative Methods. 2 B. Direct Methods 1.Jacobi method and Gauss Seidel 2.Relaxation method for iterative methods.
Matrices and Systems of Equations
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 19 Solution of Linear System of Equations - Iterative Methods.
Special Matrices and Gauss-Siedel
1 Systems of Linear Equations Error Analysis and System Condition.
Copyright © Cengage Learning. All rights reserved. 7.6 The Inverse of a Square Matrix.
Dominant Eigenvalues & The Power Method
Scientific Computing Matrix Norms, Convergence, and Matrix Condition Numbers.
Computer Engineering Majors Authors: Autar Kaw
9/7/ Gauss-Siedel Method Chemical Engineering Majors Authors: Autar Kaw Transforming.
Advanced Computer Graphics Spring 2014 K. H. Ko School of Mechatronics Gwangju Institute of Science and Technology.
Solving Scalar Linear Systems Iterative approach Lecture 15 MA/CS 471 Fall 2003.
Iterative Methods for Solving Linear Systems Leo Magallon & Morgan Ulloa.
1 Iterative Solution Methods Starts with an initial approximation for the solution vector (x 0 ) At each iteration updates the x vector by using the sytem.
10/17/ Gauss-Siedel Method Industrial Engineering Majors Authors: Autar Kaw
Sec 3.5 Inverses of Matrices Where A is nxn Finding the inverse of A: Seq or row operations.
Chapter 3 Solution of Algebraic Equations 1 ChE 401: Computational Techniques for Chemical Engineers Fall 2009/2010 DRAFT SLIDES.
10/26/ Gauss-Siedel Method Civil Engineering Majors Authors: Autar Kaw Transforming.
Lecture 7 - Systems of Equations CVEN 302 June 17, 2002.
Elliptic PDEs and the Finite Difference Method
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 3- Chapter 12 Iterative Methods.
Linear Systems – Iterative methods
Copyright © Cengage Learning. All rights reserved. 2 SYSTEMS OF LINEAR EQUATIONS AND MATRICES Read pp Stop at “Inverse of a Matrix” box.
Arab Open University Faculty of Computer Studies M132: Linear Algebra
Solving Scalar Linear Systems A Little Theory For Jacobi Iteration
2.5 – Determinants and Multiplicative Inverses of Matrices.
2/26/ Gauss-Siedel Method Electrical Engineering Majors Authors: Autar Kaw
Linear Systems Numerical Methods. 2 Jacobi Iterative Method Choose an initial guess (i.e. all zeros) and Iterate until the equality is satisfied. No guarantee.
Gaoal of Chapter 2 To develop direct or iterative methods to solve linear systems Useful Words upper/lower triangular; back/forward substitution; coefficient;
3/6/ Gauss-Siedel Method Major: All Engineering Majors Author: دکتر ابوالفضل رنجبر نوعی
1 SYSTEM OF LINEAR EQUATIONS BASE OF VECTOR SPACE.
Engineering Analysis ENG 3420 Fall 2009 Dan C. Marinescu Office: HEC 439 B Office hours: Tu-Th 11:00-12:00.
REVIEW Linear Combinations Given vectors and given scalars
MTH108 Business Math I Lecture 20.
Iterative Solution Methods
Chapter: 3c System of Linear Equations
Gaussian Elimination and Gauss-Jordan Elimination
Algorithms and Programming
Part 3 Chapter 12 Iterative Methods
Linear Equations in Linear Algebra
Linear Algebra Lecture 19.
Solving Systems of Linear Equations: Iterative Methods
بسم الله الرحمن الرحيم.
Gauss-Siedel Method.
Numerical Analysis Lecture12.
Matrices 3 1.
Linear Algebra Lecture 4.
Linear Algebra Lecture 15.
Iterative Methods Good for sparse matrices Jacobi Iteration
Autar Kaw Benjamin Rigsby
Linear Equations in Linear Algebra
Elementary Matrix Methid For find Inverse
Numerical Analysis Lecture13.
Chapter 1: Linear Equations in Linear Algebra
Linear Algebra Lecture 21.
Linear Algebra Lecture 6.
ITERATIVE METHODS Prepared by, Dr. L. Benedict Michael Raj
Numerical Analysis Lecture11.
Ax = b Methods for Solution of the System of Equations:
Pivoting, Perturbation Analysis, Scaling and Equilibration
Ax = b Methods for Solution of the System of Equations (ReCap):
Presentation transcript:

Linear Algebra Lecture 16

Matrix Algebra

Iterative Solutions of Linear Systems

Iterative Solution Linear systems are solved either by direct calculation (e.g. a matrix factorization) or by an iterative procedure, generating a sequence of vectors approaching the exact solution.

When the coefficient matrix is large and sparse, iterative algorithms can be more rapid than direct methods and can require less computer memory.

Also, an iterative process may be stopped as soon as an approximate solution is sufficiently accurate for practical work.

General Framework

General Framework

Jacobi's Method This method assumes that the diagonal entries of A are all nonzero. Let D be the diagonal matrix formed from the diagonal entries of A. Jacobi’s method uses D for M and D – A for N

Continued In a real-life problem, available information may suggest a value for x(0) . For simplicity, we take the zero vector as x(0) .

Example 1

Example 2 Stop the process when the entries in two successive iterations are the same when rounded to four decimal places.

Gauss-Seidel Method

Example 3

Example 4 Use Gauss-Siedal Method to Solve

Definition A matrix A is said to be strictly diagonally dominant if the absolute value of each diagonal entry exceeds the sum of the absolute values of the other entries in the same row

Remarks If A is strictly diagonally dominant, then A is invertible and both the Jacobi and Gauss-Seidel sequences converge to the unique solution of Ax = b, for any initial .

The following matrix is not Example The following matrix is not

Solve the following system by Gauss-Seidel method Example 5 Solve the following system by Gauss-Seidel method

Linear Algebra Lecture 16