Chapter 3. Determinants. 3.1 The determinant of a matrix. Homework: [Textbook, 3.1 Ex. 15, 17, 27, 33, 47, 55, 57; page 131].

Size: px
Start display at page:

Download "Chapter 3. Determinants. 3.1 The determinant of a matrix. Homework: [Textbook, 3.1 Ex. 15, 17, 27, 33, 47, 55, 57; page 131]."

Transcription

1 Chapter 3 Determinants 3.1 The determinant of a matrix Homework: [Textbook, 3.1 Ex. 15, 17, 27, 33, 47, 55, 57; page 131]. The main point in this section is the following: 1. Define determinant of a matrix. 2. Compute determinant of a matrix, in various ways. 87

2 88 CHAPTER 3. DETERMINANTS Definition We define determinant of square matrices. Here we give the definition only for square matrices of size 2 2 and Let [ ] a b A = c d be a matrix of size 2 2. Define determinant of A as det(a) = ad bc. 2. Let A = a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 be a matrix of size 3 3. Now, write a new 3 5 matrix a 11 a 12 a 13 a 11 a 12 a 21 a 22 a 23 a 21 a 22 a 31 a 32 a 33 a 31 a 32 by augmenting that first two columns of A to itself. This matrix has 3 left to right diagonals and 3 right to left diagonals. The determinant of A is sum of product of all entries in each left to right diagonal minus sum of product of all entries in each right to left diagonal. More precisely, det(a) = (a 11 a 22 a 33 + a 12 a 23 a 31 + a 13 a 21 a 32 ) (a 13 a 22 a 31 + a 11 a 23 a 32 + a 12 a 21 a 33 ). 3. Determinant of square matrices of all sizes will be defined soon, in an unified way. Before we do that, let us analyze the definition in 3 3 case. (a) First, there are 6 terms and note 6 = (If you know it, 6 is the number of possible permutaitions of 3 objects.)

3 3.1. THE DETERMINANT OF A MATRIX 89 (b) Each term has EXACTLY one factor of each row and each column. (c) There is a way to determine the sign for each term, which we will not discuss. To define determinant of square matrices of all sizes, we will have to define Minors and cofactors of a square matrices. Definition Suppose A is a square matrix of size n n. 1. The minor M ij of the element a ij (or (ij) th minor) is the determinant of the matrix obtained by deleting the i th row and j th column from the matrix A. 2. The (ij) th cofactor is defined to be C ij = ( 1) i+j M ij. 3. Remark. We used the word determinant in this definition, without definiting determinant. This is not mathematically proper. (a) But we did define determinant of matrices of size 3 3. Note that the minors of matrices of size 4 4 are determinants of matrices of size 3 3. So, there is nothing improper in the definition of minors for matrices of size 4 4. (b) Subsesuently using the definition of cofactors of matrices of size 4 4, we will define determinant of matrices of size 4 4. (c) Then, using the definition of cofactors of matrices of size 5 5, we will define determinant of matrices of size 5 5.

4 90 CHAPTER 3. DETERMINANTS (d) This process continues and the definition of determinant of matrices of all sizes will be define. Such a process is called an inductive process, and in this case an inductive definition. Definition Suppose A = [a ij ] is a matrix of order n (where n is atleast 2). Then, determinant of A is the sum of the entries in the first row of A multiplied by their cofactors. That means det(a) = n a 1j C 1j = a 11 C 11 + a 12 C a 1n C 1n. j=1 1. We used the first row of A to give this definition. 2. There is nothing so special about the first row. This can be done using any row and there is a thoerem that says it will make no difference if we use the second or the third or any i th row. This means, we have det(a) = n a 1j C 1j = j=1 n a ij C ij = a i1 C i1 + a i2 C i2 + + a in C in. j=1 for any i with 1 i n. This will be called the i th row expansion of the determinant. 3. What is so special about rows and what is wrong with columns? Answer is none. There is a thoerem that says, we could use the columns to define determinants, instead of rows. This means, we have n n det(a) = a 1j C 1j = a ij C ij = a 1j C 1j +a 2j C 2j + +a nj C nj. j=1 i=1 4. We also use the notation det(a) = A.

5 3.1. THE DETERMINANT OF A MATRIX Triangular matrices In some cases, it is easier to compute determiants. They include diagonal matrices and triangular matrices. Definition For a square matrix A = [a ij ], wehave the folowing definitions: 1. We say A is upper triangular, if all the enties below the main diagonal is zero. An upper triangular matrix looks like: a 11 a 12 a 13 a 1n 0 a 22 a 23 a 2n A = 0 0 a 33 a 3n a nn 2. We say A is lower triangular, if all the enties above the main diagonal is zero. A lower triangular matrix looks like: a a 21 a A = a 31 a 32 a 33 0 a n1 a n2 a n3 a nn 3. We say A is a diagonal matrix, if all the off diagonal entries are zero. A diagonal matrix looks like a a A = 0 0 a a nn

6 92 CHAPTER 3. DETERMINANTS Note that a diagonal matrix is both anupper triangular and lower triangular matrix. Theorem Let A be a triangular matrix. Then the determinant of A is the product of the entries on the main diagonal. That means, with notations as in the definition above, det(a) = a 11 a 22 a nn. Proof. We prove it by the method of mathematical inducton. Let A be a lower triangular matix: a a 21 a A = a 31 a 32 a 33 0 a n1 a n2 a n3 a nn If n = 1 then det(a) = a 11 and the theorem is valid. If n = 2, then [ ] a11 0 A = and det(a) = a a 21 a 11 a So, the theorem is valid for n = 2. Now assume that the theorem is valid for matrices of order n 1. (This assumption would be called the induction hypothesis. ) We need to prove the theorem for matrices of order n. Then the minor M 11 of a 11 is the determinant of a lower triangular matrix and by our induction hypothesis, we have M 11 = a 22 a 33 a nn ; the cofactor C 11 = ( 1) 1+1 M 11 = a 22 a 33 a nn. From definition of determinant, det(a) = a 11 C 11 + a 12 C a 1n C 1n = a 11 a 22 a 33 a nn + 0C C 1n = a 11 a 22 a 33 a nn. Therefore, by the method of mathematical induction, the theorem is established for square matrices of all sizes n.

7 3.1. THE DETERMINANT OF A MATRIX 93 Reading assignament: Read Example 1-5 (page 123-). Exercise (Ex. 16, p. 130) Compute all theminors and cofactors of the matrix A = Solution: We have 3 1 M 11 = 7 8 = 17 M = 4 8 = 52 M = 4 7 = M 21 = 7 8 = 18 M = 4 8 = 16 M = 4 7 = M 31 = 3 1 = 2 M = 6 1 = 15 M = 6 3 = 33. Now the formuala for cofactor is C ij = ( 1) i+j M ij. So, the cofactors are given by: C 11 = ( 1) i+j M ij = ( 1) 1+1 M 11 = 17, C 12 = ( 1) 1+2 M 12 = ( 1)( 52) = 52. C 13 = ( 1) 1+3 M 13 = 54 C 21 = ( 1) 2+1 M 21 = 18, C 22 = ( 1) 2+2 M 22 = 16, C 23 = ( 1) 2+3 M 23 = 5, C 31 = ( 1) 3+1 M 31 = 2, C 32 = ( 1) 3+2 M 32 = 15,. C 33 = ( 1) 3+3 M 33 = 33. Exercise (Ex. 18, p. 130) Find the determinant of the matrix in Exercise 3.1.6, using the method of expansion by cofactors, as follows:

8 94 CHAPTER 3. DETERMINANTS 1. Use the first row: Solution: We have, by expanding by first row: A = a 11 C 11 +a 12 C 12 +a 13 C 13 = 3 ( 17) ( 54) = Use third row. Solution: We have, by expanding by third row: A = a 31 C 31 +a 32 C 32 +a 33 C 33 == 4 ( 2)+( 7) 15+( 8) ( 33) = Use the first column. Solution: We have, by expanding by first column: A = a 13 C 13 +a 21 C 21 +a 31 C 31 = 4 ( 17) ( 2) = 151. Exercise (Ex. 28. p. 131) Use expansion by cofactors to compute the determinant of Solution: Looking at the problem, it is clear that it will be best to try to expand by second row: So, A = a 31 C 31 +a 32 C 32 +a 33 C 33 +a 34 C 34 = 0C 31 +0C 32 +0C 33 +0C 34 = 0. Exercise (Ex. 30. p. 131) Use expansion by cofactors to compute the determinant of

9 3.1. THE DETERMINANT OF A MATRIX 95 Solution:Since there are two zero entries in the first row, we will expand by first row: A = a 11 C 11 + a 12 C 12 + a 13 C 13 + a = 3C C C C 34. Which is = 3C C 13. So, we will compute the cofactors C 11,C C 11 = ( 1) 1+1 M 11 = = 6 ( 14) = And C 13 = ( 1) 1+3 M 13 = = ( ) = Therefore, A = 3C C 13 = = 0. Exercise (Ex. 46. p. 131) Use expansion by cofactors to compute the determinant of A = Solution: This is a lower triangular matrix. By theorem 3.1.5, the determiant will be given by the product of the entries in the mail diagonal. So,. A = ( 1) ( 2) = 7. 4

10 96 CHAPTER 3. DETERMINANTS Problems for Extra Practice: Ex. 20, 21, 22, 44, 45, page 131.

11 3.2. DETERMINANTS AND ELEMENTARY OPERATIONS Determinants and Elementary Operations Homework: [Textbook, 3.2, page 140 Ex. 11, 15, 17, 27, 29, 31, 39, 49, 51] The main point in this section is to understtand elementary properties of determinants.

12 98 CHAPTER 3. DETERMINANTS Following is the main theorem in this section. Theorem Suppose A,B be two square matrices of same size. 1. If B is obtained from A by interchanging two rows of A, then det(a) = det(b). 2. If B is obtained from A by adding a constant multiple of a row of A to another row of A, then det(a) = det(b). 3. If B is obtained from A by multiplying a row of A by a scalar c, then det(b) = c det(a). 4. All the above statements remain valid, if we replace the word row by column. Theorem If A is a square matrix and any one of the following conditions is true, then det(a) = An entire row (or column) consists of zeros. 2. Two rows (or columns) are equal. 3. One row (or column) is a multiple of another row (or column). Reading assignment: Read examples 1-6 (page 133).

13 3.2. DETERMINANTS AND ELEMENTARY OPERATIONS 99 Exercise (Ex. 28, p. 141) Use elementary row or column operations to compute the determinant: A = Solution: we will try to reduce the matrix to a triangular matrix and use theorem Switch first and second row: A = Add 3 times the second column to the first: A = Subtract second row from third: A = This is a triangular matrix and by theorem 3.1.5, A = ( 13) ( 1)(2) = 26. Exercise (Ex. 34, p. 141) Use elementary row or column operations to compute the determinant: A =

14 100 CHAPTER 3. DETERMINANTS Solution: Subtract second and fourth row from first A = Add 2 times second row to fourth: A = Now, interchange second and fourth row: A = Expanding by cofactors along the last column, we get A = Now expand by first row: ( A = 5 ( 14)( 1) ( 8)( 1) ). So, A = 5 (14 ( 86) 8 ( 57)) =

15 3.3. PROPERTIES OF DETERMINANTS Properties of determinants We skip this section. In any case, let me state the following without proofs. Theorem Suppose A, B are two n n matrices. Then, det(ab) = det(a)det(b). Theorem Suppose A is a n n matrix. Then, A is invertible (nonsingular) if and only if det(a) Introduction to eigen values We skip this section. 3.5 Application of Determinants Homework: [Textbook, 3.5 Ex. 5, 7, 27, 31, 47, 49, 51; page 169]. The main points in this section are the following: 1. We define adjoint of a matrix. 2. Using adjoint, we give formula to compute inverse of a matrix. 3. We describle Cramer s rule to solve non-singular system of linear equations.

16 102 CHAPTER 3. DETERMINANTS Cofactors and adjoint of a matrix Definition Suppose A is an n n matrix and as before C ij denotes the (i,j) th cofactor. The matrix of cofactors of A is defined as C 11 C 12 C 13 C 1n C 21 C 22 C 23 C 2n C 31 C 32 C 33 C 3n C = [C ij ] =. C n1 C n2 C n3 C nn We also call it the cofactor matrix of A. The transpose of the cofactor matrix is called the adjoint of A, which is denoted by Adj(A). So, C 11 C 21 C 31 C n1 C 12 C 22 C 32 C n2 Adj(A) = C T C 13 C 23 C 33 C n3 =. C 1n C 2n C 3n C nn Theorem Suppose A is an n n invertible matrix. Then, A[Adj(A)] = det(a)i n = [Adj(A)]A. and A 1 = 1 det(a) Adj(A). Proof. In fact, later statement follows from the former statemnt: A[Adj(A)] = det(a)i n = [Adj(A)]A.

17 3.5. APPLICATION OF DETERMINANTS 103 So, we prove this statement. For simpicity, I will first give a proof for matrices A of size 3 3. So, a 11 a 12 a 13 C 11 C 21 C 31 A = a 21 a 22 a 23 and Adj(A) = C 12 C 22 C 32. a 31 a 32 a 33 C 13 C 23 C 33 So, A[Adj(A)] = a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 Let use compute the first row: C 11 C 21 C 31 C 12 C 22 C 32 C 13 C 23 C 33 = p 11 p 12 p 13 p 21 p 22 p 23 p 31 p 32 p 33 (say). p 11 = a 11 C 11 + a 12 C 12 + a 13 C 13 = det(a) (by definition 3.1.3). Then p 12 = a 11 C 21 +a 12 C 22 +a 13 C 23 = Then, p 13 = a 11 C 31 +a 12 C 32 +a 13 C 33 = a 11 a 12 a 13 a 11 a 12 a 13 a 31 a 32 a 33 a 11 a 12 a 13 a 21 a 22 a 23 a 11 a 12 a 13 = 0 = 0 Similarly, we compute the second row: a 21 a 22 a 23 p 21 = a 21 C 11 +a 22 C 12 +a 23 C 13 = a 21 a 22 a 23 a 31 a 32 a 33 = 0 and (b/c two rows are same). (b/c two rows are same). (b/c two rows are same). p 22 = a 21 C 21 + a 22 C 22 + a 23 C 23 = det(a) (by definition 3.1.3). p 23 = a 21 C 31 +a 22 C 32 +a 23 C 33 = a 11 a 12 a 13 a 21 a 22 a 23 a 21 a 22 a 23 = 0 (b/c two rows are same).

18 104 CHAPTER 3. DETERMINANTS Now, we compute the third row: p 31 = a 31 C 11 +a 32 C 12 +a 33 C 13 = Also p 32 = a 31 C 21 +a 32 C 22 +a 33 C 23 = Finally, a 31 a 32 a 33 a 21 a 22 a 23 a 31 a 32 a 33 a 11 a 12 a 13 a 31 a 32 a 33 a 31 a 32 a 33 = 0 = 0 (b/c two rows are same). (b/c two rows are same). p 33 = a 31 C 31 + a 32 C 32 + a 33 C 33 = det(a) (by definition 3.1.3). Therefore, we have, A[Adj(A)] = det(a) det(a) det(a) Similarly, (using column expansion definition 3.1.3), we can prove det(a) 0 0 [Adj(A)]A = 0 det(a) det(a) So, Dividing by det(a) we have ( ) 1 A det(a) Adj(A) = So, A 1 = 1 matrix. det(a) A[Adj(A)] = [Adj(A)]A = det(a)i 3. ( ) 1 det(a) Adj(A) A = I 3. Adj(A). So, the proof is complete when A is a 3 3 Proof in the general case: This means, A is an n n matrix and we will prove A[Adj(A)] = [Adj(A)]A = det(a)i n.

19 3.5. APPLICATION OF DETERMINANTS 105 In fact, I was too verbose in the 3 3 case, and I computed all the 9 terms of A[Adj(A)], explicitly. This is not possible in the general case. As usual we denote A = [a ij ] and Adj(A) = [C ji ], as above. The (i,j) th term p ij of A[Adj(A)] is given by p ij = a i1 C j1 + a i2 C j2 + + a in C jn = n a ik C jk. k=1 For the diagonal terms, we have i = j and we have, p ii = a i1 C i1 + a i2 C i2 + + a in C in = det(a), which follows from definition 3.1.3, by expanding along the i th row. If i j, then (assume i < j), we have a 11 a 12 a 13 a 1n a 21 a 22 a 23 a 2n p ij = a i1 a i2 a i3 a in = 0 (b/c two rows are same). a i1 a i2 a i3 a in a n1 a n2 a n3 a nn (It is the determinant of the matrix obtained from A, by replacing j th row of A by the i th row.) So, we have proved that det(a) det(a) 0 0 A[Adj(A)] = 0 0 det(a) 0 = det(a)i n det(a) Using column expansion of determinants, similarly, we prove So, the proof is complete. [Adj(A)]A = det(a)i n.

20 106 CHAPTER 3. DETERMINANTS Cramer s Rule Cramer s Rule is a method of solving systems of linear equations, when number of equations is same as the mumber is unknowns. Theorem Suppose Ax = b is a system of n linear equations in n variables x 1,x 2,...,x n. Assume det(a) 0. Then, x 1 = det(a 1) det(a),x 2 = det(a 2) det(a),,x n = det(a n) det(a), where the metrix A i is obtained from A by replacing the i th column of A the column b of constants. Proof. Left-multiply the system Ax = b by Adj(A), we have By theorem 3.5.2, it follows So, det(a)i n x = Adj(A)b (Adj(A))Ax = Adj(A)b x 1 x 2 x n or det(a)x 1 det(a)x 2 det(a)x n = 1 det(a) Adj(A)b. = Adj(A)b. So, x i is the i th entry (row) of the column matrix 1 det(a) Adj(A)b. Therefore, x i = 1 det(a) = b 1C 1i + b 2 C 2i + + b n C ni = 1 det(a) det(a i), by expanding det(a i ) along the i th column of A i. This completes the proof. Reading assignment: Read Examples 1-4, page 158-.

21 3.5. APPLICATION OF DETERMINANTS 107 Exercise (Ex. 4, p. 168) Let A = Find the adjoint of A and use it to compute the inverse of A. Solution: We will use TI to compute determinants, whenever needed. First, we compute the cofactors: C 11 = ( 1) = 4 C 12 = ( 1) = 2 and C 13 = ( 1) = 2 C 21 = ( 1) = 2 and C 22 = ( 1) = 4 C 23 = ( 1) = 2 and C 31 = ( 1) = 5 C 32 = ( 1) = 1 and So, the cofactor matrix is C = C 33 = ( 1) = 1 and Adj(A) = C t =

22 108 CHAPTER 3. DETERMINANTS Using TI,wehave det(a) = 6. So, ( ) 1 A 1 = Adj(A) = det(a) Exercise (Ex. 6, p. 168) Let A = = Find the adjoint of A and use it to compute the inverse of A Solution: We will use TI to compute determinants, whenever needed. Firsr, we compute the cofactors: C 11 = ( 1) = 1 C 12 = ( 1) = 1. and and C 13 = ( 1) C 22 = ( 1) = 1 C 21 = ( 1) 2+1 = 1 C 23 = ( 1) = 1 = 1 and C 31 = ( 1) = 1 C 32 = ( 1) = 1 and C 33 = ( 1) = 1

23 3.5. APPLICATION OF DETERMINANTS 109 So, the cofactor matrix is C = and Adj(A) = C t = Using TI,wehave det(a) = 0. So, A does not have an inverse..

24 110 CHAPTER 3. DETERMINANTS Problems on Cramer s Rule Exercise (Ex. 28, p. 169) Use Cramer s Rule to solve the system of linear equations: 4x 1 2x 2 +3x 3 = 2 2x 1 +2x 2 +5x 3 = 16 8x 1 5x 2 2x 3 = 4 Solution: Here the coefficient matrix is A = and det(a) = We write the A i by replacing the i th column by the constant vector. So, And And A 1 = A 2 = A 3 = By Cramer s rule and det(a 1 ) = 410. and det(a 2 ) = 656. and det(a 3 ) = 164. x 1 = det(a 1) det(a) = = 5, x 2 = det(a 2) det(a) = = 8,

25 3.5. APPLICATION OF DETERMINANTS 111 x 3 = det(a 3) det(a) = = 2. Exercise (Ex. 30, p. 169) Use Cramer s Rule to solve the system of linear equations: 14x 1 21x 2 7x 3 = 21 4x 1 +2x 2 2x 3 = 2 56x 1 21x 2 +7x 3 = 7 Solution: Here the coefficient matrix is A = and det(a) = We write the A i by replacing the i th column by the constant vector. So, A 1 = and det(a 1 ) = And And A 2 = A 3 = and det(a 2 ) = and det(a 3 ) = By Cramer s rule

26 112 CHAPTER 3. DETERMINANTS x 1 = det(a 1) det(a) = = 1, x 2 = det(a 2) det(a) = = 2, x 3 = det(a 3) det(a) = = Area, Volume, and Equations of lines and planes Theorem We have thoe following three part theorem(s) regarding triangles: 1. The area of the triangle whose vertices are (x 1,y 1 ), (x 2,y 2 ), (x 3,y 3 ) is given by Area = ± 1 x 1 y 1 1 x 2 2 y 2 1 x 3 y 3 1 where the sign ± is chosen to yield a positive area. 2. Three points (x 1,y 1 ), (x 2,y 2 ), (x 3,y 3 ) are collinear if and only if x 1 y 1 1 x 2 y 2 1 = 0. x 3 y The equation of the line passing through two distince points (x 1,y 1 ), (x 2,y 2 ) is given by x y 1 x 1 y 1 1 = 0. x 2 y 2 1

27 3.5. APPLICATION OF DETERMINANTS 113 Proof. You can skip the proof, if you want. I will also skip the proof of (1), you can look at the textbook. Now, since three points are collinear if and only if the area of the corresponding triangle is zero, (1) (2). Similarly, a point (x,y) is nn the line through (x 1,y 1 ), (x 2,y 2 ) if and only if (x,y), (x 1,y 1 ), (x 2,y 2 ) are collinear. So, The proof is complete. (2) (3). We have similar theorems for points in 3-space. Theorem We have thoe following three part theorem(s) regarding tetrahedrons: 1. The volume of the tetrahedron whose vertices are (x 1,y 1,z 1 ), (x 2,y 2,z 2 ), (x 3,y 3,z 3 ), (x 4,y 4,z 4 ) is given by x 1 y 1 z 1 1 V olume = ± 1 x 2 y 2 z x 3 y 3 z 3 1 x 4 y 4 z 4 1 where the sign ± is chosen to yield a positive area. 2. Four points (x 1,y 1,z 1 ), (x 2,y 2,z 2 ), (x 3,y 3,z 3 ), (x 4,y 4,z 4 ) in 3-space are coplanar if and only if x 1 y 1 z 1 1 x 2 y 2 z 2 1 x 3 y 3 z 3 1 = 0. x 4 y 4 z 4 1

28 114 CHAPTER 3. DETERMINANTS 3. The equation of the plane passing through three distince points (x 1,y 1,z 1 ), (x 2,y 2,z 2 ), (x 3,y 3,z 3 ) in 3-space is given by x y z 1 x 1 y 1 z 1 1 x 2 y 2 z 2 1 = 0. x 3 y 3 z 3 1 Proof. Skip. Reading assignment: Read Examples 5-8, page 165-, from the textbook. Exercise (Ex. 48. p. 169) Find the area of the triange passing through the points (1, 1), ( 1, 1), (0, 2). Solution: By theorem (1), Area = ± 1 x 1 y 1 1 x 2 2 y 2 1 = ± 1 2 x 3 y = 6/2 = 3. Exercise (Ex. 52. p. 169) Determine if the points ( 1, 3), ( 4, 7), (2, 13) are colinear. Solution: Because of theorem 3.5.8, we compute Area = ± 1 x 1 y 1 1 x 2 2 y 2 1 = ± x 3 y = 0. Since the area is zero, these three points are colinear.

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 2. x n. a 11 a 12 a 1n b 1 a 21 a 22 a 2n b 2 a 31 a 32 a 3n b 3. a m1 a m2 a mn b m

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 2. x n. a 11 a 12 a 1n b 1 a 21 a 22 a 2n b 2 a 31 a 32 a 3n b 3. a m1 a m2 a mn b m MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS 1. SYSTEMS OF EQUATIONS AND MATRICES 1.1. Representation of a linear system. The general system of m equations in n unknowns can be written a 11 x 1 + a 12 x 2 +

More information

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS Systems of Equations and Matrices Representation of a linear system The general system of m equations in n unknowns can be written a x + a 2 x 2 + + a n x n b a

More information

8 Square matrices continued: Determinants

8 Square matrices continued: Determinants 8 Square matrices continued: Determinants 8. Introduction Determinants give us important information about square matrices, and, as we ll soon see, are essential for the computation of eigenvalues. You

More information

Math 115A HW4 Solutions University of California, Los Angeles. 5 2i 6 + 4i. (5 2i)7i (6 + 4i)( 3 + i) = 35i + 14 ( 22 6i) = 36 + 41i.

Math 115A HW4 Solutions University of California, Los Angeles. 5 2i 6 + 4i. (5 2i)7i (6 + 4i)( 3 + i) = 35i + 14 ( 22 6i) = 36 + 41i. Math 5A HW4 Solutions September 5, 202 University of California, Los Angeles Problem 4..3b Calculate the determinant, 5 2i 6 + 4i 3 + i 7i Solution: The textbook s instructions give us, (5 2i)7i (6 + 4i)(

More information

Using row reduction to calculate the inverse and the determinant of a square matrix

Using row reduction to calculate the inverse and the determinant of a square matrix Using row reduction to calculate the inverse and the determinant of a square matrix Notes for MATH 0290 Honors by Prof. Anna Vainchtein 1 Inverse of a square matrix An n n square matrix A is called invertible

More information

Solving Linear Systems, Continued and The Inverse of a Matrix

Solving Linear Systems, Continued and The Inverse of a Matrix , Continued and The of a Matrix Calculus III Summer 2013, Session II Monday, July 15, 2013 Agenda 1. The rank of a matrix 2. The inverse of a square matrix Gaussian Gaussian solves a linear system by reducing

More information

Unit 18 Determinants

Unit 18 Determinants Unit 18 Determinants Every square matrix has a number associated with it, called its determinant. In this section, we determine how to calculate this number, and also look at some of the properties of

More information

Notes on Determinant

Notes on Determinant ENGG2012B Advanced Engineering Mathematics Notes on Determinant Lecturer: Kenneth Shum Lecture 9-18/02/2013 The determinant of a system of linear equations determines whether the solution is unique, without

More information

1 Determinants and the Solvability of Linear Systems

1 Determinants and the Solvability of Linear Systems 1 Determinants and the Solvability of Linear Systems In the last section we learned how to use Gaussian elimination to solve linear systems of n equations in n unknowns The section completely side-stepped

More information

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B KITCHENS The equation 1 Lines in two-dimensional space (1) 2x y = 3 describes a line in two-dimensional space The coefficients of x and y in the equation

More information

The Determinant: a Means to Calculate Volume

The Determinant: a Means to Calculate Volume The Determinant: a Means to Calculate Volume Bo Peng August 20, 2007 Abstract This paper gives a definition of the determinant and lists many of its well-known properties Volumes of parallelepipeds are

More information

1 Introduction to Matrices

1 Introduction to Matrices 1 Introduction to Matrices In this section, important definitions and results from matrix algebra that are useful in regression analysis are introduced. While all statements below regarding the columns

More information

The Characteristic Polynomial

The Characteristic Polynomial Physics 116A Winter 2011 The Characteristic Polynomial 1 Coefficients of the characteristic polynomial Consider the eigenvalue problem for an n n matrix A, A v = λ v, v 0 (1) The solution to this problem

More information

Matrices 2. Solving Square Systems of Linear Equations; Inverse Matrices

Matrices 2. Solving Square Systems of Linear Equations; Inverse Matrices Matrices 2. Solving Square Systems of Linear Equations; Inverse Matrices Solving square systems of linear equations; inverse matrices. Linear algebra is essentially about solving systems of linear equations,

More information

DETERMINANTS TERRY A. LORING

DETERMINANTS TERRY A. LORING DETERMINANTS TERRY A. LORING 1. Determinants: a Row Operation By-Product The determinant is best understood in terms of row operations, in my opinion. Most books start by defining the determinant via formulas

More information

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2.

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2. Chapter 1 LINEAR EQUATIONS 1.1 Introduction to linear equations A linear equation in n unknowns x 1, x,, x n is an equation of the form a 1 x 1 + a x + + a n x n = b, where a 1, a,..., a n, b are given

More information

MATH10212 Linear Algebra. Systems of Linear Equations. Definition. An n-dimensional vector is a row or a column of n numbers (or letters): a 1.

MATH10212 Linear Algebra. Systems of Linear Equations. Definition. An n-dimensional vector is a row or a column of n numbers (or letters): a 1. MATH10212 Linear Algebra Textbook: D. Poole, Linear Algebra: A Modern Introduction. Thompson, 2006. ISBN 0-534-40596-7. Systems of Linear Equations Definition. An n-dimensional vector is a row or a column

More information

Typical Linear Equation Set and Corresponding Matrices

Typical Linear Equation Set and Corresponding Matrices EWE: Engineering With Excel Larsen Page 1 4. Matrix Operations in Excel. Matrix Manipulations: Vectors, Matrices, and Arrays. How Excel Handles Matrix Math. Basic Matrix Operations. Solving Systems of

More information

Matrix Algebra. Some Basic Matrix Laws. Before reading the text or the following notes glance at the following list of basic matrix algebra laws.

Matrix Algebra. Some Basic Matrix Laws. Before reading the text or the following notes glance at the following list of basic matrix algebra laws. Matrix Algebra A. Doerr Before reading the text or the following notes glance at the following list of basic matrix algebra laws. Some Basic Matrix Laws Assume the orders of the matrices are such that

More information

Name: Section Registered In:

Name: Section Registered In: Name: Section Registered In: Math 125 Exam 3 Version 1 April 24, 2006 60 total points possible 1. (5pts) Use Cramer s Rule to solve 3x + 4y = 30 x 2y = 8. Be sure to show enough detail that shows you are

More information

LINEAR ALGEBRA. September 23, 2010

LINEAR ALGEBRA. September 23, 2010 LINEAR ALGEBRA September 3, 00 Contents 0. LU-decomposition.................................... 0. Inverses and Transposes................................. 0.3 Column Spaces and NullSpaces.............................

More information

13 MATH FACTS 101. 2 a = 1. 7. The elements of a vector have a graphical interpretation, which is particularly easy to see in two or three dimensions.

13 MATH FACTS 101. 2 a = 1. 7. The elements of a vector have a graphical interpretation, which is particularly easy to see in two or three dimensions. 3 MATH FACTS 0 3 MATH FACTS 3. Vectors 3.. Definition We use the overhead arrow to denote a column vector, i.e., a linear segment with a direction. For example, in three-space, we write a vector in terms

More information

Solution to Homework 2

Solution to Homework 2 Solution to Homework 2 Olena Bormashenko September 23, 2011 Section 1.4: 1(a)(b)(i)(k), 4, 5, 14; Section 1.5: 1(a)(b)(c)(d)(e)(n), 2(a)(c), 13, 16, 17, 18, 27 Section 1.4 1. Compute the following, if

More information

Row Echelon Form and Reduced Row Echelon Form

Row Echelon Form and Reduced Row Echelon Form These notes closely follow the presentation of the material given in David C Lay s textbook Linear Algebra and its Applications (3rd edition) These notes are intended primarily for in-class presentation

More information

Lecture 2 Matrix Operations

Lecture 2 Matrix Operations Lecture 2 Matrix Operations transpose, sum & difference, scalar multiplication matrix multiplication, matrix-vector product matrix inverse 2 1 Matrix transpose transpose of m n matrix A, denoted A T or

More information

Solving Systems of Linear Equations

Solving Systems of Linear Equations LECTURE 5 Solving Systems of Linear Equations Recall that we introduced the notion of matrices as a way of standardizing the expression of systems of linear equations In today s lecture I shall show how

More information

7.4. The Inverse of a Matrix. Introduction. Prerequisites. Learning Style. Learning Outcomes

7.4. The Inverse of a Matrix. Introduction. Prerequisites. Learning Style. Learning Outcomes The Inverse of a Matrix 7.4 Introduction In number arithmetic every number a 0 has a reciprocal b written as a or such that a ba = ab =. Similarly a square matrix A may have an inverse B = A where AB =

More information

Systems of Linear Equations

Systems of Linear Equations Systems of Linear Equations Beifang Chen Systems of linear equations Linear systems A linear equation in variables x, x,, x n is an equation of the form a x + a x + + a n x n = b, where a, a,, a n and

More information

Systems of Linear Equations

Systems of Linear Equations Chapter 1 Systems of Linear Equations 1.1 Intro. to systems of linear equations Homework: [Textbook, Ex. 13, 15, 41, 47, 49, 51, 65, 73; page 11-]. Main points in this section: 1. Definition of Linear

More information

Linear Algebra Notes for Marsden and Tromba Vector Calculus

Linear Algebra Notes for Marsden and Tromba Vector Calculus Linear Algebra Notes for Marsden and Tromba Vector Calculus n-dimensional Euclidean Space and Matrices Definition of n space As was learned in Math b, a point in Euclidean three space can be thought of

More information

26. Determinants I. 1. Prehistory

26. Determinants I. 1. Prehistory 26. Determinants I 26.1 Prehistory 26.2 Definitions 26.3 Uniqueness and other properties 26.4 Existence Both as a careful review of a more pedestrian viewpoint, and as a transition to a coordinate-independent

More information

5.3 The Cross Product in R 3

5.3 The Cross Product in R 3 53 The Cross Product in R 3 Definition 531 Let u = [u 1, u 2, u 3 ] and v = [v 1, v 2, v 3 ] Then the vector given by [u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ] is called the cross product (or

More information

Au = = = 3u. Aw = = = 2w. so the action of A on u and w is very easy to picture: it simply amounts to a stretching by 3 and 2, respectively.

Au = = = 3u. Aw = = = 2w. so the action of A on u and w is very easy to picture: it simply amounts to a stretching by 3 and 2, respectively. Chapter 7 Eigenvalues and Eigenvectors In this last chapter of our exploration of Linear Algebra we will revisit eigenvalues and eigenvectors of matrices, concepts that were already introduced in Geometry

More information

Notes on Linear Algebra. Peter J. Cameron

Notes on Linear Algebra. Peter J. Cameron Notes on Linear Algebra Peter J. Cameron ii Preface Linear algebra has two aspects. Abstractly, it is the study of vector spaces over fields, and their linear maps and bilinear forms. Concretely, it is

More information

Lecture 4: Partitioned Matrices and Determinants

Lecture 4: Partitioned Matrices and Determinants Lecture 4: Partitioned Matrices and Determinants 1 Elementary row operations Recall the elementary operations on the rows of a matrix, equivalent to premultiplying by an elementary matrix E: (1) multiplying

More information

MAT188H1S Lec0101 Burbulla

MAT188H1S Lec0101 Burbulla Winter 206 Linear Transformations A linear transformation T : R m R n is a function that takes vectors in R m to vectors in R n such that and T (u + v) T (u) + T (v) T (k v) k T (v), for all vectors u

More information

MATHEMATICS FOR ENGINEERS BASIC MATRIX THEORY TUTORIAL 2

MATHEMATICS FOR ENGINEERS BASIC MATRIX THEORY TUTORIAL 2 MATHEMATICS FO ENGINEES BASIC MATIX THEOY TUTOIAL This is the second of two tutorials on matrix theory. On completion you should be able to do the following. Explain the general method for solving simultaneous

More information

Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix multiplication).

Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix multiplication). MAT 2 (Badger, Spring 202) LU Factorization Selected Notes September 2, 202 Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

1.2 Solving a System of Linear Equations

1.2 Solving a System of Linear Equations 1.. SOLVING A SYSTEM OF LINEAR EQUATIONS 1. Solving a System of Linear Equations 1..1 Simple Systems - Basic De nitions As noticed above, the general form of a linear system of m equations in n variables

More information

Similarity and Diagonalization. Similar Matrices

Similarity and Diagonalization. Similar Matrices MATH022 Linear Algebra Brief lecture notes 48 Similarity and Diagonalization Similar Matrices Let A and B be n n matrices. We say that A is similar to B if there is an invertible n n matrix P such that

More information

Math 312 Homework 1 Solutions

Math 312 Homework 1 Solutions Math 31 Homework 1 Solutions Last modified: July 15, 01 This homework is due on Thursday, July 1th, 01 at 1:10pm Please turn it in during class, or in my mailbox in the main math office (next to 4W1) Please

More information

Direct Methods for Solving Linear Systems. Matrix Factorization

Direct Methods for Solving Linear Systems. Matrix Factorization Direct Methods for Solving Linear Systems Matrix Factorization Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011

More information

6. Cholesky factorization

6. Cholesky factorization 6. Cholesky factorization EE103 (Fall 2011-12) triangular matrices forward and backward substitution the Cholesky factorization solving Ax = b with A positive definite inverse of a positive definite matrix

More information

Solution of Linear Systems

Solution of Linear Systems Chapter 3 Solution of Linear Systems In this chapter we study algorithms for possibly the most commonly occurring problem in scientific computing, the solution of linear systems of equations. We start

More information

NOTES ON LINEAR TRANSFORMATIONS

NOTES ON LINEAR TRANSFORMATIONS NOTES ON LINEAR TRANSFORMATIONS Definition 1. Let V and W be vector spaces. A function T : V W is a linear transformation from V to W if the following two properties hold. i T v + v = T v + T v for all

More information

Linear Algebra: Determinants, Inverses, Rank

Linear Algebra: Determinants, Inverses, Rank D Linear Algebra: Determinants, Inverses, Rank D 1 Appendix D: LINEAR ALGEBRA: DETERMINANTS, INVERSES, RANK TABLE OF CONTENTS Page D.1. Introduction D 3 D.2. Determinants D 3 D.2.1. Some Properties of

More information

by the matrix A results in a vector which is a reflection of the given

by the matrix A results in a vector which is a reflection of the given Eigenvalues & Eigenvectors Example Suppose Then So, geometrically, multiplying a vector in by the matrix A results in a vector which is a reflection of the given vector about the y-axis We observe that

More information

2x + y = 3. Since the second equation is precisely the same as the first equation, it is enough to find x and y satisfying the system

2x + y = 3. Since the second equation is precisely the same as the first equation, it is enough to find x and y satisfying the system 1. Systems of linear equations We are interested in the solutions to systems of linear equations. A linear equation is of the form 3x 5y + 2z + w = 3. The key thing is that we don t multiply the variables

More information

Operation Count; Numerical Linear Algebra

Operation Count; Numerical Linear Algebra 10 Operation Count; Numerical Linear Algebra 10.1 Introduction Many computations are limited simply by the sheer number of required additions, multiplications, or function evaluations. If floating-point

More information

Chapter 7. Matrices. Definition. An m n matrix is an array of numbers set out in m rows and n columns. Examples. ( 1 1 5 2 0 6

Chapter 7. Matrices. Definition. An m n matrix is an array of numbers set out in m rows and n columns. Examples. ( 1 1 5 2 0 6 Chapter 7 Matrices Definition An m n matrix is an array of numbers set out in m rows and n columns Examples (i ( 1 1 5 2 0 6 has 2 rows and 3 columns and so it is a 2 3 matrix (ii 1 0 7 1 2 3 3 1 is a

More information

Matrix Differentiation

Matrix Differentiation 1 Introduction Matrix Differentiation ( and some other stuff ) Randal J. Barnes Department of Civil Engineering, University of Minnesota Minneapolis, Minnesota, USA Throughout this presentation I have

More information

Solving simultaneous equations using the inverse matrix

Solving simultaneous equations using the inverse matrix Solving simultaneous equations using the inverse matrix 8.2 Introduction The power of matrix algebra is seen in the representation of a system of simultaneous linear equations as a matrix equation. Matrix

More information

Chapter 6. Linear Transformation. 6.1 Intro. to Linear Transformation

Chapter 6. Linear Transformation. 6.1 Intro. to Linear Transformation Chapter 6 Linear Transformation 6 Intro to Linear Transformation Homework: Textbook, 6 Ex, 5, 9,, 5,, 7, 9,5, 55, 57, 6(a,b), 6; page 7- In this section, we discuss linear transformations 89 9 CHAPTER

More information

T ( a i x i ) = a i T (x i ).

T ( a i x i ) = a i T (x i ). Chapter 2 Defn 1. (p. 65) Let V and W be vector spaces (over F ). We call a function T : V W a linear transformation form V to W if, for all x, y V and c F, we have (a) T (x + y) = T (x) + T (y) and (b)

More information

Chapter 2 Determinants, and Linear Independence

Chapter 2 Determinants, and Linear Independence Chapter 2 Determinants, and Linear Independence 2.1 Introduction to Determinants and Systems of Equations Determinants can be defined and studied independently of matrices, though when square matrices

More information

Elementary Matrices and The LU Factorization

Elementary Matrices and The LU Factorization lementary Matrices and The LU Factorization Definition: ny matrix obtained by performing a single elementary row operation (RO) on the identity (unit) matrix is called an elementary matrix. There are three

More information

Linear Algebra and TI 89

Linear Algebra and TI 89 Linear Algebra and TI 89 Abdul Hassen and Jay Schiffman This short manual is a quick guide to the use of TI89 for Linear Algebra. We do this in two sections. In the first section, we will go over the editing

More information

Introduction to Matrices for Engineers

Introduction to Matrices for Engineers Introduction to Matrices for Engineers C.T.J. Dodson, School of Mathematics, Manchester Universit 1 What is a Matrix? A matrix is a rectangular arra of elements, usuall numbers, e.g. 1 0-8 4 0-1 1 0 11

More information

Methods for Finding Bases

Methods for Finding Bases Methods for Finding Bases Bases for the subspaces of a matrix Row-reduction methods can be used to find bases. Let us now look at an example illustrating how to obtain bases for the row space, null space,

More information

MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set.

MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set. MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set. Vector space A vector space is a set V equipped with two operations, addition V V (x,y) x + y V and scalar

More information

Question 2: How do you solve a matrix equation using the matrix inverse?

Question 2: How do you solve a matrix equation using the matrix inverse? Question : How do you solve a matrix equation using the matrix inverse? In the previous question, we wrote systems of equations as a matrix equation AX B. In this format, the matrix A contains the coefficients

More information

Solving Systems of Linear Equations

Solving Systems of Linear Equations LECTURE 5 Solving Systems of Linear Equations Recall that we introduced the notion of matrices as a way of standardizing the expression of systems of linear equations In today s lecture I shall show how

More information

v w is orthogonal to both v and w. the three vectors v, w and v w form a right-handed set of vectors.

v w is orthogonal to both v and w. the three vectors v, w and v w form a right-handed set of vectors. 3. Cross product Definition 3.1. Let v and w be two vectors in R 3. The cross product of v and w, denoted v w, is the vector defined as follows: the length of v w is the area of the parallelogram with

More information

1 Sets and Set Notation.

1 Sets and Set Notation. LINEAR ALGEBRA MATH 27.6 SPRING 23 (COHEN) LECTURE NOTES Sets and Set Notation. Definition (Naive Definition of a Set). A set is any collection of objects, called the elements of that set. We will most

More information

Lecture 3: Finding integer solutions to systems of linear equations

Lecture 3: Finding integer solutions to systems of linear equations Lecture 3: Finding integer solutions to systems of linear equations Algorithmic Number Theory (Fall 2014) Rutgers University Swastik Kopparty Scribe: Abhishek Bhrushundi 1 Overview The goal of this lecture

More information

4: EIGENVALUES, EIGENVECTORS, DIAGONALIZATION

4: EIGENVALUES, EIGENVECTORS, DIAGONALIZATION 4: EIGENVALUES, EIGENVECTORS, DIAGONALIZATION STEVEN HEILMAN Contents 1. Review 1 2. Diagonal Matrices 1 3. Eigenvectors and Eigenvalues 2 4. Characteristic Polynomial 4 5. Diagonalizability 6 6. Appendix:

More information

1 VECTOR SPACES AND SUBSPACES

1 VECTOR SPACES AND SUBSPACES 1 VECTOR SPACES AND SUBSPACES What is a vector? Many are familiar with the concept of a vector as: Something which has magnitude and direction. an ordered pair or triple. a description for quantities such

More information

Lecture 1: Systems of Linear Equations

Lecture 1: Systems of Linear Equations MTH Elementary Matrix Algebra Professor Chao Huang Department of Mathematics and Statistics Wright State University Lecture 1 Systems of Linear Equations ² Systems of two linear equations with two variables

More information

Section 6.1 - Inner Products and Norms

Section 6.1 - Inner Products and Norms Section 6.1 - Inner Products and Norms Definition. Let V be a vector space over F {R, C}. An inner product on V is a function that assigns, to every ordered pair of vectors x and y in V, a scalar in F,

More information

Introduction to Matrix Algebra

Introduction to Matrix Algebra Psychology 7291: Multivariate Statistics (Carey) 8/27/98 Matrix Algebra - 1 Introduction to Matrix Algebra Definitions: A matrix is a collection of numbers ordered by rows and columns. It is customary

More information

4.5 Linear Dependence and Linear Independence

4.5 Linear Dependence and Linear Independence 4.5 Linear Dependence and Linear Independence 267 32. {v 1, v 2 }, where v 1, v 2 are collinear vectors in R 3. 33. Prove that if S and S are subsets of a vector space V such that S is a subset of S, then

More information

Similar matrices and Jordan form

Similar matrices and Jordan form Similar matrices and Jordan form We ve nearly covered the entire heart of linear algebra once we ve finished singular value decompositions we ll have seen all the most central topics. A T A is positive

More information

Vector Math Computer Graphics Scott D. Anderson

Vector Math Computer Graphics Scott D. Anderson Vector Math Computer Graphics Scott D. Anderson 1 Dot Product The notation v w means the dot product or scalar product or inner product of two vectors, v and w. In abstract mathematics, we can talk about

More information

Chapter 17. Orthogonal Matrices and Symmetries of Space

Chapter 17. Orthogonal Matrices and Symmetries of Space Chapter 17. Orthogonal Matrices and Symmetries of Space Take a random matrix, say 1 3 A = 4 5 6, 7 8 9 and compare the lengths of e 1 and Ae 1. The vector e 1 has length 1, while Ae 1 = (1, 4, 7) has length

More information

Vector and Matrix Norms

Vector and Matrix Norms Chapter 1 Vector and Matrix Norms 11 Vector Spaces Let F be a field (such as the real numbers, R, or complex numbers, C) with elements called scalars A Vector Space, V, over the field F is a non-empty

More information

SOLVING LINEAR SYSTEMS

SOLVING LINEAR SYSTEMS SOLVING LINEAR SYSTEMS Linear systems Ax = b occur widely in applied mathematics They occur as direct formulations of real world problems; but more often, they occur as a part of the numerical analysis

More information

1 0 5 3 3 A = 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0

1 0 5 3 3 A = 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 Solutions: Assignment 4.. Find the redundant column vectors of the given matrix A by inspection. Then find a basis of the image of A and a basis of the kernel of A. 5 A The second and third columns are

More information

University of Lille I PC first year list of exercises n 7. Review

University of Lille I PC first year list of exercises n 7. Review University of Lille I PC first year list of exercises n 7 Review Exercise Solve the following systems in 4 different ways (by substitution, by the Gauss method, by inverting the matrix of coefficients

More information

Lecture notes on linear algebra

Lecture notes on linear algebra Lecture notes on linear algebra David Lerner Department of Mathematics University of Kansas These are notes of a course given in Fall, 2007 and 2008 to the Honors sections of our elementary linear algebra

More information

MATH 551 - APPLIED MATRIX THEORY

MATH 551 - APPLIED MATRIX THEORY MATH 55 - APPLIED MATRIX THEORY FINAL TEST: SAMPLE with SOLUTIONS (25 points NAME: PROBLEM (3 points A web of 5 pages is described by a directed graph whose matrix is given by A Do the following ( points

More information

5.5. Solving linear systems by the elimination method

5.5. Solving linear systems by the elimination method 55 Solving linear systems by the elimination method Equivalent systems The major technique of solving systems of equations is changing the original problem into another one which is of an easier to solve

More information

28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z

28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE. v x. u y v z u z v y u y u z. v y v z 28 CHAPTER 1. VECTORS AND THE GEOMETRY OF SPACE 1.4 Cross Product 1.4.1 Definitions The cross product is the second multiplication operation between vectors we will study. The goal behind the definition

More information

MATH 304 Linear Algebra Lecture 18: Rank and nullity of a matrix.

MATH 304 Linear Algebra Lecture 18: Rank and nullity of a matrix. MATH 304 Linear Algebra Lecture 18: Rank and nullity of a matrix. Nullspace Let A = (a ij ) be an m n matrix. Definition. The nullspace of the matrix A, denoted N(A), is the set of all n-dimensional column

More information

F Matrix Calculus F 1

F Matrix Calculus F 1 F Matrix Calculus F 1 Appendix F: MATRIX CALCULUS TABLE OF CONTENTS Page F1 Introduction F 3 F2 The Derivatives of Vector Functions F 3 F21 Derivative of Vector with Respect to Vector F 3 F22 Derivative

More information

DETERMINANTS IN THE KRONECKER PRODUCT OF MATRICES: THE INCIDENCE MATRIX OF A COMPLETE GRAPH

DETERMINANTS IN THE KRONECKER PRODUCT OF MATRICES: THE INCIDENCE MATRIX OF A COMPLETE GRAPH DETERMINANTS IN THE KRONECKER PRODUCT OF MATRICES: THE INCIDENCE MATRIX OF A COMPLETE GRAPH CHRISTOPHER RH HANUSA AND THOMAS ZASLAVSKY Abstract We investigate the least common multiple of all subdeterminants,

More information

Factorization Theorems

Factorization Theorems Chapter 7 Factorization Theorems This chapter highlights a few of the many factorization theorems for matrices While some factorization results are relatively direct, others are iterative While some factorization

More information

160 CHAPTER 4. VECTOR SPACES

160 CHAPTER 4. VECTOR SPACES 160 CHAPTER 4. VECTOR SPACES 4. Rank and Nullity In this section, we look at relationships between the row space, column space, null space of a matrix and its transpose. We will derive fundamental results

More information

Linearly Independent Sets and Linearly Dependent Sets

Linearly Independent Sets and Linearly Dependent Sets These notes closely follow the presentation of the material given in David C. Lay s textbook Linear Algebra and its Applications (3rd edition). These notes are intended primarily for in-class presentation

More information

Vector Spaces 4.4 Spanning and Independence

Vector Spaces 4.4 Spanning and Independence Vector Spaces 4.4 and Independence October 18 Goals Discuss two important basic concepts: Define linear combination of vectors. Define Span(S) of a set S of vectors. Define linear Independence of a set

More information

Continued Fractions and the Euclidean Algorithm

Continued Fractions and the Euclidean Algorithm Continued Fractions and the Euclidean Algorithm Lecture notes prepared for MATH 326, Spring 997 Department of Mathematics and Statistics University at Albany William F Hammond Table of Contents Introduction

More information

α = u v. In other words, Orthogonal Projection

α = u v. In other words, Orthogonal Projection Orthogonal Projection Given any nonzero vector v, it is possible to decompose an arbitrary vector u into a component that points in the direction of v and one that points in a direction orthogonal to v

More information

THREE DIMENSIONAL GEOMETRY

THREE DIMENSIONAL GEOMETRY Chapter 8 THREE DIMENSIONAL GEOMETRY 8.1 Introduction In this chapter we present a vector algebra approach to three dimensional geometry. The aim is to present standard properties of lines and planes,

More information

The Singular Value Decomposition in Symmetric (Löwdin) Orthogonalization and Data Compression

The Singular Value Decomposition in Symmetric (Löwdin) Orthogonalization and Data Compression The Singular Value Decomposition in Symmetric (Löwdin) Orthogonalization and Data Compression The SVD is the most generally applicable of the orthogonal-diagonal-orthogonal type matrix decompositions Every

More information

Recall that two vectors in are perpendicular or orthogonal provided that their dot

Recall that two vectors in are perpendicular or orthogonal provided that their dot Orthogonal Complements and Projections Recall that two vectors in are perpendicular or orthogonal provided that their dot product vanishes That is, if and only if Example 1 The vectors in are orthogonal

More information

Eigenvalues and Eigenvectors

Eigenvalues and Eigenvectors Chapter 6 Eigenvalues and Eigenvectors 6. Introduction to Eigenvalues Linear equations Ax D b come from steady state problems. Eigenvalues have their greatest importance in dynamic problems. The solution

More information

Chapter 19. General Matrices. An n m matrix is an array. a 11 a 12 a 1m a 21 a 22 a 2m A = a n1 a n2 a nm. The matrix A has n row vectors

Chapter 19. General Matrices. An n m matrix is an array. a 11 a 12 a 1m a 21 a 22 a 2m A = a n1 a n2 a nm. The matrix A has n row vectors Chapter 9. General Matrices An n m matrix is an array a a a m a a a m... = [a ij]. a n a n a nm The matrix A has n row vectors and m column vectors row i (A) = [a i, a i,..., a im ] R m a j a j a nj col

More information

Matrices and Linear Algebra

Matrices and Linear Algebra Chapter 2 Matrices and Linear Algebra 2. Basics Definition 2... A matrix is an m n array of scalars from a given field F. The individual values in the matrix are called entries. Examples. 2 3 A = 2 4 2

More information

8.2. Solution by Inverse Matrix Method. Introduction. Prerequisites. Learning Outcomes

8.2. Solution by Inverse Matrix Method. Introduction. Prerequisites. Learning Outcomes Solution by Inverse Matrix Method 8.2 Introduction The power of matrix algebra is seen in the representation of a system of simultaneous linear equations as a matrix equation. Matrix algebra allows us

More information

7 Gaussian Elimination and LU Factorization

7 Gaussian Elimination and LU Factorization 7 Gaussian Elimination and LU Factorization In this final section on matrix factorization methods for solving Ax = b we want to take a closer look at Gaussian elimination (probably the best known method

More information