Matrix Condition Numbers

Slides:



Advertisements
Similar presentations
Ch 7.7: Fundamental Matrices
Advertisements

Chapter 6 Eigenvalues and Eigenvectors
Linear Equations in Linear Algebra
Chapter 4 Systems of Linear Equations; Matrices Section 6 Matrix Equations and Systems of Linear Equations.
1.5 Elementary Matrices and a Method for Finding
Lecture 7 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
MATRIX ALGEBRA MGT 4850 Spring 2009 University of Lethbridge.
Dan Witzner Hansen  Groups?  Improvements – what is missing?
Eigenvalues and Eigenvectors
Lecture 6 Intersection of Hyperplanes and Matrix Inverse Shang-Hua Teng.
4.I. Definition 4.II. Geometry of Determinants 4.III. Other Formulas Topics: Cramer’s Rule Speed of Calculating Determinants Projective Geometry Chapter.
Matrix Operations. Matrix Notation Example Equality of Matrices.
1 Systems of Linear Equations Error Analysis and System Condition.
Matrices and Systems of Equations
Orthogonality and Least Squares
Linear Equations in Linear Algebra
1 © 2012 Pearson Education, Inc. Matrix Algebra THE INVERSE OF A MATRIX.
Vector Norms CSE 541 Roger Crawfis.
1 Systems of Linear Equations Error Analysis and System Condition.
Arithmetic Operations on Matrices. 1. Definition of Matrix 2. Column, Row and Square Matrix 3. Addition and Subtraction of Matrices 4. Multiplying Row.
Copyright © Cengage Learning. All rights reserved. 7.6 The Inverse of a Square Matrix.
Scientific Computing Matrix Norms, Convergence, and Matrix Condition Numbers.
Autar Kaw Humberto Isaza
 Row and Reduced Row Echelon  Elementary Matrices.
Square n-by-n Matrix.
Day 1 Eigenvalues and Eigenvectors
Day 1 Eigenvalues and Eigenvectors
Chapter 2 Simultaneous Linear Equations (cont.)
4 4.2 © 2012 Pearson Education, Inc. Vector Spaces NULL SPACES, COLUMN SPACES, AND LINEAR TRANSFORMATIONS.
Review of Matrices Or A Fast Introduction.
1 1.4 Linear Equations in Linear Algebra THE MATRIX EQUATION © 2016 Pearson Education, Inc.
4.6 Matrix Equations and Systems of Linear Equations In this section, you will study matrix equations and how to use them to solve systems of linear equations.
Copyright © 2007 Pearson Education, Inc. Slide 7-1.
1 1.7 © 2016 Pearson Education, Inc. Linear Equations in Linear Algebra LINEAR INDEPENDENCE.
2.5 - Determinants & Multiplicative Inverses of Matrices.
13.6 MATRIX SOLUTION OF A LINEAR SYSTEM.  Examine the matrix equation below.  How would you solve for X?  In order to solve this type of equation,
Chapter 4 Section 4: Inverse and Identity Matrices 1.
Orthogonality and Least Squares
Computing Eigen Information for Small Matrices The eigen equation can be rearranged as follows: Ax = x  Ax = I n x  Ax - I n x = 0  (A - I n )x = 0.
Chapter 5 Eigenvalues and Eigenvectors 大葉大學 資訊工程系 黃鈴玲 Linear Algebra.
Vector Norms and the related Matrix Norms. Properties of a Vector Norm: Euclidean Vector Norm: Riemannian metric:
Chapter 2 System of Linear Equations Sensitivity and Conditioning (2.3) Solving Linear Systems (2.4) January 19, 2010.
Numerical Computation Lecture 9: Vector Norms and Matrix Condition Numbers United International College.
Lecture 8 Matrix Inverse and LU Decomposition
Review of Definitions.
CPSC 491 Xin Liu November 22, A change of Bases A mxn =UΣV T, U mxm, V nxn are unitary matrixes Σ mxn is a diagonal matrix Columns of a unitary.
Diagonalization and Similar Matrices In Section 4.2 we showed how to compute eigenpairs (,p) of a matrix A by determining the roots of the characteristic.
Fundamentals of Engineering Analysis
Copyright © Cengage Learning. All rights reserved. 2 SYSTEMS OF LINEAR EQUATIONS AND MATRICES Read pp Stop at “Inverse of a Matrix” box.
Chapter 2 Determinants. With each square matrix it is possible to associate a real number called the determinant of the matrix. The value of this number.
Section 1.7 Linear Independence and Nonsingular Matrices
Dr. Mubashir Alam King Saud University. Outline LU Factorization (6.4) Solution by LU Factorization Compact Variants of Gaussian Elimination, (Doolittle’s.
4.8 Rank Rank enables one to relate matrices to vectors, and vice versa. Definition Let A be an m  n matrix. The rows of A may be viewed as row vectors.
2.5 – Determinants and Multiplicative Inverses of Matrices.
5 5.1 © 2016 Pearson Education, Ltd. Eigenvalues and Eigenvectors EIGENVECTORS AND EIGENVALUES.
1 1.4 Linear Equations in Linear Algebra THE MATRIX EQUATION © 2016 Pearson Education, Ltd.
If A and B are both m × n matrices then the sum of A and B, denoted A + B, is a matrix obtained by adding corresponding elements of A and B. add these.
CHAPTER 7 Determinant s. Outline - Permutation - Definition of the Determinant - Properties of Determinants - Evaluation of Determinants by Elementary.
1.4 The Matrix Equation Ax = b
College Algebra Chapter 6 Matrices and Determinants and Applications
Linear Equations in Linear Algebra
Vectors, Linear Combinations and Linear Independence
Use Inverse Matrices to Solve Linear Systems
Linear Equations in Linear Algebra
Chapter 7: Matrices and Systems of Equations and Inequalities
3.8 Use Inverse Matrices to Solve Linear Systems
DETERMINANT MATH 80 - Linear Algebra.
Lecture 8 Matrix Inverse and LU Decomposition
NULL SPACES, COLUMN SPACES, AND LINEAR TRANSFORMATIONS
Linear Algebra Lecture 28.
Presentation transcript:

Matrix Condition Numbers Scientific Computing Matrix Condition Numbers

Matrix Condition Number Multiplication of a vector x by a matrix A results in a new vector Ax that can have a very different norm from x. The range of the possible change can be expressed by two numbers, =||A|| Here the max, min are over all non-zero vectors x.

Matrix Condition Number Definition: The condition number of a nonsingular matrix A is given by: κ(A) = M/m by convention if A is singular (m=0) then κ(A) = ∞. Note: If we let Ax = y, then x = A-1 y and

Matrix Condition Number Theorem: The condition number of a nonsingular matrix A can also be given as: κ(A) = || A || * || A-1|| Proof: κ(A) = M/m. Also, M = ||A|| and by the previous slide m = 1 / (||A-1 ||). QED

Properties of the Matrix Condition Number For any matrix A, κ(A) ≥ 1. For the identity matrix, κ(I) = 1. For any permutation matrix P, κ(P) =1. For any matrix A and nonzero scalar c , κ(c A) = κ(A). For any diagonal matrix D = diag(di), κ(D) = (max|di|)/( min | di| )

What does the condition number tell us? The condition number is a good indicator of how close is a matrix to be singular. The larger the condition number the closer we are to singularity. It is also very useful in assessing the accuracy of solutions to linear systems. In practice we don’t really calculate the condition number, it is merely estimated , to perhaps within an order of magnitude.

Condition Number And Accuracy Consider the problem of solving Ax = b. Suppose b has some error, say b + δb. Then, when we solve the equation, we will not get x but instead some value near x, say x + δx. A(x + δx) = b + δb Then, A(x + δx) = b + δb

Condition Number And Accuracy Class Practice: Show:

Condition Number And Accuracy The quantity ||δb||/||b|| is the relative change in the right-hand side, and the quantity ||δx||/||x|| is the relative error caused by this change. This shows that the condition number is a relative error magnification factor. That is, changes in the right-hand side of Ax=b can cause changes κ(A) times as large in the solution.