Chapter 2: Matrices and Linear Systems

Size: px
Start display at page:

Download "Chapter 2: Matrices and Linear Systems"

Transcription

1 Chapter 2: Matrices and Linear Systems Paul Pearson

2 Outline Matrices Linear systems Row operations Inverses Determinants

3 Matrices Definition An m n matrix A = (a ij ) is a rectangular array of real numbers with m rows and n columns: a 11 a 12 a 1n a 21 a 22 a 2n A = (a ij ) = a m1 a m2 a mn The row index of a ij is i, and the column index of a ij is j. The set of all m n matrices with real entries is denoted M m,n (R). When m = n, this notation is shortened to M n (R).

4 Matrix addition and scalar mult. Definition Let A = (a ij ) and B = (b ij ) be m n matrices, and let α R. The operations of matrix addition and scalar multiplication are defined by adding corresponding entries and scaling all entries as follows: 1. A + B = (a ij + b ij ) 2. αa = (αa ij ) Example [ ] [ ] = = [ ]

5 Matrix addition and scalar mult. Theorem Let A, B, C M m,n (R) and α, β R. Let 0 denote the m n zero matrix A = A = A 3. α 0 = 0 4. A + B = B + A 5. (A + B) + C = A + (B + C) 6. (α + β)a = αa + βa 7. α(a + B) = αa + αb 8. (αβ)a = α(βa)

6 Matrix multiplication Definition Let A M m,n (R) and B M n,k (R). The product matrix AB is the m k matrix whose (i, j)-entry is the dot product (Row i of A) (Column j of B) Example Compute by hand: A B AB ] [ = [ rows, 3 cols 3 rows, 4 cols 2 rows, 4 cols ]

7 Matrix multiplication Definition Let A M m,n (R) and B M n,k (R). The product matrix AB is the m k matrix whose (i, j)-entry is the dot product (Row i of A) (Column j of B) Example Compute by hand: A B AB ] [ = [ rows, 3 cols 3 rows, 4 cols 2 rows, 4 cols ]

8 Matrix multiplication Example Does AB = BA? [ ] [ ] [ ] [ ] = = [ ] [ ] [ ] [ ] = = [ ] [ ] [ ] [ ] = =

9 Matrix multiplication Example Does AB = BA? Not always, so we write AB BA. [ ] [ ] [ ] [ ] = = [ ] [ ] [ ] [ ] [ ] [ ] = = [ ] [ ] [ ] [ ] [ ] [ ] = [ ] 3. 7 = DNE

10 Matrix operations Definition I n is the n n identity matrix with all diagonal entries equal to 1 and all other entries equal to 0. Theorem Let A M m,n (R), B M n,k (R) and α R. 1. A0 n k = 0 m k 2. I m A = A and AI n = A. In particular, if A is an n n matrix, then I n A = AI n = A. 3. If C M k,l (R), then A(BC) = (AB)C. 4. If C M n,k (R), then A(B + C) = AB + AC. 5. A(αB) = α(ab) = (αa)b.

11 Matrix operations If A = [ then by hand computation [ ] [ I 2 A = AI 3 = A0 3 2 = [ ] [ AI 2 = ] [ ] = = = ] [ ], [ [ [ ] = DNE ] = A, ] = A, ] = 0 2 2,

12 Matrix operations If [ ] A =, B = then by hand computation A(B + C) = = = AB + AC = = = , C = 2 1 [ ] [ ] [ ] [ ] [ ] 2 1 [ ] [ ] 2 [ 1 ] ,

13 Matrix operations Suppose Then: A = [ ] [ 1, b 1 = 1 ] [ 2, b 2 = 2 Ab 1 = Ab 2 = Ab 3 = A(b 1 b 2 b 3 ) = A((b 1 0 0) + (0 b 2 0) + (0 0 b 3 )) = ] [ 3, b 3 = 3 ].

14 Matrix operations Suppose A = [ ] [ 1, b 1 = 1 ] [ 2, b 2 = 2 Then: [ ] [ ] 3 6 Ab 1 =, Ab 7 2 =, Ab 14 3 = [ ] A(b 1 b 2 b 3 ) = [ 9 21 A((b 1 0 0) + (0 b 2 0) + (0 0 b 3 )) = In general, ] [ 3, b 3 = 3 ]. [ AB = A(b 1 b n ) = (Ab 1 Ab n ). ]. ].

15 Matrix transpose Definition 1. The transpose of the matrix A = (a ij ) is the matrix A T = (a ji ), i.e., rows and columns swap: T = T and = 2. A square matrix A such that A T = A is called a symmetric matrix. 3. A square matrix A such that A T = A is called a skew-symmetric matrix. Theorem Let A M m,n (R) and α R. 1. (A T ) T = A. 2. If B M m,n (R), then (A + B) T = A T + B T. 3. (αa) T = αa T.

16 Matrix transpose Theorem If A M m,n (R) and B M n,k (R), then (AB) T = B T A T. Proof. The (i, j) entry of (AB) T is (ab) T i,j = (ab) j,i = (row j of A ) (column i of B). The (i, j) entry of B T A T is (row i of B T ) (column j of A T ) = (column i of B ) (row j of A). Remark AB BA, but (AB) T = B T A T is always true.

17 Matrix transpose Example Suppose Then A = [ ], B = (AB) T = B T A T =

18 Matrix transpose Example Suppose A = [ ], B = Then B T A T = (AB) T = [ [ ] ] T = [ = ]. [ ].

19 Triangular and diagonal matrices Suppose A = (a ij ) is an n n square matrix. The diagonal entries of A are a 11, a 22,..., a nn. The matrix A is diagonal if all non-diagonal entries are zero. upper triangular if all entries below the diagonal are zero. lower triangular if all entries above the diagonal are zero. Example , , If a matrix is both lower and upper triangular it is 2. The transpose of a lower triangular matrix is

20 Triangular and diagonal matrices Suppose A = (a ij ) is an n n square matrix. The diagonal entries of A are a 11, a 22,..., a nn. The matrix A is diagonal if all non-diagonal entries are zero. upper triangular if all entries below the diagonal are zero. lower triangular if all entries above the diagonal are zero. Example , , If a matrix is both lower and upper triangular it is diagonal. 2. The transpose of a lower triangular matrix is an upper triangular matrix.

21 Outline Matrices Linear systems Row operations Inverses Determinants

22 Systems of Linear Equations Definition An m n system of linear equations in variables x 1, x 2,..., x n is a list of m equations of the form a 11 x 1 + a 12 x a 1n x n = b 1 a 21 x 1 + a 22 x a 2n x n = b 2.. a m1 x 1 + a m2 x a mn x n = b m Any point (x 1, x 2,..., x n ) which satisfies all the equations in the system is called a solution of the system. A system that has at least one solution is called consistent, while a system with no solutions is called inconsistent.

23 Systems of linear equations Each graph below is the graph of a system of three linear equations in three unknowns. Determine which systems are consistent and inconsistent and the dimension of the solution set.

24 Systems of Linear Equations Definition We can represent a linear system as Ax = b: a 11 a 12 a 1n a 21 a 22 a 2n..... } a m1 a m2 {{ a mn } A x 1 x 2. x n }{{} x = b 1 b 2. b m } {{ } b Or, more succinctly, we can write the augmented matrix (A b): a 11 a 12 a 1n b 1 a 21 a 22 a 2n b a m1 a m2 a mn b m

25 Systems of linear equations Exercise 1. Find an equation for the plane P 1 in R 3 passing through the origin and parallel to 6y 2x + 3z = 100. Find an equation for the plane P 2 parallel to both 2i + 3j and 0, 1, 0 passing through the point (0, 0, 2). 2. Write the equations for P 1 and P 2 as a linear system and as an augmented matrix. 3. Solve the linear system.

26 Systems of linear equations Exercise 1. Find an equation for the plane P 1 in R 3 passing through the origin and parallel to 6y 2x + 3z = 100. Find an equation for the plane P 2 parallel to both 2i + 3j and 0, 1, 0 passing through the point (0, 0, 2). 2. Write the equations for P 1 and P 2 as a linear system and as an augmented matrix. 3. Solve the linear system. { 2x + 6y + 3z = 0, z = 2.

27 Outline Matrices Linear systems Row operations Inverses Determinants

28 Solving linear systems The linear system { x + y = 1, x + y = 4. can be solved with three operations that leave the solution set unchanged: 1. Multiplying a row by a nonzero constant (e.g., x + y = 4 2x + 2y = 8) 2. Swapping rows (order doesn t matter) 3. Adding rows together (if (x, y) satisfies both x + y = 1 and x + y = 4, then it satisfies ( x + y) + (x + y) = 1 + 4, which reduces to 2y = 5) Since each of these operations affect only the coefficients, we can store all the pertinent information about the system in an array of numbers called a matrix and record the effects of these operations in matrices as we progress toward a solution.

29 Elementary row operations Definition Elementary Row Operations (EROs) 1. αr i R i 2. R i R j 3. R i + αr j R i Definition Inverses of Elementary Row Operations 1. e : 1 α R i R i 2. e : R i R j 3. e : R i αr j R i Remark Solution sets to linear systems are unchanged by EROs.

30 Solving linear systems { 2x + y = 6 3x + 4y = 12 y L1 L2 x

31 Solving linear systems y { 2x + y = 6 3x + 4y = L2 4 L1 x y 3R 1 R 1 2R 2 R 2 { 6x + 3y = 18 6x 8y = L2 4 L1 x

32 Solving linear systems y { 2x + y = 6 3x + 4y = L2 4 L1 x y 3R 1 R 1 2R 2 R 2 { 6x + 3y = 18 6x 8y = L2 4 L1 x y R 1 + R 2 R 2 { 6x + 3y = 18 0x 5y = L2 L3 4 L1 x

33 Solving linear systems 1 3 R 1 R 1 { 2x + y = 6 0x 5y = 6 y L1 L2 L3 x

34 Solving linear systems 1 3 R 1 R 1 { 2x + y = 6 0x 5y = 6 y L1 L2 L3 x y 4 L1 L4 5R 1 + R 2 R 1 { 10x + 0y = 24 0x 5y = L2 L3 x

35 Solving linear systems 1 3 R 1 R 1 { 2x + y = 6 0x 5y = 6 y L1 L2 L3 x y 4 L1 L4 5R 1 + R 2 R 1 { 10x + 0y = 24 0x 5y = L2 L3 x y 4 L1 L R 1 R R 2 R 2 { 1x + 0y = 2.4 0x + 1y = L2 L3 x

36 Solving linear systems ( )

37 Solving linear systems ( ) 3R 1 R 1 2R 2 R ( )

38 Solving linear systems ( ) 3R 1 R 1 2R 2 R 2 R 1 + R 2 R ( 6 3 ) ( 6 3 )

39 Solving linear systems ( ) 3R 1 R 1 2R 2 R 2 R 1 + R 2 R ( ( 6 3 ) R 1 R 1 ( ) )

40 Solving linear systems ( R 1 R 1 2R 2 R 2 R 1 + R 2 R 2 ) ( 6 3 ) ( 6 3 ) R 1 R 1 ( R 1 + R 2 R 1 ( ) )

41 Solving linear systems ( R 1 R 1 2R 2 R 2 R 1 + R 2 R 2 ) ( 6 3 ) ( 6 3 ) R 1 R 1 ( R 1 + R 2 R 1 ( 10 0 ) R 1 R 1 ( 1 0 ) R 2 R )

42 EROs and elementary matrices Definition Any ERO e may be represented as a matrix E = e(i) called an elementary matrix. The result of applying the ERO e to the matrix A is the same as the matrix product EA. Example The ERO e : R 1 + 2R 2 R 1 applied to A = is the same as EA, where E = e(i 3 ) =

43 Reduced row echelon form Definition A matrix A M m,n (R) is in reduced row echelon form (rref) if: 1. The leading entry in each nonzero row is All rows of zeros occur at the bottom of the matrix. 3. Every leading 1 occurs farther to the right of the leading 1 in the previous row. 4. Every entry above and below a leading 1 is equal to 0. Example Suppose represents any real number. RREF could look like: ,

44 Gauss-Jordan Elimination Given a matrix A, its reduced row echelon form can be constructed by: 1. Starting with i = 1, find the row R j with i j whose leading entry is farthest to the left. If j i, do R i R j. 2. If the leading entry of R i is α 1, do (1/α)R i R i. This establishes a leading 1 in R i. 3. Make all entries above and below a leading 1 equal to 0 by doing EROs. 4. Go to the next row and repeat the process until the matrix is in rref.

45 Gauss-Jordan Elimination

46 Gauss-Jordan Elimination R 1 + R 2 R

47 Gauss-Jordan Elimination R 1 + R 2 R 2 3R 1 + R 3 R

48 Gauss-Jordan Elimination R 1 + R 2 R 2 3R 1 + R 3 R 3 R 2 + R 3 R

49 Gauss-Jordan Elimination R 1 + R 2 R 2 3R 1 + R 3 R 3 R 2 + R 3 R 3 R 1 2R 2 R

50 Gauss-Jordan Elimination If possible, solve the system x + 2y = 1, 2x 3y = 1, 3x + 5y = 0.

51 Gauss-Jordan Elimination If possible, solve the system x + 2y = 1, 2x 3y = 1, 3x + 5y = 0. Since rref = the system is consistent and the three given lines in R 2 intersect at the point (x, y) = ( 5, 3). There is only one solution (it is the unique solution) and it is zero dimensional.

52 Gauss-Jordan Elimination If possible, solve the system x + 2y + z = 0, 2x 3y + z = 0, 3x + 5y = 0.

53 Gauss-Jordan Elimination If possible, solve the system x + 2y + z = 0, 2x 3y + z = 0, 3x + 5y = 0. Since rref = the system is consistent and the three given planes in R 3 intersect. The first two rows say x 5z = 0 and y + 3z = 0. Since there is no pivot in the third column, z is free and z = z. Thus, the solution set is x = 5z, y = 3z, and z = z, i.e., the 1D line thru the origin (x, y, z) = (5z, 3z, z) = z 5, 3, 1 where z is any real number.

54 Reduced Row Echelon Form 1. A leading 1 in a row is also called a pivot. 2. A column without a pivot is called a free column and the variable it represents is called a free variable. The number of free variables determines the dimension of the solution set. 3. If a pivot occurs in the augmentation column, the system has no solution and is said to be inconsistent. Exercise 1. Solve Ax = 0 given A = EROs rref(a) = B = EROs rref(b) =

55 RREF and Gauss-Jordan Elimination Definition 1. A system of linear equations Ax = 0 is called a homogeneous system. 2. The solution set X H = {x Ax = 0} of a homogeneous system is called the homogeneous solution set. Theorem 1. 0 X H 2. For all x 1, x 2 X H, x 1 + x 2 X H 3. For all x X H and all α R, αx X H Remark These properties say that X H is a subspace. We ll study subspaces in chapter 3.

56 Solution sets Suppose A M m,n (R) and b R n. The solution set for a consistent homogeneous linear system Ax = 0 is X H = {x Ax = 0}. The solution set for a consistent non-homogeneous linear system Ax = b is X G = p + X H = {x Ax = b}, a translation of X H by a particular solution p (i.e., Ap = b). What happens if p X H? z p + XH = {x Ax = b} z p + XH = {x Ax = b} p + tv p p XH = {x Ax = 0} tv XH = {x Ax = 0} v y y x x

57 Systems of Linear Equations Write the system of linear equations 3x + y 3z = 2 x + y z = 0 x z = 1 as an augmented matrix (A b), solve the system by row reduction, and write the solution in the form p + X H.

58 Systems of Linear Equations Write the system of linear equations 3x + y 3z = 2 x + y z = 0 x z = 1 as an augmented matrix (A b), solve the system by row reduction, and write the solution in the form p + X H. z rref(a b) = X H p + X H v v p y x

59 Solving linear systems

60 Solving linear systems R 1 R

61 Solving linear systems R 1 R 3 R 1 + R 2 R

62 Solving linear systems R 1 R 3 R 1 + R 2 R 2 3R 1 + R 3 R

63 Solving linear systems R 1 R 3 R 1 + R 2 R 2 3R 1 + R 3 R 3 R 2 + R 3 R

64 Outline Matrices Linear systems Row operations Inverses Determinants

65 Finding inverses = A

66 Finding inverses 3R 1 + R 2 R = A = E 1 A

67 Finding inverses 3R 1 + R 2 R 2 2R 1 + R 3 R = A = E 1 A = E 2 E 1 A

68 Finding inverses 3R 1 + R 2 R 2 2R 1 + R 3 R 3 R 1 4R 3 R = A = E 1 A = E 2 E 1 A = E 3 E 2 E 1 A = EA

69 Finding inverses 3R 1 + R 2 R 2 2R 1 + R 3 R 3 R 1 4R 3 R = A = E 1 A = E 2 E 1 A = E 3 E 2 E 1 A = EA Therefore, I = EA. How do we find E = E 3 E 2 E 1?

70 Finding inverses E is the result of how the row operations transform I = I 0 0 1

71 Finding inverses E is the result of how the row operations transform I = I R 1 + R 2 R = E

72 Finding inverses E is the result of how the row operations transform I = I R 1 + R 2 R = E R 1 + R 3 R = E 2 E

73 Finding inverses E is the result of how the row operations transform I = I R 1 + R 2 R = E R 1 + R 3 R = E 2 E R 1 4R 3 R = E 3 E 2 E 1 = E 2 0 1

74 Finding Inverses Definition Given an n n matrix A with real entries, we say that A is invertible if there exists an n n matrix E with real entries such that EA = I, in which case we call E an inverse of A and write E = A 1. Theorem Given A M n,n (R), A 1 exists if there is some sequence of row operations that reduces A to the identity matrix (i.e., if rref(a) = I). Applying those same row operations to I yields E = A 1, hence applying those row operations simultaneously to A and I gives a method for finding A 1 : (A I) EROs (I A 1 ). If rref(a) I, then A 1 does not exist.

75 Using inverses Exercise 1. Given E and A below, verify that E is an inverse of A. E = , A = 2. Find a general formula for the dot product (row i of E) (column j of A). 3. Find AE. Is A an inverse of E? 4. Find a general formula for the dot product (row i of A) (column j of E)

76 Using inverses Exercise Let A = , and E = A 1 = Use E = A 1 to find the intersection of the planes x + 4z = 2, 3x + y + 12z = 1, and 2x + 7z = If b = 2, 1, 3, use E = A 1 to solve Ax = b for x. 3. If b is any vector in R 3, find the general solution to the linear system Ax = b If B = 1 10, solve AX = B If B is any matrix in M 3,k (R), find the general solution to AX = B.

77 Using inverses Exercise 1. If possible, find the inverse of A = What is the solution set X H to the homogeneous linear system Ax = 0? Is B = invertible? If so, find its inverse What is the solution set X H to the homogeneous linear system Bx = 0? 5. Conjecture a relationship between invertible matrices and homogeneous solution sets..

78 Computing inverses Theorem ( ) a b When ad bc 0, the matrix A = is invertible and its c d inverse is ( ) A 1 1 d b =. ad bc c a Example The inverse of A = A 1 = 1 5 ( ( ) is ) = ( ).

79 Properties of inverses Theorem Suppose the matrices below are all n n invertible matrices with real entries. 1. (A 1 ) 1 = A 2. (AB) 1 = B 1 A 1 3. (A 1 A 2 A k ) 1 = A 1 k A 1 2 A 1 1 Theorem Let A M n (R) be invertible. 1. If B M n,k (R) and AB = 0, then B = 0 2. If C M m,n (R) and CA = 0, then C = 0 3. If B, C M n,k (R) and AB = AC, then B = C 4. If B, C M m,n (R) and BA = CA, then B = C

80 Using inverses Exercise Solve A T + XB = C, where A = ( ) ( 1 1, B = 3 2 ), C =

81 Using inverses Exercise Solve A T + XB = C, where A = ( ) ( 1 1, B = 3 2 ), C = Since XB = C A T, it follows that X = (C A T )B 1 and thus X =

82 Outline Matrices Linear systems Row operations Inverses Determinants

83 Computing determinants Definition ( a b Let A = c d ). Then det(a) = A = ad bc. Theorem Let A = (a ij ), and let A ij denote the ij-minor of A obtained by deleting the ith row and jth column of A. Then det(a) = ( 1) i+j a ij det A ij where the sum is taken from j = 1 to j = n if expanding along row i and from i = 1 to i = n if expanding along column j. The quantities det(a ij ) are (n 1) (n 1) determinants, and this process can be repeated until only determinants of 2 2 matrices remain.

84 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

85 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

86 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

87 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

88 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

89 Computing determinants Alternating signs: Minors of A = a 1,1 a 1,2 a 1,3 a 2,1 a 2,2 a 2,3 a 3,1 a 3,2 a 3,3 a det(a)=+a 2,2 a 2,3 1,1 a 3,2 a 3,3 a 1,2 a 2,1 a 2,3 a 3,1 a 3,3 + a 1,3 a 2,1 a 2,2 a 3,1 a 3,2 = a 1,2 a 2,1 a 2,3 a 3,1 a 3, a 2,2 a 1,1 a 1,3 a 3,1 a 3,3 a 3,2 a 1,1 a 1,3 a 2,1 a 2,3

90 Computing determinants Theorem Let A M n,n (R). Then the value of det(a) is the same regardless of the choice of row or column to expand over at each stage of the algorithm. Theorem Given A M n,n (R), det(a) = det(a T ). Proof. (Rough sketch:) Calculating det(a) by expanding along the top row of A is exactly the same as calculating det(a T ) by expanding along the leftmost column of A T.

91 Computing determinants Example Compute det Exercise Compute det

92 Computing determinants Example Compute det = 20 Exercise Compute det = 3

93 Determinants geometrically x 2 x Ae 2 e A = 2 x x 1 e 1 Ae 1 ( ) 0 0 = ( 0 ) 1 e 1 = ( 0 ) 0 e 2 = 1( ) 1 e 1 + e 2 = 1 ( 2 0 det 0 3 ) = 6 ( ) 0 A0 = ( 0 ) 2 Ae 1 = ( 0 ) 0 Ae 2 = 3( ) 2 A(e 1 + e 2) = 3

94 Determinants geometrically x 2 x Ae 2 e A = 2 x x 1 e 1 Ae 1 ( ) 0 0 = ( 0 ) 1 e 1 = ( 0 ) 0 e 2 = 1( ) 1 e 1 + e 2 = 1 ( 2 0 det 0 3 ) = 6 ( ) 0 A0 = ( 0 ) 2 Ae 1 = ( 0) 0 Ae 2 = 3( ) 2 A(e 1 + e 2) = 3

95 Determinants geometrically x 2 x e A = 2 x Ae 1 x 1 e 1 Ae 2 ( ) 0 0 = ( 0 ) 1 e 1 = ( 0 ) 0 e 2 = 1( ) 1 e 1 + e 2 = 1 ( 2 0 det 0 3 ) = 6 ( ) 0 A0 = ( 0 ) 2 Ae 1 = ( 0 ) 0 Ae 2 = 3 ( ) 2 A(e 1 + e 2) = 3

96 Determinants geometrically x 2 x e A = 2 x Ae 1 x 1 e 1 Ae 2 ( ) 0 0 = ( 0 ) 1 e 1 = ( 0 ) 0 e 2 = 1( ) 1 e 1 + e 2 = 1 ( 2 0 det 0 3 ) = 6 ( ) 0 A0 = ( 0 ) 2 Ae 1 = ( 0 ) 0 Ae 2 = 3 ( ) 2 A(e 1 + e 2) = 3

97 Determinants geometrically e 2 e 1 A = a c = (a b d 1 a 2 ) Ae2 = a2 = ( ) c d n = ( ) b a p Ae1 = a1 = ( ) a b Note that n = b, a is perpendicular to a 1 = a, b. The signed length of p is the component of a 2 along n, comp n a 2 = b, a c, d b, a so the signed area of the parallelogram is = ad bc b, a, ad bc Signed area = (base)(height) = a, b = ad bc. b, a

98 Determinants geometrically z z x e 3 A = (a 1 a 2 a 3 ) e 1 e 2 y = a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 x Ae 3 = a 3 Ae 2 = a 2 y Ae 1 = a 1 Using geometry, projections, and properties of, we showed that the triple scalar product a 1 (a 2 a 3 ) is the volume the parallelepiped formed by a 1, a 2, and a 3. It is easy to verify that det(a) = a 1 (a 2 a 3 ), so Signed volume = det(a) = a 1 (a 2 a 3 ). The linear function f : R 3 R 3 defined by f (x) = Ax has magnification factor det(a), i.e., one cubic unit of volume gets mapped to det(a) cubic units of signed volume.

99 Determinants geometrically More generally, a matrix A M n,n (R) defines a linear function f : R n R n by f (x) = Ax, and the determinant of A is the signed magnification factor for f : det(a) = signed area (or volume) of output region signed area (or volume) of input region, where we use area when n = 2, volume when n = 3, and hypervolume when n 4. The sign of det(a) is determined by the number of reflections in the linear transformation (e.g., if a right-handed coordinate system in the input space gets mapped to a left-handed coordinate system in the output space, then the sign of det(a) is negative).

100 Geometry of determinants x 2 x 2 Ae1 x 2 A 2 e 2 e 2 x 1 A x 1 e 1 A A 2 e 1 x 1 Ae 2 Suppose f (x) = Ax. 1. Find a formula for f (x). 2. Describe how f and f 2 transform the unit square (e.g., dilation, reflection, rotation, shear, projection, etc.). 3. Find the signed magnification factor for f, f 2, f 3, and f k. 4. Find a formula for f 1, if possible. 5. Find the signed magnification factor for f 1 and f k. What is det(a 1 )?

101 Geometry of determinants x 2 x 2 x 2 Ae 2 A 2 e 2 e 2 x 1 A x 1 A x 1 e 1 Ae 1 A 2 e 1 Suppose f (x) = Ax. 1. Find a formula for f (x). 2. Describe how f and f 2 transform the unit square (e.g., dilation, reflection, rotation, shear, projection, etc.). 3. Find the signed magnification factor for f, f 2, f 3, and f k. 4. Find a formula for f 1, if possible. 5. Find the signed magnification factor for f 1 and f k. What is det(a 1 )?

102 Geometry of determinants 1. Find a nonzero 2 2 matrix A = (a 1 a 2 ) with real entries such that det(a) = 0. What is the geometric relationship between the column vectors a 1 and a 2? 2. If A = (a 1 a 2 a 3 ) is in M 3,3 (R) and det(a) = 0, what is the geometric relationship among the column vectors a 1, a 2, and a 3? 3. Suppose a linear function f : R 3 R 3 defined by f (x) = Ax for some A M 3,3 (R) maps a sphere of radius 3 in the input space to an ellipsoid with volume 7 in the output space. What can you say about the determinant of A?

103 Geometry of determinants 1. Suppose A = , B = Since det(a) = 3, what is det(b)? 2. Suppose A = (a 1 a 2 a 3 ) is in M 3,3 (R) has det(a) = 3. What are det(a 2 a 1 a 3 ), det(a 2 a 3 a 1 ), det(2a 1 5a 2 a 3 ), and det(5a)? 3. Find the area of the hexagon with side length 1.

104 Properties of determinants Theorem Let A, B M n,n (R). 1. det(a) = det(a T ). 2. det(ab) = (deta)(detb). 3. A is invertible if and only if det(a) 0, in which case det(a 1 ) = 1 det(a). 4. If A = (a ij ) is an upper-triangular, lower-triangular, or diagonal matrix, then det(a) = a 11 a 22 a nn. 5. If A has a row or column of zeros, then det(a) = For all n 1, det(i n ) = 1.

IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET

IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET This is a (not quite comprehensive) list of definitions and theorems given in Math 1553. Pay particular attention to the ones in red. Study Tip For each

More information

Matrices and Linear Algebra

Matrices and Linear Algebra Contents Quantitative methods for Economics and Business University of Ferrara Academic year 2017-2018 Contents 1 Basics 2 3 4 5 Contents 1 Basics 2 3 4 5 Contents 1 Basics 2 3 4 5 Contents 1 Basics 2

More information

IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET

IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET IMPORTANT DEFINITIONS AND THEOREMS REFERENCE SHEET This is a (not quite comprehensive) list of definitions and theorems given in Math 1553. Pay particular attention to the ones in red. Study Tip For each

More information

Linear Algebra: Lecture notes from Kolman and Hill 9th edition.

Linear Algebra: Lecture notes from Kolman and Hill 9th edition. Linear Algebra: Lecture notes from Kolman and Hill 9th edition Taylan Şengül March 20, 2019 Please let me know of any mistakes in these notes Contents Week 1 1 11 Systems of Linear Equations 1 12 Matrices

More information

Matrices and systems of linear equations

Matrices and systems of linear equations Matrices and systems of linear equations Samy Tindel Purdue University Differential equations and linear algebra - MA 262 Taken from Differential equations and linear algebra by Goode and Annin Samy T.

More information

Linear Algebra. Matrices Operations. Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0.

Linear Algebra. Matrices Operations. Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0. Matrices Operations Linear Algebra Consider, for example, a system of equations such as x + 2y z + 4w = 0, 3x 4y + 2z 6w = 0, x 3y 2z + w = 0 The rectangular array 1 2 1 4 3 4 2 6 1 3 2 1 in which the

More information

This MUST hold matrix multiplication satisfies the distributive property.

This MUST hold matrix multiplication satisfies the distributive property. The columns of AB are combinations of the columns of A. The reason is that each column of AB equals A times the corresponding column of B. But that is a linear combination of the columns of A with coefficients

More information

Linear Systems and Matrices

Linear Systems and Matrices Department of Mathematics The Chinese University of Hong Kong 1 System of m linear equations in n unknowns (linear system) 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.......

More information

Equality: Two matrices A and B are equal, i.e., A = B if A and B have the same order and the entries of A and B are the same.

Equality: Two matrices A and B are equal, i.e., A = B if A and B have the same order and the entries of A and B are the same. Introduction Matrix Operations Matrix: An m n matrix A is an m-by-n array of scalars from a field (for example real numbers) of the form a a a n a a a n A a m a m a mn The order (or size) of A is m n (read

More information

MATH 1210 Assignment 4 Solutions 16R-T1

MATH 1210 Assignment 4 Solutions 16R-T1 MATH 1210 Assignment 4 Solutions 16R-T1 Attempt all questions and show all your work. Due November 13, 2015. 1. Prove using mathematical induction that for any n 2, and collection of n m m matrices A 1,

More information

Math Linear Algebra Final Exam Review Sheet

Math Linear Algebra Final Exam Review Sheet Math 15-1 Linear Algebra Final Exam Review Sheet Vector Operations Vector addition is a component-wise operation. Two vectors v and w may be added together as long as they contain the same number n of

More information

Elementary Row Operations on Matrices

Elementary Row Operations on Matrices King Saud University September 17, 018 Table of contents 1 Definition A real matrix is a rectangular array whose entries are real numbers. These numbers are organized on rows and columns. An m n matrix

More information

MTH 102A - Linear Algebra II Semester

MTH 102A - Linear Algebra II Semester MTH 0A - Linear Algebra - 05-6-II Semester Arbind Kumar Lal P Field A field F is a set from which we choose our coefficients and scalars Expected properties are ) a+b and a b should be defined in it )

More information

Chapter 1 Matrices and Systems of Equations

Chapter 1 Matrices and Systems of Equations Chapter 1 Matrices and Systems of Equations System of Linear Equations 1. A linear equation in n unknowns is an equation of the form n i=1 a i x i = b where a 1,..., a n, b R and x 1,..., x n are variables.

More information

1 Last time: determinants

1 Last time: determinants 1 Last time: determinants Let n be a positive integer If A is an n n matrix, then its determinant is the number det A = Π(X, A)( 1) inv(x) X S n where S n is the set of n n permutation matrices Π(X, A)

More information

Matrix Algebra Determinant, Inverse matrix. Matrices. A. Fabretti. Mathematics 2 A.Y. 2015/2016. A. Fabretti Matrices

Matrix Algebra Determinant, Inverse matrix. Matrices. A. Fabretti. Mathematics 2 A.Y. 2015/2016. A. Fabretti Matrices Matrices A. Fabretti Mathematics 2 A.Y. 2015/2016 Table of contents Matrix Algebra Determinant Inverse Matrix Introduction A matrix is a rectangular array of numbers. The size of a matrix is indicated

More information

Graduate Mathematical Economics Lecture 1

Graduate Mathematical Economics Lecture 1 Graduate Mathematical Economics Lecture 1 Yu Ren WISE, Xiamen University September 23, 2012 Outline 1 2 Course Outline ematical techniques used in graduate level economics courses Mathematics for Economists

More information

MATH2210 Notebook 2 Spring 2018

MATH2210 Notebook 2 Spring 2018 MATH2210 Notebook 2 Spring 2018 prepared by Professor Jenny Baglivo c Copyright 2009 2018 by Jenny A. Baglivo. All Rights Reserved. 2 MATH2210 Notebook 2 3 2.1 Matrices and Their Operations................................

More information

Matrices. In this chapter: matrices, determinants. inverse matrix

Matrices. In this chapter: matrices, determinants. inverse matrix Matrices In this chapter: matrices, determinants inverse matrix 1 1.1 Matrices A matrix is a retangular array of numbers. Rows: horizontal lines. A = a 11 a 12 a 13 a 21 a 22 a 23 a 31 a 32 a 33 a 41 a

More information

Matrix & Linear Algebra

Matrix & Linear Algebra Matrix & Linear Algebra Jamie Monogan University of Georgia For more information: http://monogan.myweb.uga.edu/teaching/mm/ Jamie Monogan (UGA) Matrix & Linear Algebra 1 / 84 Vectors Vectors Vector: A

More information

Finite Mathematics Chapter 2. where a, b, c, d, h, and k are real numbers and neither a and b nor c and d are both zero.

Finite Mathematics Chapter 2. where a, b, c, d, h, and k are real numbers and neither a and b nor c and d are both zero. Finite Mathematics Chapter 2 Section 2.1 Systems of Linear Equations: An Introduction Systems of Equations Recall that a system of two linear equations in two variables may be written in the general form

More information

Undergraduate Mathematical Economics Lecture 1

Undergraduate Mathematical Economics Lecture 1 Undergraduate Mathematical Economics Lecture 1 Yu Ren WISE, Xiamen University September 15, 2014 Outline 1 Courses Description and Requirement 2 Course Outline ematical techniques used in economics courses

More information

Chapter 1: Systems of linear equations and matrices. Section 1.1: Introduction to systems of linear equations

Chapter 1: Systems of linear equations and matrices. Section 1.1: Introduction to systems of linear equations Chapter 1: Systems of linear equations and matrices Section 1.1: Introduction to systems of linear equations Definition: A linear equation in n variables can be expressed in the form a 1 x 1 + a 2 x 2

More information

Lecture Notes in Linear Algebra

Lecture Notes in Linear Algebra Lecture Notes in Linear Algebra Dr. Abdullah Al-Azemi Mathematics Department Kuwait University February 4, 2017 Contents 1 Linear Equations and Matrices 1 1.2 Matrices............................................

More information

SOLVING Ax = b: GAUSS-JORDAN ELIMINATION [LARSON 1.2]

SOLVING Ax = b: GAUSS-JORDAN ELIMINATION [LARSON 1.2] SOLVING Ax = b: GAUSS-JORDAN ELIMINATION [LARSON.2 EQUIVALENT LINEAR SYSTEMS: Two m n linear systems are equivalent both systems have the exact same solution sets. When solving a linear system Ax = b,

More information

2. Every linear system with the same number of equations as unknowns has a unique solution.

2. Every linear system with the same number of equations as unknowns has a unique solution. 1. For matrices A, B, C, A + B = A + C if and only if A = B. 2. Every linear system with the same number of equations as unknowns has a unique solution. 3. Every linear system with the same number of equations

More information

Chapter 1. Vectors, Matrices, and Linear Spaces

Chapter 1. Vectors, Matrices, and Linear Spaces 1.4 Solving Systems of Linear Equations 1 Chapter 1. Vectors, Matrices, and Linear Spaces 1.4. Solving Systems of Linear Equations Note. We give an algorithm for solving a system of linear equations (called

More information

Linear Algebra (part 1) : Matrices and Systems of Linear Equations (by Evan Dummit, 2016, v. 2.02)

Linear Algebra (part 1) : Matrices and Systems of Linear Equations (by Evan Dummit, 2016, v. 2.02) Linear Algebra (part ) : Matrices and Systems of Linear Equations (by Evan Dummit, 206, v 202) Contents 2 Matrices and Systems of Linear Equations 2 Systems of Linear Equations 2 Elimination, Matrix Formulation

More information

Review for Exam Find all a for which the following linear system has no solutions, one solution, and infinitely many solutions.

Review for Exam Find all a for which the following linear system has no solutions, one solution, and infinitely many solutions. Review for Exam. Find all a for which the following linear system has no solutions, one solution, and infinitely many solutions. x + y z = 2 x + 2y + z = 3 x + y + (a 2 5)z = a 2 The augmented matrix for

More information

MATH 213 Linear Algebra and ODEs Spring 2015 Study Sheet for Midterm Exam. Topics

MATH 213 Linear Algebra and ODEs Spring 2015 Study Sheet for Midterm Exam. Topics MATH 213 Linear Algebra and ODEs Spring 2015 Study Sheet for Midterm Exam This study sheet will not be allowed during the test Books and notes will not be allowed during the test Calculators and cell phones

More information

Chapter 4 - MATRIX ALGEBRA. ... a 2j... a 2n. a i1 a i2... a ij... a in

Chapter 4 - MATRIX ALGEBRA. ... a 2j... a 2n. a i1 a i2... a ij... a in Chapter 4 - MATRIX ALGEBRA 4.1. Matrix Operations A a 11 a 12... a 1j... a 1n a 21. a 22.... a 2j... a 2n. a i1 a i2... a ij... a in... a m1 a m2... a mj... a mn The entry in the ith row and the jth column

More information

Linear Algebra and Matrix Inversion

Linear Algebra and Matrix Inversion Jim Lambers MAT 46/56 Spring Semester 29- Lecture 2 Notes These notes correspond to Section 63 in the text Linear Algebra and Matrix Inversion Vector Spaces and Linear Transformations Matrices are much

More information

Vectors and matrices: matrices (Version 2) This is a very brief summary of my lecture notes.

Vectors and matrices: matrices (Version 2) This is a very brief summary of my lecture notes. Vectors and matrices: matrices (Version 2) This is a very brief summary of my lecture notes Matrices and linear equations A matrix is an m-by-n array of numbers A = a 11 a 12 a 13 a 1n a 21 a 22 a 23 a

More information

MATH Topics in Applied Mathematics Lecture 12: Evaluation of determinants. Cross product.

MATH Topics in Applied Mathematics Lecture 12: Evaluation of determinants. Cross product. MATH 311-504 Topics in Applied Mathematics Lecture 12: Evaluation of determinants. Cross product. Determinant is a scalar assigned to each square matrix. Notation. The determinant of a matrix A = (a ij

More information

Systems of Linear Equations and Matrices

Systems of Linear Equations and Matrices Chapter 1 Systems of Linear Equations and Matrices System of linear algebraic equations and their solution constitute one of the major topics studied in the course known as linear algebra. In the first

More information

1 Matrices and Systems of Linear Equations

1 Matrices and Systems of Linear Equations Linear Algebra (part ) : Matrices and Systems of Linear Equations (by Evan Dummit, 207, v 260) Contents Matrices and Systems of Linear Equations Systems of Linear Equations Elimination, Matrix Formulation

More information

Introduction to Matrices and Linear Systems Ch. 3

Introduction to Matrices and Linear Systems Ch. 3 Introduction to Matrices and Linear Systems Ch. 3 Doreen De Leon Department of Mathematics, California State University, Fresno June, 5 Basic Matrix Concepts and Operations Section 3.4. Basic Matrix Concepts

More information

Linear Algebra Highlights

Linear Algebra Highlights Linear Algebra Highlights Chapter 1 A linear equation in n variables is of the form a 1 x 1 + a 2 x 2 + + a n x n. We can have m equations in n variables, a system of linear equations, which we want to

More information

Linear Algebra: Lecture Notes. Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway

Linear Algebra: Lecture Notes. Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway Linear Algebra: Lecture Notes Dr Rachel Quinlan School of Mathematics, Statistics and Applied Mathematics NUI Galway November 6, 23 Contents Systems of Linear Equations 2 Introduction 2 2 Elementary Row

More information

II. Determinant Functions

II. Determinant Functions Supplemental Materials for EE203001 Students II Determinant Functions Chung-Chin Lu Department of Electrical Engineering National Tsing Hua University May 22, 2003 1 Three Axioms for a Determinant Function

More information

Systems of Linear Equations and Matrices

Systems of Linear Equations and Matrices Chapter 1 Systems of Linear Equations and Matrices System of linear algebraic equations and their solution constitute one of the major topics studied in the course known as linear algebra. In the first

More information

REPLACE ONE ROW BY ADDING THE SCALAR MULTIPLE OF ANOTHER ROW

REPLACE ONE ROW BY ADDING THE SCALAR MULTIPLE OF ANOTHER ROW 20 CHAPTER 1 Systems of Linear Equations REPLACE ONE ROW BY ADDING THE SCALAR MULTIPLE OF ANOTHER ROW The last type of operation is slightly more complicated. Suppose that we want to write down the elementary

More information

LINEAR ALGEBRA WITH APPLICATIONS

LINEAR ALGEBRA WITH APPLICATIONS SEVENTH EDITION LINEAR ALGEBRA WITH APPLICATIONS Instructor s Solutions Manual Steven J. Leon PREFACE This solutions manual is designed to accompany the seventh edition of Linear Algebra with Applications

More information

Systems of Linear Equations. By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University

Systems of Linear Equations. By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University Systems of Linear Equations By: Tri Atmojo Kusmayadi and Mardiyana Mathematics Education Sebelas Maret University Standard of Competency: Understanding the properties of systems of linear equations, matrices,

More information

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form

Chapter 5. Linear Algebra. A linear (algebraic) equation in. unknowns, x 1, x 2,..., x n, is. an equation of the form Chapter 5. Linear Algebra A linear (algebraic) equation in n unknowns, x 1, x 2,..., x n, is an equation of the form a 1 x 1 + a 2 x 2 + + a n x n = b where a 1, a 2,..., a n and b are real numbers. 1

More information

[ Here 21 is the dot product of (3, 1, 2, 5) with (2, 3, 1, 2), and 31 is the dot product of

[ Here 21 is the dot product of (3, 1, 2, 5) with (2, 3, 1, 2), and 31 is the dot product of . Matrices A matrix is any rectangular array of numbers. For example 3 5 6 4 8 3 3 is 3 4 matrix, i.e. a rectangular array of numbers with three rows four columns. We usually use capital letters for matrices,

More information

Math 3108: Linear Algebra

Math 3108: Linear Algebra Math 3108: Linear Algebra Instructor: Jason Murphy Department of Mathematics and Statistics Missouri University of Science and Technology 1 / 323 Contents. Chapter 1. Slides 3 70 Chapter 2. Slides 71 118

More information

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 1 x 2. x n 8 (4) 3 4 2

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS. + + x 1 x 2. x n 8 (4) 3 4 2 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

3 Matrix Algebra. 3.1 Operations on matrices

3 Matrix Algebra. 3.1 Operations on matrices 3 Matrix Algebra A matrix is a rectangular array of numbers; it is of size m n if it has m rows and n columns. A 1 n matrix is a row vector; an m 1 matrix is a column vector. For example: 1 5 3 5 3 5 8

More information

LINEAR SYSTEMS, MATRICES, AND VECTORS

LINEAR SYSTEMS, MATRICES, AND VECTORS ELEMENTARY LINEAR ALGEBRA WORKBOOK CREATED BY SHANNON MARTIN MYERS LINEAR SYSTEMS, MATRICES, AND VECTORS Now that I ve been teaching Linear Algebra for a few years, I thought it would be great to integrate

More information

Chapter 5: Matrices. Daniel Chan. Semester UNSW. Daniel Chan (UNSW) Chapter 5: Matrices Semester / 33

Chapter 5: Matrices. Daniel Chan. Semester UNSW. Daniel Chan (UNSW) Chapter 5: Matrices Semester / 33 Chapter 5: Matrices Daniel Chan UNSW Semester 1 2018 Daniel Chan (UNSW) Chapter 5: Matrices Semester 1 2018 1 / 33 In this chapter Matrices were first introduced in the Chinese Nine Chapters on the Mathematical

More information

Two matrices of the same size are added by adding their corresponding entries =.

Two matrices of the same size are added by adding their corresponding entries =. 2 Matrix algebra 2.1 Addition and scalar multiplication Two matrices of the same size are added by adding their corresponding entries. For instance, 1 2 3 2 5 6 3 7 9 +. 4 0 9 4 1 3 0 1 6 Addition of two

More information

c c c c c c c c c c a 3x3 matrix C= has a determinant determined by

c c c c c c c c c c a 3x3 matrix C= has a determinant determined by Linear Algebra Determinants and Eigenvalues Introduction: Many important geometric and algebraic properties of square matrices are associated with a single real number revealed by what s known as the determinant.

More information

INVERSE OF A MATRIX [2.2]

INVERSE OF A MATRIX [2.2] INVERSE OF A MATRIX [2.2] The inverse of a matrix: Introduction We have a mapping from R n to R n represented by a matrix A. Can we invert this mapping? i.e. can we find a matrix (call it B for now) such

More information

Chapter 2 Notes, Linear Algebra 5e Lay

Chapter 2 Notes, Linear Algebra 5e Lay Contents.1 Operations with Matrices..................................1.1 Addition and Subtraction.............................1. Multiplication by a scalar............................ 3.1.3 Multiplication

More information

MAC Module 3 Determinants. Learning Objectives. Upon completing this module, you should be able to:

MAC Module 3 Determinants. Learning Objectives. Upon completing this module, you should be able to: MAC 2 Module Determinants Learning Objectives Upon completing this module, you should be able to:. Determine the minor, cofactor, and adjoint of a matrix. 2. Evaluate the determinant of a matrix by cofactor

More information

DM559 Linear and Integer Programming. Lecture 2 Systems of Linear Equations. Marco Chiarandini

DM559 Linear and Integer Programming. Lecture 2 Systems of Linear Equations. Marco Chiarandini DM559 Linear and Integer Programming Lecture Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark Outline 1. Outline 1. 3 A Motivating Example You are organizing

More information

Math113: Linear Algebra. Beifang Chen

Math113: Linear Algebra. Beifang Chen Math3: Linear Algebra Beifang Chen Spring 26 Contents Systems of Linear Equations 3 Systems of Linear Equations 3 Linear Systems 3 2 Geometric Interpretation 3 3 Matrices of Linear Systems 4 4 Elementary

More information

Inverting Matrices. 1 Properties of Transpose. 2 Matrix Algebra. P. Danziger 3.2, 3.3

Inverting Matrices. 1 Properties of Transpose. 2 Matrix Algebra. P. Danziger 3.2, 3.3 3., 3.3 Inverting Matrices P. Danziger 1 Properties of Transpose Transpose has higher precedence than multiplication and addition, so AB T A ( B T and A + B T A + ( B T As opposed to the bracketed expressions

More information

Chapter 2. Square matrices

Chapter 2. Square matrices Chapter 2. Square matrices Lecture notes for MA1111 P. Karageorgis pete@maths.tcd.ie 1/18 Invertible matrices Definition 2.1 Invertible matrices An n n matrix A is said to be invertible, if there is a

More information

Homework Set #8 Solutions

Homework Set #8 Solutions Exercises.2 (p. 19) Homework Set #8 Solutions Assignment: Do #6, 8, 12, 14, 2, 24, 26, 29, 0, 2, 4, 5, 6, 9, 40, 42 6. Reducing the matrix to echelon form: 1 5 2 1 R2 R2 R1 1 5 0 18 12 2 1 R R 2R1 1 5

More information

Chapter 2:Determinants. Section 2.1: Determinants by cofactor expansion

Chapter 2:Determinants. Section 2.1: Determinants by cofactor expansion Chapter 2:Determinants Section 2.1: Determinants by cofactor expansion [ ] a b Recall: The 2 2 matrix is invertible if ad bc 0. The c d ([ ]) a b function f = ad bc is called the determinant and it associates

More information

Linear Algebra M1 - FIB. Contents: 5. Matrices, systems of linear equations and determinants 6. Vector space 7. Linear maps 8.

Linear Algebra M1 - FIB. Contents: 5. Matrices, systems of linear equations and determinants 6. Vector space 7. Linear maps 8. Linear Algebra M1 - FIB Contents: 5 Matrices, systems of linear equations and determinants 6 Vector space 7 Linear maps 8 Diagonalization Anna de Mier Montserrat Maureso Dept Matemàtica Aplicada II Translation:

More information

MATH 106 LINEAR ALGEBRA LECTURE NOTES

MATH 106 LINEAR ALGEBRA LECTURE NOTES MATH 6 LINEAR ALGEBRA LECTURE NOTES FALL - These Lecture Notes are not in a final form being still subject of improvement Contents Systems of linear equations and matrices 5 Introduction to systems of

More information

Section 1.1 System of Linear Equations. Dr. Abdulla Eid. College of Science. MATHS 211: Linear Algebra

Section 1.1 System of Linear Equations. Dr. Abdulla Eid. College of Science. MATHS 211: Linear Algebra Section 1.1 System of Linear Equations College of Science MATHS 211: Linear Algebra (University of Bahrain) Linear System 1 / 33 Goals:. 1 Define system of linear equations and their solutions. 2 To represent

More information

Materials engineering Collage \\ Ceramic & construction materials department Numerical Analysis \\Third stage by \\ Dalya Hekmat

Materials engineering Collage \\ Ceramic & construction materials department Numerical Analysis \\Third stage by \\ Dalya Hekmat Materials engineering Collage \\ Ceramic & construction materials department Numerical Analysis \\Third stage by \\ Dalya Hekmat Linear Algebra Lecture 2 1.3.7 Matrix Matrix multiplication using Falk s

More information

PH1105 Lecture Notes on Linear Algebra.

PH1105 Lecture Notes on Linear Algebra. PH05 Lecture Notes on Linear Algebra Joe Ó hógáin E-mail: johog@mathstcdie Main Text: Calculus for the Life Sciences by Bittenger, Brand and Quintanilla Other Text: Linear Algebra by Anton and Rorres Matrices

More information

MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~

MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~ MTH501- Linear Algebra MCQS MIDTERM EXAMINATION ~ LIBRIANSMINE ~ Question No: 1 (Marks: 1) If for a linear transformation the equation T(x) =0 has only the trivial solution then T is One-to-one Onto Question

More information

1300 Linear Algebra and Vector Geometry

1300 Linear Algebra and Vector Geometry 1300 Linear Algebra and Vector Geometry R. Craigen Office: MH 523 Email: craigenr@umanitoba.ca May-June 2017 Introduction: linear equations Read 1.1 (in the text that is!) Go to course, class webpages.

More information

Chapter 9: Systems of Equations and Inequalities

Chapter 9: Systems of Equations and Inequalities Chapter 9: Systems of Equations and Inequalities 9. Systems of Equations Solve the system of equations below. By this we mean, find pair(s) of numbers (x, y) (if possible) that satisfy both equations.

More information

Introduction. Vectors and Matrices. Vectors [1] Vectors [2]

Introduction. Vectors and Matrices. Vectors [1] Vectors [2] Introduction Vectors and Matrices Dr. TGI Fernando 1 2 Data is frequently arranged in arrays, that is, sets whose elements are indexed by one or more subscripts. Vector - one dimensional array Matrix -

More information

APPENDIX: MATHEMATICAL INDUCTION AND OTHER FORMS OF PROOF

APPENDIX: MATHEMATICAL INDUCTION AND OTHER FORMS OF PROOF ELEMENTARY LINEAR ALGEBRA WORKBOOK/FOR USE WITH RON LARSON S TEXTBOOK ELEMENTARY LINEAR ALGEBRA CREATED BY SHANNON MARTIN MYERS APPENDIX: MATHEMATICAL INDUCTION AND OTHER FORMS OF PROOF When you are done

More information

Matrix Arithmetic. j=1

Matrix Arithmetic. j=1 An m n matrix is an array A = Matrix Arithmetic a 11 a 12 a 1n a 21 a 22 a 2n a m1 a m2 a mn of real numbers a ij An m n matrix has m rows and n columns a ij is the entry in the i-th row and j-th column

More information

Matrices Gaussian elimination Determinants. Graphics 2009/2010, period 1. Lecture 4: matrices

Matrices Gaussian elimination Determinants. Graphics 2009/2010, period 1. Lecture 4: matrices Graphics 2009/2010, period 1 Lecture 4 Matrices m n matrices Matrices Definitions Diagonal, Identity, and zero matrices Addition Multiplication Transpose and inverse The system of m linear equations in

More information

Determinants. Recall that the 2 2 matrix a b c d. is invertible if

Determinants. Recall that the 2 2 matrix a b c d. is invertible if Determinants Recall that the 2 2 matrix a b c d is invertible if and only if the quantity ad bc is nonzero. Since this quantity helps to determine the invertibility of the matrix, we call it the determinant.

More information

Review of Matrices and Block Structures

Review of Matrices and Block Structures CHAPTER 2 Review of Matrices and Block Structures Numerical linear algebra lies at the heart of modern scientific computing and computational science. Today it is not uncommon to perform numerical computations

More information

GAUSSIAN ELIMINATION AND LU DECOMPOSITION (SUPPLEMENT FOR MA511)

GAUSSIAN ELIMINATION AND LU DECOMPOSITION (SUPPLEMENT FOR MA511) GAUSSIAN ELIMINATION AND LU DECOMPOSITION (SUPPLEMENT FOR MA511) D. ARAPURA Gaussian elimination is the go to method for all basic linear classes including this one. We go summarize the main ideas. 1.

More information

MTH 464: Computational Linear Algebra

MTH 464: Computational Linear Algebra MTH 464: Computational Linear Algebra Lecture Outlines Exam 2 Material Prof. M. Beauregard Department of Mathematics & Statistics Stephen F. Austin State University March 2, 2018 Linear Algebra (MTH 464)

More information

Chapter 4. Determinants

Chapter 4. Determinants 4.2 The Determinant of a Square Matrix 1 Chapter 4. Determinants 4.2 The Determinant of a Square Matrix Note. In this section we define the determinant of an n n matrix. We will do so recursively by defining

More information

4. Determinants.

4. Determinants. 4. Determinants 4.1. Determinants; Cofactor Expansion Determinants of 2 2 and 3 3 Matrices 2 2 determinant 4.1. Determinants; Cofactor Expansion Determinants of 2 2 and 3 3 Matrices 3 3 determinant 4.1.

More information

Determinants Chapter 3 of Lay

Determinants Chapter 3 of Lay Determinants Chapter of Lay Dr. Doreen De Leon Math 152, Fall 201 1 Introduction to Determinants Section.1 of Lay Given a square matrix A = [a ij, the determinant of A is denoted by det A or a 11 a 1j

More information

Math 416, Spring 2010 The algebra of determinants March 16, 2010 THE ALGEBRA OF DETERMINANTS. 1. Determinants

Math 416, Spring 2010 The algebra of determinants March 16, 2010 THE ALGEBRA OF DETERMINANTS. 1. Determinants THE ALGEBRA OF DETERMINANTS 1. Determinants We have already defined the determinant of a 2 2 matrix: det = ad bc. We ve also seen that it s handy for determining when a matrix is invertible, and when it

More information

Math Camp II. Basic Linear Algebra. Yiqing Xu. Aug 26, 2014 MIT

Math Camp II. Basic Linear Algebra. Yiqing Xu. Aug 26, 2014 MIT Math Camp II Basic Linear Algebra Yiqing Xu MIT Aug 26, 2014 1 Solving Systems of Linear Equations 2 Vectors and Vector Spaces 3 Matrices 4 Least Squares Systems of Linear Equations Definition A linear

More information

Matrix operations Linear Algebra with Computer Science Application

Matrix operations Linear Algebra with Computer Science Application Linear Algebra with Computer Science Application February 14, 2018 1 Matrix operations 11 Matrix operations If A is an m n matrix that is, a matrix with m rows and n columns then the scalar entry in the

More information

Linear System Equations

Linear System Equations King Saud University September 24, 2018 Table of contents 1 2 3 4 Definition A linear system of equations with m equations and n unknowns is defined as follows: a 1,1 x 1 + a 1,2 x 2 + + a 1,n x n = b

More information

and let s calculate the image of some vectors under the transformation T.

and let s calculate the image of some vectors under the transformation T. Chapter 5 Eigenvalues and Eigenvectors 5. Eigenvalues and Eigenvectors Let T : R n R n be a linear transformation. Then T can be represented by a matrix (the standard matrix), and we can write T ( v) =

More information

Linear Algebra Homework and Study Guide

Linear Algebra Homework and Study Guide Linear Algebra Homework and Study Guide Phil R. Smith, Ph.D. February 28, 20 Homework Problem Sets Organized by Learning Outcomes Test I: Systems of Linear Equations; Matrices Lesson. Give examples of

More information

Linear Algebra I Lecture 8

Linear Algebra I Lecture 8 Linear Algebra I Lecture 8 Xi Chen 1 1 University of Alberta January 25, 2019 Outline 1 2 Gauss-Jordan Elimination Given a system of linear equations f 1 (x 1, x 2,..., x n ) = 0 f 2 (x 1, x 2,..., x n

More information

MATRICES. a m,1 a m,n A =

MATRICES. a m,1 a m,n A = MATRICES Matrices are rectangular arrays of real or complex numbers With them, we define arithmetic operations that are generalizations of those for real and complex numbers The general form a matrix of

More information

Digital Workbook for GRA 6035 Mathematics

Digital Workbook for GRA 6035 Mathematics Eivind Eriksen Digital Workbook for GRA 6035 Mathematics November 10, 2014 BI Norwegian Business School Contents Part I Lectures in GRA6035 Mathematics 1 Linear Systems and Gaussian Elimination........................

More information

is a 3 4 matrix. It has 3 rows and 4 columns. The first row is the horizontal row [ ]

is a 3 4 matrix. It has 3 rows and 4 columns. The first row is the horizontal row [ ] Matrices: Definition: An m n matrix, A m n is a rectangular array of numbers with m rows and n columns: a, a, a,n a, a, a,n A m,n =...... a m, a m, a m,n Each a i,j is the entry at the i th row, j th column.

More information

Topic 15 Notes Jeremy Orloff

Topic 15 Notes Jeremy Orloff Topic 5 Notes Jeremy Orloff 5 Transpose, Inverse, Determinant 5. Goals. Know the definition and be able to compute the inverse of any square matrix using row operations. 2. Know the properties of inverses.

More information

Linear Algebra March 16, 2019

Linear Algebra March 16, 2019 Linear Algebra March 16, 2019 2 Contents 0.1 Notation................................ 4 1 Systems of linear equations, and matrices 5 1.1 Systems of linear equations..................... 5 1.2 Augmented

More information

Math Computation Test 1 September 26 th, 2016 Debate: Computation vs. Theory Whatever wins, it ll be Huuuge!

Math Computation Test 1 September 26 th, 2016 Debate: Computation vs. Theory Whatever wins, it ll be Huuuge! Math 5- Computation Test September 6 th, 6 Debate: Computation vs. Theory Whatever wins, it ll be Huuuge! Name: Answer Key: Making Math Great Again Be sure to show your work!. (8 points) Consider the following

More information

Lecture 1 Systems of Linear Equations and Matrices

Lecture 1 Systems of Linear Equations and Matrices Lecture 1 Systems of Linear Equations and Matrices Math 19620 Outline of Course Linear Equations and Matrices Linear Transformations, Inverses Bases, Linear Independence, Subspaces Abstract Vector Spaces

More information

CP3 REVISION LECTURES VECTORS AND MATRICES Lecture 1. Prof. N. Harnew University of Oxford TT 2013

CP3 REVISION LECTURES VECTORS AND MATRICES Lecture 1. Prof. N. Harnew University of Oxford TT 2013 CP3 REVISION LECTURES VECTORS AND MATRICES Lecture 1 Prof. N. Harnew University of Oxford TT 2013 1 OUTLINE 1. Vector Algebra 2. Vector Geometry 3. Types of Matrices and Matrix Operations 4. Determinants

More information

Extra Problems: Chapter 1

Extra Problems: Chapter 1 MA131 (Section 750002): Prepared by Asst.Prof.Dr.Archara Pacheenburawana 1 Extra Problems: Chapter 1 1. In each of the following answer true if the statement is always true and false otherwise in the space

More information

Topics. Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij

Topics. Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij Topics Vectors (column matrices): Vector addition and scalar multiplication The matrix of a linear function y Ax The elements of a matrix A : A ij or a ij lives in row i and column j Definition of a matrix

More information

EXAM. Exam #1. Math 2360, Second Summer Session, April 24, 2001 ANSWERS

EXAM. Exam #1. Math 2360, Second Summer Session, April 24, 2001 ANSWERS i i EXAM Exam #1 Math 2360, Second Summer Session, 2002 April 24, 2001 ANSWERS i 50 pts. Problem 1. In each part you are given the augmented matrix of a system of linear equations, with the coefficent

More information

ELEMENTARY LINEAR ALGEBRA WITH APPLICATIONS. 1. Linear Equations and Matrices

ELEMENTARY LINEAR ALGEBRA WITH APPLICATIONS. 1. Linear Equations and Matrices ELEMENTARY LINEAR ALGEBRA WITH APPLICATIONS KOLMAN & HILL NOTES BY OTTO MUTZBAUER 11 Systems of Linear Equations 1 Linear Equations and Matrices Numbers in our context are either real numbers or complex

More information