DOC PREVIEW
UCF EGN 3420 - Lecture Notes

This preview shows page 1-2-3 out of 9 pages.

Save
View full document
Premium Document
Do you want full access? Go Premium and unlock all 9 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Engineering Analysis ENG 3420 Fall 2009 Dan C Marinescu Office HEC 439 B Office hours Tu Th 11 00 12 00 Lecture 18 Last time Linear algebra functions in Matlab Vector products Tensor product of two matrices Norm and matrix condition number Characteristic equation eigenvectors eigenvalues Today Midterm solutions and discussions More on characteristic equation eigenvectors eigenvalues The inverse of a matrix More on LU Factorization Cholesky decomposition Next Time Chapter 12 Gauss Siedel Lecture 18 2 The inverse of a square If A is a square matrix there is another matrix A 1 called the inverse of A for which A A 1 A 1 A I The inverse can be computed in a column by column fashion by generating solutions with unit vectors as the right hand side constants 1 A x1 0 0 0 A x 2 1 0 A 1 x1 x2 0 A x 3 0 1 x3 Canonical base of an n dimensional vector space 100 000 010 000 001 000 000 100 000 010 000 001 Matrix Inverse cont LU factorization can be used to efficiently evaluate a system for multiple right hand side vectors thus it is ideal for evaluating the multiple unit vectors needed to compute the inverse The response of a linear system The response of a linear system to some stimuli can be found using the matrix inverse Interactions response stimuli Ar s 1 1 A Ar A s 1 A A I 1 r A s LU Factorization LU factorization involves two steps Decompose the A matrix into a product of a lower triangular matrix L with 1 for each entry on the diagonal and an upper triangular matrix U Substitution to solve for x Gauss elimination can be implemented using LU factorization The forward elimination step of Gauss elimination comprises the bulk of the computational effort LU factorization methods separate the time consuming elimination of the matrix A from the manipulations of the right hand side b Gauss Elimination as LU Factorization To solve A x b first decompose A to get L U x b MATLAB s lu function can be used to generate the L and U matrices L U lu A Step 1 solve L y b y can be found using forward substitution Step 2 solve U x y x can be found using backward substitution In MATLAB L U lu A d L b x U d LU factorization requires the same number of floating point operations flops as for Gauss elimination Advantage once A is decomposed the same L and U can be used for multiple b vectors Cholesky Factorization A symmetric matrix a square matrix A that is equal to its transpose A AT T stands for transpose The Cholesky factorization based on the fact that a symmetric matrix can be decomposed as A U T U The rest of the process is similar to LU decomposition and Gauss elimination except only one matrix U needs to be stored Cholesky factorization with the built in chol command U chol A MATLAB s left division operator examines the system to see which method will most efficiently solve the problem This includes trying banded solvers back and forward substitutions Cholesky factorization for symmetric systems If these do not work and the system is square Gauss elimination with partial pivoting is used


View Full Document

UCF EGN 3420 - Lecture Notes

Download Lecture Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture Notes and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?