Linear Algebra Lecture 15.

Slides:



Advertisements
Similar presentations
LU Factorization.
Advertisements

Elementary Linear Algebra Anton & Rorres, 9th Edition
1.5 Elementary Matrices and a Method for Finding
Linear Systems of Equations
Chapter 8 Numerical Technique 大葉大學 資訊工程系 黃鈴玲 Linear Algebra.
CHAPTER ONE Matrices and System Equations
1.5 Elementary Matrices and a Method for Finding
LU Factorization LU-factorization Matrix factorization Forward substitution Back substitution.
Chapter 9.1 = LU Decomposition MATH 264 Linear Algebra.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 17 Solution of Systems of Equations.
Matrices and Systems of Equations
Here is a preview of one type of problem we are going to solve using matrices. Solve this system of equations:
Matrix Algebra THE INVERSE OF A MATRIX © 2012 Pearson Education, Inc.
10.1 Gaussian Elimination Method
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
SYSTEMS OF LINEAR EQUATIONS
Elementary Linear Algebra Howard Anton Copyright © 2010 by John Wiley & Sons, Inc. All rights reserved. Chapter 1.
Scientific Computing Linear Systems – LU Factorization.
Chapter 1 Systems of Linear Equations and Matrices
ECON 1150 Matrix Operations Special Matrices
Advanced Computer Graphics Spring 2014 K. H. Ko School of Mechatronics Gwangju Institute of Science and Technology.
Copyright © 2011 Pearson, Inc. 7.3 Multivariate Linear Systems and Row Operations.
Sec 3.1 Introduction to Linear System Sec 3.2 Matrices and Gaussian Elemination The graph is a line in xy-plane The graph is a line in xyz-plane.
MA2213 Lecture 5 Linear Equations (Direct Solvers)
Chap. 2 Matrices 2.1 Operations with Matrices
MATH 250 Linear Equations and 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.
Sec 3.2 Matrices and Gaussian Elemination Coefficient Matrix 3 x 3 Coefficient Matrix 3 x 3 Augmented Coefficient Matrix 3 x 4 Augmented Coefficient Matrix.
Using Matrices A matrix is a rectangular array that can help us to streamline the solving of a system of equations The order of this matrix is 2 × 3 If.
Sec 3.5 Inverses of Matrices Where A is nxn Finding the inverse of A: Seq or row operations.
8.1 Matrices & Systems of Equations
Lecture 8 Matrix Inverse and LU Decomposition
Copyright © 2011 Pearson Education, Inc. Solving Linear Systems Using Matrices Section 6.1 Matrices and Determinants.
Matrices and Systems of Linear Equations
Sullivan Algebra and Trigonometry: Section 12.3 Objectives of this Section Write the Augmented Matrix of a System of Linear Equations Write the System.
Section 7-3 Solving 3 x 3 systems of equations. Solving 3 x 3 Systems  substitution (triangular form)  Gaussian elimination  using an augmented matrix.
Matrices and Systems of Equations
ECE 530 – Analysis Techniques for Large-Scale Electrical Systems Prof. Hao Zhu Dept. of Electrical and Computer Engineering University of Illinois at Urbana-Champaign.
2.5 – Determinants and Multiplicative Inverses of Matrices.
Section 2.1 Determinants by Cofactor Expansion. THE DETERMINANT Recall from algebra, that the function f (x) = x 2 is a function from the real numbers.
2 2.5 © 2016 Pearson Education, Ltd. Matrix Algebra MATRIX FACTORIZATIONS.
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;
Linear Algebra Engineering Mathematics-I. Linear Systems in Two Unknowns Engineering Mathematics-I.
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.
CHAPTER ONE Matrices and System Equations Objective:To provide solvability conditions of a linear equation Ax=b and introduce the Gaussian elimination.
College Algebra Chapter 6 Matrices and Determinants and Applications
Multivariable Linear Systems and Row Operations
Systems of linear equations
Chapter 8 Numerical Technique
Gaussian Elimination and Gauss-Jordan Elimination
MAT 322: LINEAR ALGEBRA.
Lecture 2 Matrices Lat Time - Course Overview
ECE 3301 General Electrical Engineering
The Inverse of a Square Matrix
Linear Equations.
Linear Algebra Lecture 4.
Chapter 8: Lesson 8.1 Matrices & Systems of Equations
Chapter 2 Determinants by Cofactor Expansion
Chapter 1 Systems of Linear Equations and Matrices
DETERMINANT MATRIX YULVI ZAIKA.
RECORD. RECORD Gaussian Elimination: derived system back-substitution.
Elementary Matrix Methid For find Inverse
Elementary Row Operations Gaussian Elimination Method
Numerical Analysis Lecture10.
Linear Algebra Lecture 18.
Lecture 8 Matrix Inverse and LU Decomposition
Linear Algebra Lecture 16.
Matrix Algebra THE INVERSE OF A MATRIX © 2012 Pearson Education, Inc.
Presentation transcript:

Linear Algebra Lecture 15

Matrix Algebra

Matrix Factorizations

Definition A factorization of a matrix A is an equation that expresses A as a product of two or more matrices

Definition Suppose A can be row reduced to echelon form, without row interchanges, then A can be written as A = LU, where L is a lower triangular matrix with 1’s on the diagonal and U is an echelon form of A. This is called an LU factorization of A.

Continued… The matrix L is invertible and is called a unit lower triangular matrix.

Note If A is a square matrix of order mxm, then the order of both L and U will also be m x m.

Remarks In general, not every square matrix A has an LU-decomposition, nor is an LU-decomposition unique, if it exists.

Theorem If a square matrix A can be reduced to row echelon form by Gaussian elimination with no row interchanges, then A has an LU-decomposition.

Algorithm Reduce A to an echelon form U by a sequence of row replacement operations, if possible. Place entries in L such that the same sequence of row operations reduces L to I.

Procedure 1. Reduce A to row echelon form U without using row interchanges, keeping track of the multipliers used to introduce the leading 1’s and the multipliers used to introduce zeros below the leading 1’s.

Continued 2. In each position along the main diagonal of L, place the reciprocal of the multiplier that introduced the leading 1 in that position in U.

Continued 4.Form the decomposition A = LU. 3.In each position below the main diagonal of L, place the negative of the multiplier used to introduce the zero in that position in U. 4.Form the decomposition A = LU.

Find an LU-decomposition of Example 1 Find an LU-decomposition of

Ex 1(Sol)

Ex 1(Sol)

Ex 1(Sol)

Ex 1(Sol)

Find an LU-factorization of Example 2 Find an LU-factorization of

Ex 2 (Sol)

Find an LU-factorization of Example 3 Find an LU-factorization of

Ex 3 (Sol)

Find an LU-decomposition of Example 4 Find an LU-decomposition of

Matrix Inversion

Solving Linear Systems

1. Rewrite the system A x = b as LUx = b (1) Procedure 1. Rewrite the system A x = b as LUx = b (1) 2. Define a new unknown y by letting Ux=y (2) And rewrite (1) as L y = b

Continued 3. Solve the system L y = b for the unknown y. 4. Substitute the now-known vector y into (2) and solve for x.

Examples

Linear Algebra Lecture 15