Method If an nxn matrix A has an LU-factorization, then the solution of AX = b can be determined by a Forward substitution followed by a Back substitution.

Slides:



Advertisements
Similar presentations
LU Factorization.
Advertisements

Elementary Linear Algebra Anton & Rorres, 9th Edition
4/22/ LU Decomposition Electrical Engineering Majors Authors: Autar Kaw Transforming.
4/26/ LU Decomposition Civil Engineering Majors Authors: Autar Kaw Transforming.
LU - Factorizations Matrix Factorization into Triangular Matrices.
MATH 685/ CSI 700/ OR 682 Lecture Notes
Chapter 8 Numerical Technique 大葉大學 資訊工程系 黃鈴玲 Linear Algebra.
1.5 Elementary Matrices and a Method for Finding
LU Factorization LU-factorization Matrix factorization Forward substitution Back substitution.
Major: All Engineering Majors Authors: Autar Kaw
Chapter 9.1 = LU Decomposition MATH 264 Linear Algebra.
Matrices. Special Matrices Matrix Addition and Subtraction Example.
24 Jul 2007 KKKQ 3013 PENGIRAAN BERANGKA Week 3 – Systems of Linear Equations 24 July am – 9.00 am.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 17 Solution of Systems of Equations.
1 Systems of Linear Equations (Optional) Special Matrices.
17 Jul 2007 KKKQ 3013 PENGIRAAN BERANGKA Week 2 – Systems of Linear Equations 17 July am – 9.00 am.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 18 LU Decomposition and Matrix Inversion.
Table of Contents Solving Systems of Linear Equations - Gaussian Elimination The method of solving a linear system of equations by Gaussian Elimination.
LU Decomposition 1. Introduction Another way of solving a system of equations is by using a factorization technique for matrices called LU decomposition.
Scientific Computing Linear Systems – LU Factorization.
Chap. 2 Matrices 2.1 Operations with Matrices
8.1 Matrices and Systems of Equations. Let’s do another one: we’ll keep this one Now we’ll use the 2 equations we have with y and z to eliminate the y’s.
Guass-jordan Reduction :
Introduction to Numerical Analysis I MATH/CMPSC 455 LU Factorization.
Lesson 13-1: Matrices & Systems Objective: Students will: State the dimensions of a matrix Solve systems using matrices.
8.3 Another Way of Solving a System of Equations Objectives: 1.) Learn to find the inverse matrix 2.) Use the inverse matrix to a system of equations.
Lecture 8 Matrix Inverse and LU Decomposition
The Determinant of a Matrix Note: The determinant of a matrix can be positive, zero, or negative. Chapter 3 Determinants.
Matrices and Systems of Equations
Lecture 10 - Nonlinear gradient techniques and LU Decomposition CVEN 302 June 24, 2002.
ECE 530 – Analysis Techniques for Large-Scale Electrical Systems Prof. Hao Zhu Dept. of Electrical and Computer Engineering University of Illinois at Urbana-Champaign.
1/18/ LU Decomposition Industrial Engineering Majors Authors: Autar Kaw Transforming.
Introduction and Definitions
2.5 Determinants and Multiplicative Inverses of Matrices. Objectives: 1.Evaluate determinants. 2.Find the inverses of matrices. 3.Solve systems of equations.
2.5 – Determinants and Multiplicative Inverses of Matrices.
3/1/ LU Decomposition Computer Engineering Majors Authors: Autar Kaw Transforming.
LEARNING OUTCOMES At the end of this topic, student should be able to :  D efination of matrix  Identify the different types of matrices such as rectangular,
Unit #1 Linear Systems Fall Dr. Jehad Al Dallal.
Autar Kaw Benjamin Rigsby Transforming Numerical Methods Education for STEM Undergraduates.
2 - 1 Chapter 2A Matrices 2A.1 Definition, and Operations of Matrices: 1 Sums and Scalar Products; 2 Matrix Multiplication 2A.2 Properties of Matrix Operations;
13.3 Product of a Scalar and a Matrix.  In matrix algebra, a real number is often called a.  To multiply a matrix by a scalar, you multiply each entry.
Numerical Methods.  LU Decomposition is another method to solve a set of simultaneous linear equations  For most non-singular matrix [A] that one could.
Gaussian Elimination Digital Lesson. Copyright © by Houghton Mifflin Company, Inc. All rights reserved. 2 Gaussian elimination with back-substitution.
Numerical Computation Lecture 6: Linear Systems – part II United International College.
LU Decomposition ● In Gauss elimination; Forward elimination Backward substitution Major computational effort Low computational effort can be used for.
Chapter 8 Numerical Technique
Gaussian Elimination and Gauss-Jordan Elimination
Lecture 2 Matrices Lat Time - Course Overview
Simultaneous Linear Equations
Spring Dr. Jehad Al Dallal
Linear Equations.
Chapter 8: Lesson 8.1 Matrices & Systems of Equations
Linear Algebra Lecture 15.
Section 7.4 Matrix Algebra.
Chapter 10 and Matrix Inversion LU Decomposition
DETERMINANT MATRIX YULVI ZAIKA.
RECORD. RECORD Gaussian Elimination: derived system back-substitution.
Chemical Engineering Majors Authors: Autar Kaw
Major: All Engineering Majors Author(s): Autar Kaw
Numerical Computation and Optimization
RECORD. RECORD COLLABORATE: Discuss: Is the statement below correct? Try a 2x2 example.
Determinant of a Matrix
Numerical Analysis Lecture10.
Simultaneous Linear Equations
Major: All Engineering Majors Authors: Autar Kaw
LU Decomposition.
1.8 Matrices.
Lecture 8 Matrix Inverse and LU Decomposition
1.8 Matrices.
Ax = b Methods for Solution of the System of Equations (ReCap):
Presentation transcript:

Method If an nxn matrix A has an LU-factorization, then the solution of AX = b can be determined by a Forward substitution followed by a Back substitution [A] = [L][U] where [L] = lower triangular matrix all of whose diagonal entries are different from zero. [U] = upper triangular matrix all of whose diagonal entries are different from zero. LU Decomposition

How can this be used? Given [A][X] = [b] 1.Decompose [A] into [L] and [U] (LU)X = b L(UX) = b ; Let UX = z then LZ = b 1.Use Forward substitution to Solve [L][Z] = [b] for [Z] 2.Use Back substitution to Solve [U][X] = [Z] for [X]

Exercise 2.5 ; Page # 136; Qn # 1 3

Ax = b (LU)X = b L(UX) = b LZ = b; Let UX = Z 4

[L][Z] = [b] Solve for [Z] using Forward Substitution :

Complete the forward substitution to solve for [Z]

[U][X] = [Z] Solve for [X] using Back Substitution :

The Solution is :

Method: [A] Decompose to [L] and [U] Storage of Multipliers Scheme :

Exercise 2.5; Page #136; Qn # 5 Finding the [U] matrix Step 1:

Finding the [U] Matrix Step 2: Matrix after Step 1:

Finding the [L] matrix

Finding the [L] Matrix

[L][Z] = [b] Solve for [Z] using Forward Substitution :

Complete the forward substitution to solve for [Z]

[U][X] = [Z] Solve for [X] using Back Substitution :

The Solution is :

Limitations to use this Procedure : Interchanging of any two rows not allowed. Only elementary row operation permitted is the one that subtract a multiple of one row to another. In matrix A, if then this procedure fails. In matrix if, or in if then this procedure fails.

Test for you? Exercise 2.5 ; Page # 136; Qn # 7 19