Part Three: Linear Algebraic Equations USC Introduction to Matrices Pages 219-227 from Chapra and Canale USC Matrix Notation and Terminology Figure PT3.2, pg 220 aij = an individual element of the matrix [A] at row i and column j matrix dimensions = rows by columns (n x m) square matrix = matrix where the number of rows equals the number of columns rows (n=m) USC Special Types of Square Matrices symmetric matrix aij = aji diagonal matrix aij = 0 where i ≠ j identity matrix aij = 1 where i = j AND aij = 0 where i ≠ j for others, see pg 221 USC Matrix Addition/Subtraction [A] = [B] if aij = bij for all i and j [A] + [B] = aij + bij for all i and j [A] - [B] = aij - bij for all i and j Both addition and subtraction are commutative [A] + [B] = [B] + [A] Both addition and subtraction are associative ([A] + [B]) + [C] = [A] + ([B] + [C]) USC Matrix Multiplication by Scalar Multiplying a matrix [A] by a scalar g ga11 ga 11 . g[ A] . . gan1 ga12 ga22 . . . gan 2 ... ga1m ... ga2 m . . . ... ganm USC Matrix Multiplication Multiplying two matrices ([C] = [A] [B]) n cij aik bkj k 1 where n = the column dimension of [A] and the row dimension of [B] USC Matrix Multiplication (Cont.) Figure PT3.3, pg 223 USC Matrix Multiplication (Cont.) Example of matrix multiplication 3 1 3 5 1 7 22 3 9 1 2 29 5 9 [C ] [ A][ B ] 8 6 8 5 6 7 82 8 9 6 2 84 7 2 0 4 0 5 4 7 28 0 9 4 2 8 22 29 [C ] 82 84 (think of a diving board to help you remember) 28 8 USC Matrix Multiplication (Cont.) Properties of matrix multiplication Matrix multiplication is generally NOT commutative [A] [B] ≠ [B] [A] Matrix multiplication is associative (assuming dimensions are suitable for multiplication) ([A] [B]) [C] = [A] ([B] [C]) Matrix multiplication is distributive (again, assuming dimensions are suitable for multiplication) [A] ([B] + [C]) = [A] [B] + [A][C] USC Matrix Division Matrix division is not a defined operation. HOWEVER, multiplication of a matrix by the inverse of a second matrix is analogous to matrix division. The inverse of a matrix ( [A]-1 ) is defined as [A] [A]-1 = [A]-1 [A] =[I] where [I] is an identify matrix (defined on a previous slide as matrix such that aij = 1 where i = j AND aij = 0 where i ≠ j) USC Matrix Inverse Calculating the inverse of a matrix, the matrix must be both square and nonsingular We defined a square matrix in a previous slide as a matrix with equal dimensions (n = m) A singular matrix has a determinate, which we will define later, of 0. USC Matrix Inverse (Cont.) The inverse of a 2 by 2 matrix can be calculated using the equation below. a22 a12 1 [ A] a a a11a22 a12a21 21 11 1 Techniques for calculating the inverse of higher-dimension matrices will be covered in Chapters 10 and 11. USC Matrix Transpose The transpose of a matrix ([B]=[A]T) is defined as bij a ji for all i and j Example if a1 A a2 a3 then AT a1 a2 a3 USC Systems of Linear Equations a11 x1 a12 x2 ... a1n xn b1 a21 x1 a22 x2 ... a2 n xn b2 . . . an1 x1 an 2 x2 ... ann xn bn can be represented using matrix notation as [ A][ x] [ B] [A], [x], and [B] are defined on the next slide. USC Matrix Operation Rules (Cont.) representation of a system of linear algebraic equations in matrix form a11 a12 ... a1n x1 b1 a a ... a x b 21 22 2 n 2 2 . . . . . . . . . an1 an 2 ... ann xn bn USC Matrix Operation Rules (Cont.) Given a system of linear algebraic equations such that [ A][ x] [ B] find [x]. Solution … 1 1 [ A] [ A][ x] [ A] [ B] 1 [ I ][ x] [ A] [ B] 1 [ x] [ A] [ B] This is one way to solve a system of linear algebraic equations and is covered in more detail in Chapter 10. There are other techniques, however, that are covered in Chapter 9. USC Chapter 9 USC Linear Algebraic Equations Part 3 An equation of the form ax+by+c=0 or equivalently ax+by=c is called a linear equation in x and y variables. ax+by+cz=d is a linear equation in three variables, x, y, and z. Thus, a linear equation in n variables is a1x1+a2x2+ … +anxn = b A solution of such an equation consists of real numbers c1, c2, c3, … , cn. If you need to work more than one linear equations, a system of linear equations must be solved simultaneously. USC Noncomputer Methods for Solving Systems of Equations For small number of equations (n ≤ 3) linear equations can be solved readily by simple techniques such as “method of elimination.” Linear algebra provides the tools to solve such systems of linear equations. Nowadays, easy access to computers makes the solution of large sets of linear algebraic equations possible and practical. USC Fig. pt3.5 USC Gauss Elimination Chapter 9 Solving Small Numbers of Equations There are many ways to solve a system of linear equations: Graphical method Cramer’s rule Method of elimination Computer methods For n ≤ 3 USC Graphical Method For two equations: a11 x1 a12 x2 b1 a21 x1 a22 x2 b2 Solve both equations for x2: a11 b1 x2 x1 a12 a12 x2 (slope) x1 intercept a21 b2 x2 x1 a22 a22 USC Plot x2 vs. x1 on rectilinear paper, the intersection of the lines present the solution. Fig. 9.1 USC Figure 9.2 USC Determinants and Cramer’s Rule Determinant can be illustrated for a set of three equations: Ax B Where [A] is the coefficient matrix: a11 a12 a13 A a21 a22 a23 a31 a32 a33 USC • • Assuming all matrices are square matrices, there is a number associated with each square matrix [A] called the determinant, D, of [A]. If [A] is order 1, then [A] has one element: [A]=[a11] D=a11 For a square matrix of order 3, the minor of an element aij is the determinant of the matrix of order 2 by deleting row i and column j of [A]. USC a11 a12 a13 D a21 a22 a23 a31 a32 a33 D11 a22 a23 D12 a21 a23 D13 a21 a22 a32 a33 a31 a33 a31 a32 a22 a33 a32 a23 a21 a33 a31 a23 a21 a32 a31 a22 USC D a11 a22 a23 a32 a33 a12 a21 a23 a31 a33 a13 a21 a22 a31 a32 • Cramer’s rule expresses the solution of a systems of linear equations in terms of ratios of determinants of the array of coefficients of the equations. For example, x1 would be computed as: b1 a12 a13 b2 a22 a23 x1 b3 a32 a33 D USC Method of Elimination The basic strategy is to successively solve one of the equations of the set for one of the unknowns and to eliminate that variable from the remaining equations by substitution. The elimination of unknowns can be extended to systems with more than two or three equations; however, the method becomes extremely tedious to solve by hand. USC Naive Gauss Elimination Extension of method of elimination to large sets of equations by developing a systematic scheme or algorithm to eliminate unknowns and to back substitute. As in the case of the solution of two equations, the technique for n equations consists of two phases: Forward elimination of unknowns Back substitution USC USC Pitfalls of Elimination Methods Division by zero. It is possible that during both elimination and back-substitution phases a division by zero can occur. Round-off errors. Ill-conditioned systems. Systems where small changes in coefficients result in large changes in the solution. Alternatively, it happens when two or more equations are nearly identical, resulting a wide ranges of answers to approximately satisfy the equations. Since round off errors can induce small changes in the coefficients, these changes can lead to large solution errors. USC Singular systems. When two equations are identical, we would loose one degree of freedom and be dealing with the impossible case of n-1 equations for n unknowns. For large sets of equations, it may not be obvious however. The fact that the determinant of a singular system is zero can be used and tested by computer algorithm after the elimination stage. If a zero diagonal element is created, calculation is terminated. USC Techniques for Improving Solutions • • Use of more significant figures. Pivoting. If a pivot element is zero, normalization step leads to division by zero. The same problem may arise, when the pivot element is close to zero. Problem can be avoided: – – Partial pivoting. Switching the rows so that the largest element is the pivot element. Complete pivoting. Searching for the largest element in all rows and columns then switching. USC Gauss-Jordan It is a variation of Gauss elimination. The major differences are: When an unknown is eliminated, it is eliminated from all other equations rather than just the subsequent ones. All rows are normalized by dividing them by their pivot elements. Elimination step results in an identity matrix. Consequently, it is not necessary to employ back substitution to obtain solution. USC Chapter 10 USC LU Decomposition and Matrix Inversion Chapter 10 Provides an efficient way to compute matrix inverse by separating the time consuming elimination of the Matrix [A] from manipulations of the right-hand side {B}. Gauss elimination, in which the forward elimination comprises the bulk of the computational effort, can be implemented as an LU decomposition. USC If L- lower triangular matrix U- upper triangular matrix Then, [A]{X}={B} can be decomposed into two matrices [L] and [U] such that [L][U]=[A] [L][U]{X}={B} Similar to first phase of Gauss elimination, consider [U]{X}={D} [L]{D}={B} [L]{D}={B} is used to generate an intermediate vector {D} by forward substitution Then, [U]{X}={D} is used to get {X} by back substitution. USC Fig.10.1 USC LU decomposition requires the same total FLOPS as for Gauss elimination. Saves computing time by separating timeconsuming elimination step from the manipulations of the right hand side. Provides efficient means to compute the matrix inverse USC The Matrix Inverse recall … [A][x]=[B] can be rewritten as [A]-1[A ][x] = [A]-1[B], or more simply [x] = [A]-1[B] One method for calculating a matrix inverse is using LU Decomposition. if [B]T = [1 0 0], then solution of [A][X] = [B] gives the first column of [A]-1 if [B]T = [0 1 0], then solution of [A][X] = [B] gives the second column if [B]T = [0 0 1], then solution of [A][X] = [B] gives the third column of [A]-1 USC