Matrix Inverse and Condition

Slides:



Advertisements
Similar presentations
Part 2 Chapter 6 Roots: Open Methods
Advertisements

Part 2 Chapter 6 Roots: Open Methods
Chapter 28 – Part II Matrix Operations. Gaussian elimination Gaussian elimination LU factorization LU factorization Gaussian elimination with partial.
Chapter 4 Systems of Linear Equations; Matrices Section 6 Matrix Equations and Systems of Linear Equations.
Part 3 Chapter 9 Gauss Elimination
Part 3 Chapter 10 LU Factorization PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill Companies,
General Linear Least-Squares and Nonlinear Regression
Part 4 Chapter 13 Linear Regression
Polynomial Interpolation
Part 3 Chapter 8 Linear Algebraic Equations and Matrices PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The.
Linear Simultaneous Equations
Matrix Mathematics in MATLAB and Excel
Arithmetic Operations on Matrices. 1. Definition of Matrix 2. Column, Row and Square Matrix 3. Addition and Subtraction of Matrices 4. Multiplying Row.
Chapter 7 Matrix Mathematics Matrix Operations Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 8 Objectives Understanding matrix notation.
Engineering Analysis ENG 3420 Fall 2009
ES 240: Scientific and Engineering Computation. Matrix Inverse Chapter 11: Matrix Inverse Uchechukwu Ofoegbu Temple University.
Copyright © 2007 Pearson Education, Inc. Slide 7-1.
Chapter 9 Matrices and Determinants Copyright © 2014, 2010, 2007 Pearson Education, Inc Multiplicative Inverses of Matrices and Matrix Equations.
Part 3 Chapter 11 Matrix Inverse and Condition PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill.
Copyright © 2013, 2009, 2005 Pearson Education, Inc. 1 5 Systems and Matrices Copyright © 2013, 2009, 2005 Pearson Education, Inc.
1. Inverse of A 2. Inverse of a 2x2 Matrix 3. Matrix With No Inverse 4. Solving a Matrix Equation 1.
Part 4 Chapter 17 Polynomial Interpolation PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill.
Part 3 Chapter 11 Matrix Inverse and Condition Part A All images copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
ES 240: Scientific and Engineering Computation. Chapter 8 Chapter 8: Linear Algebraic Equations and Matrices Uchechukwu Ofoegbu Temple University.
Part 3 Chapter 12 Iterative Methods
Part 3 Chapter 9 Gauss Elimination PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill Companies,
10.4 Matrix Algebra. 1. Matrix Notation A matrix is an array of numbers. Definition Definition: The Dimension of a matrix is m x n “m by n” where m =
Using Matrices to Solve a 3-Variable System
College Algebra Chapter 6 Matrices and Determinants and Applications
Part 3 Chapter 9 Gauss Elimination
Part 3 Chapter 12 Iterative Methods
Chapter 4 Systems of Linear Equations; Matrices
Linear Algebraic Equations and Matrices
ECE 3301 General Electrical Engineering
Polynomial Interpolation
Chapter 7 Matrix Mathematics
Barnett/Ziegler/Byleen College Algebra, 7th Edition
Linear Algebraic Equations and Matrices
We will be looking for a solution to the system of linear differential equations with constant coefficients.
Boundary-Value Problems
PowerPoint Presentations
Copyright © The McGraw-Hill Companies, Inc
Numerical Differentiation
Part 2 Chapter 6 Roots: Open Methods
Roundoff and Truncation Errors
Chapter 10.
CHAPTER OBJECTIVES The primary objective of this chapter is to show how to compute the matrix inverse and to illustrate how it can be.
Chapter 3 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Mathematical Modeling, Numerical Methods, and Problem Solving
Chapter 7: Matrices and Systems of Equations and Inequalities
Chapter R A Review of Basic Concepts and Skills
Multiplicative Inverses of Matrices and Matrix Equations
General Linear Least-Squares and Nonlinear Regression
Splines and Piecewise Interpolation
Applied Numerical Methods
Part 3 Chapter 10 LU Factorization
Title Chapter 22 Image Slides
Roots: Bracketing Methods
Adaptive Methods and Stiff Systems
Copyright © The McGraw-Hill Companies, Inc
CHAPTER 6 SKELETAL SYSTEM
Roundoff and Truncation Errors
Roots: Bracketing Methods
Part 2 Chapter 7 Optimization
Working with Arrays in MATLAB
Part 2 Chapter 6 Roots: Open Methods
Chapter 24 Image Slides* *See PowerPoint Lecture Outline for a complete ready-made presentation integrating art and lecture notes Copyright © The.
Solving Linear Systems of Equations - Inverse Matrix
Chapter 3 Introduction to Physical Design of Transportation Facilities.
Presentation transcript:

Matrix Inverse and Condition Part 3 Chapter 11 Matrix Inverse and Condition PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

Chapter Objectives Knowing how to determine the matrix inverse in an efficient manner based on LU factorization. Understanding how the matrix inverse can be used to assess stimulus-response characteristics of engineering systems. Understanding the meaning of matrix and vector norms and how they are computed. Knowing how to use norms to compute the matrix condition number. Understanding how the magnitude of the condition number can be used to estimate the precision of solutions of linear algebraic equations.

Matrix Inverse Recall that if a matrix [A] is square, 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:

Matrix Inverse (cont) Recall that 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.

Stimulus-Response Computations Many systems can be modeled as a linear combination of equations, and thus written as a matrix equation: The system response can thus be found using the matrix inverse.

Vector and Matrix Norms A norm is a real-valued function that provides a measure of the size or “length” of multi-component mathematical entities such as vectors and matrices. Vector norms and matrix norms may be computed differently.

Vector Norms For a vector {X} of size n, the p-norm is: Important examples of vector p-norms include:

Matrix Norms Common matrix norms for a matrix [A] include: Note - max is the largest eigenvalue of [A]T[A].

Matrix Condition Number The matrix condition number Cond[A] is obtained by calculating Cond[A]=||A||·||A-1|| In can be shown that: The relative error of the norm of the computed solution can be as large as the relative error of the norm of the coefficients of [A] multiplied by the condition number. If the coefficients of [A] are known to t digit precision, the solution [X] may be valid to only t-log10(Cond[A]) digits.

MATLAB Commands MATLAB has built-in functions to compute both norms and condition numbers: norm(X,p) Compute the p norm of vector X, where p can be any number, inf, or ‘fro’ (for the Euclidean norm) norm(A,p) Compute a norm of matrix A, where p can be 1, 2, inf, or ‘fro’ (for the Frobenius norm) cond(X,p) or cond(A,p) Calculate the condition number of vector X or matrix A using the norm specified by p.