SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT BUSINESS MATHEMATICS / MATHEMATICAL ANALYSIS

Size: px
Start display at page:

Download "SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT BUSINESS MATHEMATICS / MATHEMATICAL ANALYSIS"

Transcription

1 SCHOOL OF BUSINESS, ECONOMICS AND MANAGEMENT BUSINESS MATHEMATICS / MATHEMATICAL ANALYSIS Unit Six Moses Mwale moses.mwale@ictar.ac.zm

2

3 BBA 120 Business Mathematics Contents Unit 6: Matrix Algebra Matrices Basic Definitions Special Matrices... 4 Example Operations with Matrices... 5 Transpose... 5 Sum, Difference... 6 Scalar Multiple... 6 Example: Demand Vectors for an Economy... 6 Matrix Multiplication Matrix Equations... 9 Example:... 9 Exercises: Perform the indicated operations... 9 Matrices and Linear Systems Solving Systems of Equations Determinants Example The Inverse of a Matrix Why Would We Want an Inverse? A Real Life Example Order is Important Bigger Matrices Inverse of a Matrix using Minors, Cofactors and Adjugate More Examples Cramer's Rule Exercises:... 26

4

5 BBA 120 Business Mathematics Unit 6: Matrix Algebra 6.0 Matrices 6.1 Basic Definitions ROWS ARE HORIZONTAL AND COLUMNS ARE VERTICAL. An m n matrix is a rectangular array of real numbers with m rows and n columns. The numbers m and n are the dimensions of A. The real numbers in the matrix are called its entries. The entry in row i and column j is called a ij or A ij. To denote the entries in a matrix A of size n x m, say, we use the name of the matrix, with double subscripts to indicate position, consistent with the conventions above: For the entry A l2 (read "A sub onetwo" or just "A one-two"), the first subscript, 1, specifies the row and the second subscript, 2, the column in which the entry appears. Similarly, the entry A 23 (read "A two-three") is the entry in the second row and the third column. Generalizing, we say that the symbol A ij denotes the entry in the i th row and j th column. In fact, a matrix A is a function of two variables with A(i,j) = A ij. Example Following is a 4 5 matrix with the entry A 23 highlighted A = [ ] A matrix that has exactly one row, such as the 1 4 matrix is called a row vector. A = [ ] A matrix consisting of a single column; such as the 5 1 matrix 3

6 4 Unit 6: Matrix Algebra is called a column vector [ 16] 6.2 Special Matrices Zero matrix Certain types of matrices play important roles in matrix theory. We now consider some of these special types. An m x n matrix whose entries are all 0 is called the m n zero matrix and is denoted by O m n or, more simply, by 0 if its size is understood. Thus, the 2 x 3 zero matrix is Square matrix Identity matrix O = [ ] A matrix having the same number of columns as rows-for example, n rows and n columns-is called a square matrix of order n. That is, an m x n matrix is square if and only if m = n. For example, matrices [ ] and [5] are square with orders 3 and,1, respectively. Just as the zero matrix plays an important role as the identity in matrix addition there is a special matrix, called the identity matrix that plays a corresponding role in matrix multiplication: The n x n identity matrix, denoted I is the diagonal matrix whose main diagonal entries are 1's. For example, the identity matrices I 3 and I 4 are I 3 = [ 0 1 0] I 4 = [ ]

7 BBA 120 Business Mathematics Example Solution A grocer sold 125 cans of tomato soup, 275 cans of beans, and 400 cans of tuna. Write a row vector that gives the number of each item sold. If the items sell for $0.95, $1.03, and $1.25 each, respectively, write this information as a column vector. Row Vector Column vector Tomato Soup, Beans, Tuna [ ] 0.95 [ 1.03] Operations with Matrices Transpose The transpose, A T, of a matrix A is the matrix obtained from A by writing its rows as columns. If A is an m n matrix and B = A T, then B is the n m matrix with b ij = a ji. Examples 5

8 6 Unit 6: Matrix Algebra [ ] 3 T 0 = [ ] Sum, Difference If A and B have the same dimensions, then their sum, A+B, is obtained by adding corresponding entries. In symbols, (A+B) ij = A ij + B ij. If A and B have the same dimensions, then their difference, A - B, is obtained by subtracting corresponding entries. In symbols, (A-B) ij = A ij - B ij. Properties of Matrix Addition 1. A+B=B+A commutative property 2. A + (B + C) = (A + B) + C associative property 3. A+O =A= O+A identity property Scalar Multiple If A is a matrix and c is a number (sometimes called a scalar in this context), then the scalar multiple, ca, is obtained by multiplying every entry in A by c. In symbols, (ca) ij = c(a ij). Example [ 1 3 1] + 2 [ 2 3 2] = [ 5 3 5] Properties of Scalar Multiplication 1. k(a + B) = ka + kb. 2. (k + l)a = ka + la 3. k(la) = (kl)a 4. 0A = A 5. k0 = 0 We also have the following properties of the transpose operation, where A and B are of the same size and k is any scalar: (A + B) T = A T + B T (ka) T = ka T Example: Demand Vectors for an Economy Let matrix A represent the sales (in thousands of dollars) of a toy company in 2007 in three cities, and let B represent the sales in the same cities in 2009, where

9 BBA 120 Business Mathematics A = Action Educational [ ] Solution B = Action Educational [ ] If the company buys a competitor and doubles its 2009 sales in 2010, what is the change in sales between 2007 and 2010? Let the sales in 2010 be denoted by matrix C Then C = 2B = 2 [ ] = [ ] The change in sales between 2007 and 2012 is given by C A = [ ] [ ] = [ ] Matrix Multiplication If A has dimensions m n and B has dimensions n p, then the product AB is defined, and has dimensions m p. The entry (AB) ij is obtained by multiplying row i of A by column j of B, which is done by multiplying corresponding entries together and then adding the results. Three points must be completely understood concerning this definition of AB. First, the number of columns of A must be equal to the number of rows of B. Second, the product AB has as many rows as A and as many columns as B. Third, the definition refers to the product AB, in that order; A is the left factor and B is the right factor. For AB, we say that B is pre-multiplied by A or A is post-multiplied by B. Examples 7

10 8 Unit 6: Matrix Algebra 1. Let A be a 3 x 5 matrix and B be a 5 x 3 matrix. Then AB is defined and is a 3 x 3 matrix. Moreover, BA is also defined and is a 5 x 5 matrix. 2. If C is a 3 x 5 matrix and D is a 7 x 3 matrix, then CD is undefined, but DC is defined and is a 7 x 5 matrix. 3. [ ] [ ] = [ 4. Find a, b and c so that ] i) [ 1 3 b 5 ] [a ] = [6 1 4 c d 7 7 ] ii) [ 1 2 b ] [a 2 3 c d ] = [ ] 5. Given the following matrices A = [ ] B = [ ] C = [ 4 3 1] D = [ 0 1] Perform the indicated operations, if possible. i. CA vii. C+DA ii. AC viii. B+AD iii. BA ix. 0.2CD iv. AB x. ( 2)BA + 6CD v. C 2 xi. CDA vi. B 2 xii. BAD Suppose that the prices (in dollars per unit) for products A, B, and C are represented by the price vector Price of A B C P = [2 3 4] If the quantities (in units) of A, B, and C that are purchased are given by the column vector 7 Units of A Q = [ 5 ] Units of B 11 Units of C then the total cost (in dollars) of the purchases is given by the entry in the cost vector 7 PQ = [2 3 4] [ 5 ] = [(2 7) + (3 5) + (4 11)] = [73] 11

11 BBA 120 Business Mathematics 6.4 Matrix Equations Example: Systems of linear equations can be represented by using matrix multiplication. For example, consider the matrix equation [ x ] [ x 2 ] = [ 4 x 3 ] (1) 3 The product on the left side has order 2 x 1 and hence is a column matrix. Thus, [ x 1 + 4x 2 2x 3 2x 1 3x 2 + x 3 ] = [ 4 3 ] By equality of matrices, corresponding entries must be equal, so we obtain the system x 1 + 4x 2 2x 3 = 4 2x 1 3x 2 + x 3 = 3 Hence, this system of linear equations can be defined by matrix Equation (1). We usually describe Equation (1) by saying that it has the form AX = B where A is the matrix obtained from the coefficients of the variables, X is a column matrix obtained from the variables, and B is a column matrix obtained from the constants. Matrix A is called the coefficient matrix for the system. Write the system { 2x 1 + 5x 2 = 4 8x 1 + 3x 2 = 7 in matrix form by using matrix multiplication. Solution A = [ ] X = [x 1 x 2 ] B = [ 4 7 ] then the given system is equivalent to the single matrix equation AX = B [ ] [x 1 x 2 ] = [ 4 7 ] Exercises: Perform the indicated operations [ ] [ ]

12 10 Unit 6: Matrix Algebra 2. [ ] ([ ] + [ ]) x 3. [ 0 1 0] [ y] z 4. [ a 11 a 12 a 21 a 22 ] [ x 1 x 2 ] 5. A stockbroker sold a customer 200 shares of stock A, 300 shares of stock B, 500 shares of stock C, and 25.0 shares of stock D. The prices per share of A, B, C, and Dare $100, $150, $200, and $300, respectively. Write a row vector representing the number of shares of each stock bought. Write a column vector representing the price per share of each stock. Using matrix multiplication, find the total cost of the stocks. Matrices and Linear Systems A linear system is the system of linear equations 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 ; (6.0.1) a m1 x 1 + a m2 x a mn x n = b m : Solving the linear system (6.0.1) means finding the variables x 1, x 2,, x n that satisfy all the equations in (6.0.1) simultaneously. The connection between linear systems and matrices is an obvious one. Indeed, let a 11 a 12 a 1n x 1 b 1 a 21 a 22 a 2n x 2 b A=[ ], x= [ ] and b= [ 2 ] a m1 a m2 a mn x n b n then the linear system (6.0.1) may be rewritten as Ax = b. 6.5 Solving Systems of Equations

13 BBA 120 Business Mathematics In this section, we ll study one method for solving systems of linear equations using matrices called Crammer s Rule. This method works only for systems with the same number of equations and variables. The biggest advantage of Cramers is that it s purely computational it requires very little symbol manipulation. The method is based on determinants Determinants For any square matrix A, the determinant of A is a real number denoted by det(a) or A. If A is a square matrix of order n, then det (A) is called a determinant of order n. If A = [a 11 ] is a square matrix of order 1, then det(a) = a 11 is a first-order determinant. Now we proceed to define determinants of higher order. Given a second-order square matrix A = [ a 11 a 12 a 21 a ], the second-order 22 determinant of A is det(a) = a 11 a 12 a 21 a 22 = a 11 a 22 a 21 a 12 Formula above is easily remembered if you notice that the expression on the right is the product of the elements on the principal diagonal, from upper left to lower right, minus the product of the elements on the secondary diagonal, from lower left to upper right. Example Evaluating the Second Order Determinant. Find Solutions det(a) = = ( 1)( 4) ( 3)(2) = 4 ( 6) = 10 Evaluating Third-Order Determinants a 11 a 12 a 13 Given the matrix A = [ a 21 a 13 a 22 a 32 a 23 ] the third-order determinant of A a 33 is 11

14 12 Unit 6: Matrix Algebra a 11 a 12 a 13 det(a) = a 21 a 13 a 22 a 32 a 23 a 33 = a 11 a 22 a 33 a 11 a 32 a 23 + a 21 a 32 a 13 a 21 a 12 a 33 + a 31 a 12 a 23 a 31 a 22 a 13 Caution Remember that A = [ ] is a matrix, but represents a real number, the determinant of A. We will often refer to as a determinant, and refer to the process of finding the real number it represents as evaluating the determinant. Don t panic! You don t need to memorize this formula. There is another method of finding the determinant of a 3 3 matrix. To find the determinant of a 3 3 matrix, copy the first two columns of the matrix to the right of the original matrix. Next, multiply the numbers on the three downward diagonals, and add these products together. Multiply the numbers on the upward diagonals, and add these products together. Then subtract the sum of the products of the upward diagonals from the sum of the product of the downward diagonals (subtract the second number from the first number): a 1 b 1 c 1 A = [ a 2 b 2 c 2 ] a 3 b 3 c 3 a 1 b 1 c 1 [ a 2 b 2 c 2 ] a 3 b 3 c 3 a 1 b 1 a 2 b 2 a 3 b Example: Find the determinant of: [ ] Solution: Step [ ]

15 BBA 120 Business Mathematics Step 2 Step 3 Step = -70. deta =

16 14 Unit 6: Matrix Algebra Reciprocal of a Number But we don't write 1 / A (because we don't divide by a Matrix!), instead we write A -1 for the inverse: The Inverse of a Matrix. What is the Inverse of a Matrix? The Inverse of a Matrix is the same idea as the reciprocal of a number: When you multiply a number by its reciprocal you get 1 8 ( 1 / 8) = 1 When you multiply a Matrix by its Inverse you get the Identity Matrix (which is like "1" for Matrices): A A 1 = I It also works when the inverse comes first: ( 1 / 8) 8 = 1 and A -1 A = I Note: the "Identity Matrix" is the matrix equivalent of the number "1": Definition The Inverse of A is A -1 only when: Sometimes there is no Inverse at all. A A 1 = A 1 A = I How to calculate the Inverse of a matrix. Well, for a 2x2 Matrix the Inverse is: In other words: swap the positions of a and d, put negatives in front of b and c, and divide everything by the determinant (ad bc). Let us try an example:

17 BBA 120 Business Mathematics How do we know this is the right answer? Remember it must be true that: A A -1 = I So, let us check to see what happens when we multiply the matrix by its inverse: We end up with the Identity Matrix! So it must be right. It should also be true that: A -1 A = I Why Would We Want an Inverse? Because with Matrices we don't divide! There is no concept of dividing by a Matrix. But we can multiply by an Inverse, which achieves the same thing. Say that you know Matrix A and B, and want to find Matrix X: XA = B It would be nice to divide both sides by A (to get X=B/A), but remember we can't divide. But what if we multiply both sides by A -1? And we know that AA -1 = I, so: XAA 1 = BA 1 XI = BA 1 We can remove I (for the same reason we could remove "1" from 1x = ab for numbers): X = BA 1 And we have our answer (assuming we can calculate A -1 ) 15

18 16 Unit 6: Matrix Algebra In that example we were very careful to get the multiplications correct, because with Matrices the order of multiplication matters. AB is almost never equal to BA. A Real Life Example A group travelled on a rented bus, at K3 per child and K3.20 per adult for a total of K They took the train back at K3.50 per child and K3.60 per adult for a total of K How many children, and how many adults were in the group? First, let us set up the matrices (be careful to get the rows and columns correct!): This is just like the example above: XA = B So to solve it we need the inverse of "A": Now we have the inverse we can solve using: X = BA 1 There were 16 children and 22 adults!

19 BBA 120 Business Mathematics The answer almost appears like magic. But it is based on good mathematics. It is also a way to solve Systems of Linear Equations. The calculations are mostly done by computer, but the people must understand the formulas. Order is Important Say that you are trying to find "X" in this case: AX = B This is different to the example above! X is now after A. With Matrices the order of multiplication usually changes the answer. Do not assume that AB = BA, it is almost never true. So how do we solve this one? Using the same method, but put A -1 in front: And we know that A 1 A = I, so: We can remove I: A 1 AX = A 1 B IX = A 1 B X = A 1 B And we have our answer (assuming we can calculate A -1 ) Why don't we try our example from above, but with the data set up this way around. (Yes, you can do this, just be careful how you set it up.) This is what it looks like as AX = B: It looks so neat! I think I prefer it like this. Also note how the rows and columns are swapped over ("Transposed") compared to the previous example. To solve it we need the inverse of "A": 17

20 18 Unit 6: Matrix Algebra It is like the Inverse we got before, but Transposed (rows and columns swapped over). Now we can solve using: X = A -1 B Points to Remember The Inverse of A is A -1 only when A A -1 = A -1 A = I Same answer: 16 children and 22 adults. So, Matrices are powerful things, but they do need to be set up correctly! To find the Inverse of a 2x2 Matrix: swap the positions The Inverse May Not Exist of a and d, put First of all, to have an Inverse the Matrix must be "Square" (same number negatives in front of rows and columns). of b and c, and But also the determinant cannot be zero (or you would end up dividing divide everything by zero). How about this: by the determinant. Sometimes there is no Inverse at all 24-24? That equals 0, and 1/0 is undefined. We cannot go any further! This Matrix has no Inverse. Such a Matrix is called "Singular", which only happens when the determinant is zero. And it makes sense... look at the numbers: the second row is just double the first row, and does not add any new information. Imagine in our example above that the prices on the train were exactly, say, 50% higher... we wouldn't be any closer to figuring out how many adults and children... we need something different. And the determinant neatly works this out. Bigger Matrices The inverse of a 2x2 is easy... compared to larger matrices (such as a 3x3, 4x4, etc). For those larger matrices there are three main methods to work out the inverse:

21 BBA 120 Business Mathematics Inverse of a Matrix using Elementary Row Operations (Gauss- Jordan) Inverse of a Matrix using Minors, Cofactors and Adjugate Use a computer (such as the Matrix Calculator) Inverse of a Matrix using Minors, Cofactors and Adjugate You can calculate the Inverse of a Matrix by 1) calculating the Matrix of Minors, 2) then turn that into the Matrix of Cofactors, 3) then the Adjugate, and 4) multiply that by 1/Determinant. But it is best explained by working through an example! Example: find the Inverse of A: It needs 4 steps. It is all simple arithmetic but there is a lot of it, so try not to make a mistake! 19

22 20 Unit 6: Matrix Algebra A minor of a matrix A is the determinant of some smaller square matrix, cut down from A by removing one or more of its rows or columns. Minors obtained by removing just one row and one column from square matrices (first minors) are required for calculating matrix cofactors, which in turn are useful for computing both the determinant and inverse of square matrices. Step 1: Matrix of Minors The first step is to create a "Matrix of Minors": For each element of the matrix: ignore the values on the current row and column calculate the determinant of the remaining values Put those determinants into a matrix (the "Matrix of Minors") Here are the first two, and last two, calculations of the "Matrix of Minors" (notice how I ignore the values in the current row and columns, and calculate the determinant using the remaining values): And here is the calculation for the whole matrix: Step 2: Matrix of Cofactors This is easy! Just apply a "checkerboard" of minuses to the "Matrix of Minors". In other words, you need to change the sign of alternate cells, like this:

23 BBA 120 Business Mathematics Step 3: Adjugate (also called Adjoint) Now "Transpose" all elements of the previous matrix... in other words swap their positions over the diagonal (the diagonal stays the same): Step 4: Multiply by 1/Determinant Now find the determinant of the original matrix. This isn't too hard, because we already calculated the determinants of the smaller parts when we did "Matrix of Minors". The adjugate of a matrix A is the transpose of the cofactor matrix C of A:. So: multiply the top row elements by their matching "minor" determinants: Determinant = = 10 And now multiply the Adjugate by 1/Determinant: And we are done! Summary For a 3 3 matrix the matrix inverse is 21

24 22 Unit 6: Matrix Algebra POINTS TO REMEMBER For each element, calculate the determinant of the values not on the row or column, to make the Matrix of Minors Apply a checkerboard of minuses to make the Matrix of Cofactors Transpose to make the Adjugate Multiply by 1/Determinant to make the Inverse Larger Matrices It is exactly the same steps for larger matrices (such as a 4 4, 5 5, etc), but wow! there is a lot of calculation involved. For a 4 4 Matrix you have to calculate determinants. So it is often easier to use computers (such as the Matrix Calculator.) More Examples For a 2 2 generic matrix, The adjugate of the 2 2 matrix is It is seen that det(adj(a)) = det(a) and adj(adj(a)) = A.. For a 3 3 generic matrix Consider the matrix

25 BBA 120 Business Mathematics Its adjugate is the transpose of the cofactor matrix So that we have where. Therefore C, the matrix of cofactors for A, is The adjugate is the transpose of the cofactor matrix. Thus, for instance, the (3,2) entry of the adjugate is the (2,3) cofactor of A. (In this example, C happens to be its own transpose, so adj(a) = C.) 23

26 24 Unit 6: Matrix Algebra Cramer s Rule Cramer's Rule Recall the general 3 4 matrix used to solve systems of three equations: This matrix will be used to solve systems by Cramer's Rule. We divide it into four separate 3 3 matrices: This rule for solving equations is known as Cramer s rule, named after the Swiss mathematician Gabriel Cramer ( ), although it was initially invented by Leibniz. It may be easily generalized to the case of solving n linear equations in n unknowns. Cramer showed promise in mathematics from an early age. At 18 he received his doctorate and at 20 he was cochair of mathematics at the University of Geneva. a 1 b 1 c 1 D = [ a 2 b 2 c 2 ] a 3 b 3 c 3 d 1 b 1 c 1 D x = [ d 2 b 2 c 2 ] d 3 b 3 c 3 a 1 d 1 c 1 D y = [ a 2 d 2 c 2 ] a 3 d 3 c 3 a 1 b 1 d 1 D z = [ a 2 b 2 d 2 ] a 3 b 3 d 3 D is the 3 3 coefficient matrix, and D x, D y, and D z are each the result of substituting the constant column for one of the coefficient columns in D. Note: If detd = 0 and D x, detd y, or detd z 0, the system is inconsistent. If detd = 0 and D x = detd y = detd z = 0, the system has multiple solutions. Cramer's Rule states that: x = detd x detd y = detd y detd z = detd z detd Thus, to solve a system of three equations with three variables using Cramer's Rule,

27 BBA 120 Business Mathematics 1. Arrange the system in the following form: 2. Create D, D x, D y, and D z. a 1 x + b 1 y + c 1 z = d 1 a 2 x + b 2 y + c 2 z = d 2 a 3 x + b 3 y + c 3 z = d 3 3. Find detd, detd x, detd y, and detd z 4. x = detd x detd, y = detd y detd, and z = detd z detd. Example: Solve the following system: Solution: 1. Rearrange the system: 2. Create the matrices: 8x + 10z = 7y x + 3y + 8z = 7 5y + 9 = 4x + 2z 8x 7y + 10z = 15 2x + 3y + 8z = 7 4x + 5y 2z = D = [ ] D x = [ ] D y = [ ] D z = [ ] Find the determinants: detd = ( ) ( ) = = 48 detd x = ( ) ( ) = =

28 26 Unit 6: Matrix Algebra detd y = ( ) ( ) = 772 ( 916) = 144 detd z = ( ) ( ) = = x = = 7, y = = 3, z = = 2 Thus, (x, y, z) = (7, 3, 2) Exercises: 1. Can you use Cramer s rule to solve a linear system with a 3 2 coefficient matrix? Explain. 2. Can you use Cramer s rule to solve a linear system with a 4 4 coefficient matrix? Explain. 3. Evaluate each second-order determinant i ii ii iii Evaluate each third-order determinant i ii Use Crammers Rule to solve the following systems of equations. i. ii. iii. 2x 3y + z = 3 4x + 3y + 2z = 11 x y z = 3 x + 4y 3z = 25 3x + y z = 2 4x + y + 2z = 1 12x 14y + 11z = 5 15x + 7y 9z = 13 5x 3y + 2z = 0 6. REVENUE ANALYSIS A company manufactures ten-speed and threespeed bicycles. The weekly demand equations are

29 BBA 120 Business Mathematics p = x + 5y q = x 4y where $p is the price of a ten-speed bicycle, $q is the price of a threespeed bicycle, x is the weekly demand for ten-speed bicycles, and y is the weekly demand for three-speed bicycles. The weekly revenue R is given by R = xp + yp (A) Use system (above) to express the daily revenue in terms of x and y only. (B) Use Cramer s rule to solve system for x and y in terms of p and q, and then express the daily revenue R in terms of p and q only. 27

MATRICES AND MATRIX OPERATIONS

MATRICES AND MATRIX OPERATIONS SIZE OF THE MATRIX is defined by number of rows and columns in the matrix. For the matrix that have m rows and n columns we say the size of the matrix is m x n. If matrix have the same number of rows (n)

More information

MATRICES The numbers or letters in any given matrix are called its entries or elements

MATRICES The numbers or letters in any given matrix are called its entries or elements MATRICES A matrix is defined as a rectangular array of numbers. Examples are: 1 2 4 a b 1 4 5 A : B : C 0 1 3 c b 1 6 2 2 5 8 The numbers or letters in any given matrix are called its entries or elements

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

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

TOPIC III LINEAR ALGEBRA

TOPIC III LINEAR ALGEBRA [1] Linear Equations TOPIC III LINEAR ALGEBRA (1) Case of Two Endogenous Variables 1) Linear vs. Nonlinear Equations Linear equation: ax + by = c, where a, b and c are constants. 2 Nonlinear equation:

More information

Introduction to Determinants

Introduction to Determinants Introduction to Determinants For any square matrix of order 2, we have found a necessary and sufficient condition for invertibility. Indeed, consider the matrix The matrix A is invertible if and only if.

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

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

ECON 186 Class Notes: Linear Algebra

ECON 186 Class Notes: Linear Algebra ECON 86 Class Notes: Linear Algebra Jijian Fan Jijian Fan ECON 86 / 27 Singularity and Rank As discussed previously, squareness is a necessary condition for a matrix to be nonsingular (have an inverse).

More information

7.2 Matrix Algebra. DEFINITION Matrix. D 21 a 22 Á a 2n. EXAMPLE 1 Determining the Order of a Matrix d. (b) The matrix D T has order 4 * 2.

7.2 Matrix Algebra. DEFINITION Matrix. D 21 a 22 Á a 2n. EXAMPLE 1 Determining the Order of a Matrix d. (b) The matrix D T has order 4 * 2. 530 CHAPTER 7 Systems and Matrices 7.2 Matrix Algebra What you ll learn about Matrices Matrix Addition and Subtraction Matrix Multiplication Identity and Inverse Matrices Determinant of a Square Matrix

More information

Getting Started with Communications Engineering. Rows first, columns second. Remember that. R then C. 1

Getting Started with Communications Engineering. Rows first, columns second. Remember that. R then C. 1 1 Rows first, columns second. Remember that. R then C. 1 A matrix is a set of real or complex numbers arranged in a rectangular array. They can be any size and shape (provided they are rectangular). A

More information

JUST THE MATHS UNIT NUMBER 9.3. MATRICES 3 (Matrix inversion & simultaneous equations) A.J.Hobson

JUST THE MATHS UNIT NUMBER 9.3. MATRICES 3 (Matrix inversion & simultaneous equations) A.J.Hobson JUST THE MATHS UNIT NUMBER 93 MATRICES 3 (Matrix inversion & simultaneous equations) by AJHobson 931 Introduction 932 Matrix representation of simultaneous linear equations 933 The definition of a multiplicative

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

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

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

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 Matrix Inversion Algorithm One payoff from this theorem: It gives us a way to invert matrices.

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

M. Matrices and Linear Algebra

M. Matrices and Linear Algebra M. Matrices and Linear Algebra. Matrix algebra. In section D we calculated the determinants of square arrays of numbers. Such arrays are important in mathematics and its applications; they are called matrices.

More information

Lesson 3. Inverse of Matrices by Determinants and Gauss-Jordan Method

Lesson 3. Inverse of Matrices by Determinants and Gauss-Jordan Method Module 1: Matrices and Linear Algebra Lesson 3 Inverse of Matrices by Determinants and Gauss-Jordan Method 3.1 Introduction In lecture 1 we have seen addition and multiplication of matrices. Here we shall

More information

Second Midterm Exam April 14, 2011 Answers., and

Second Midterm Exam April 14, 2011 Answers., and Mathematics 34, Spring Problem ( points) (a) Consider the matrices all matrices. Second Midterm Exam April 4, Answers [ Do these matrices span M? ] [, ] [, and Lectures & (Wilson) ], as vectors in the

More information

1111: Linear Algebra I

1111: Linear Algebra I 1111: Linear Algebra I Dr. Vladimir Dotsenko (Vlad) Michaelmas Term 2015 Dr. Vladimir Dotsenko (Vlad) 1111: Linear Algebra I Michaelmas Term 2015 1 / 10 Row expansion of the determinant Our next goal is

More information

MATH Mathematics for Agriculture II

MATH Mathematics for Agriculture II MATH 10240 Mathematics for Agriculture II Academic year 2018 2019 UCD School of Mathematics and Statistics Contents Chapter 1. Linear Algebra 1 1. Introduction to Matrices 1 2. Matrix Multiplication 3

More information

All of my class notes can be found at

All of my class notes can be found at My name is Leon Hostetler I am currently a student at Florida State University majoring in physics as well as applied and computational mathematics Feel free to download, print, and use these class notes

More information

Introduction to Matrices

Introduction to Matrices 214 Analysis and Design of Feedback Control Systems Introduction to Matrices Derek Rowell October 2002 Modern system dynamics is based upon a matrix representation of the dynamic equations governing the

More information

Methods for Solving Linear Systems Part 2

Methods for Solving Linear Systems Part 2 Methods for Solving Linear Systems Part 2 We have studied the properties of matrices and found out that there are more ways that we can solve Linear Systems. In Section 7.3, we learned that we can use

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

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

Phys 201. Matrices and Determinants

Phys 201. Matrices and Determinants Phys 201 Matrices and Determinants 1 1.1 Matrices 1.2 Operations of matrices 1.3 Types of matrices 1.4 Properties of matrices 1.5 Determinants 1.6 Inverse of a 3 3 matrix 2 1.1 Matrices A 2 3 7 =! " 1

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

Announcements Wednesday, October 25

Announcements Wednesday, October 25 Announcements Wednesday, October 25 The midterm will be returned in recitation on Friday. The grade breakdown is posted on Piazza. You can pick it up from me in office hours before then. Keep tabs on your

More information

MTH Linear Algebra. Study Guide. Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education

MTH Linear Algebra. Study Guide. Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education MTH 3 Linear Algebra Study Guide Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education June 3, ii Contents Table of Contents iii Matrix Algebra. Real Life

More information

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra 1.1. Introduction SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear algebra is a specific branch of mathematics dealing with the study of vectors, vector spaces with functions that

More information

Linear Algebra Tutorial for Math3315/CSE3365 Daniel R. Reynolds

Linear Algebra Tutorial for Math3315/CSE3365 Daniel R. Reynolds Linear Algebra Tutorial for Math3315/CSE3365 Daniel R. Reynolds These notes are meant to provide a brief introduction to the topics from Linear Algebra that will be useful in Math3315/CSE3365, Introduction

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

1 Matrices and matrix algebra

1 Matrices and matrix algebra 1 Matrices and matrix algebra 1.1 Examples of matrices A matrix is a rectangular array of numbers and/or variables. For instance 4 2 0 3 1 A = 5 1.2 0.7 x 3 π 3 4 6 27 is a matrix with 3 rows and 5 columns

More information

1 Matrices and Systems of Linear Equations. a 1n a 2n

1 Matrices and Systems of Linear Equations. a 1n a 2n March 31, 2013 16-1 16. Systems of Linear Equations 1 Matrices and Systems of Linear Equations An m n matrix is an array A = (a ij ) of the form a 11 a 21 a m1 a 1n a 2n... a mn where each a ij is a real

More information

Elementary Linear Algebra

Elementary Linear Algebra Matrices J MUSCAT Elementary Linear Algebra Matrices Definition Dr J Muscat 2002 A matrix is a rectangular array of numbers, arranged in rows and columns a a 2 a 3 a n a 2 a 22 a 23 a 2n A = a m a mn We

More information

General Mathematics 2018 Chapter 5 - Matrices

General Mathematics 2018 Chapter 5 - Matrices General Mathematics 2018 Chapter 5 - Matrices Key knowledge The concept of a matrix and its use to store, display and manipulate information. Types of matrices (row, column, square, zero, identity) and

More information

Example: 2x y + 3z = 1 5y 6z = 0 x + 4z = 7. Definition: Elementary Row Operations. Example: Type I swap rows 1 and 3

Example: 2x y + 3z = 1 5y 6z = 0 x + 4z = 7. Definition: Elementary Row Operations. Example: Type I swap rows 1 and 3 Linear Algebra Row Reduced Echelon Form Techniques for solving systems of linear equations lie at the heart of linear algebra. In high school we learn to solve systems with or variables using elimination

More information

A primer on matrices

A primer on matrices A primer on matrices Stephen Boyd August 4, 2007 These notes describe the notation of matrices, the mechanics of matrix manipulation, and how to use matrices to formulate and solve sets of simultaneous

More information

Linear Algebra Primer

Linear Algebra Primer Introduction Linear Algebra Primer Daniel S. Stutts, Ph.D. Original Edition: 2/99 Current Edition: 4//4 This primer was written to provide a brief overview of the main concepts and methods in elementary

More information

POLI270 - Linear Algebra

POLI270 - Linear Algebra POLI7 - Linear Algebra Septemer 8th Basics a x + a x +... + a n x n b () is the linear form where a, b are parameters and x n are variables. For a given equation such as x +x you only need a variable and

More information

Final Review Sheet. B = (1, 1 + 3x, 1 + x 2 ) then 2 + 3x + 6x 2

Final Review Sheet. B = (1, 1 + 3x, 1 + x 2 ) then 2 + 3x + 6x 2 Final Review Sheet The final will cover Sections Chapters 1,2,3 and 4, as well as sections 5.1-5.4, 6.1-6.2 and 7.1-7.3 from chapters 5,6 and 7. This is essentially all material covered this term. Watch

More information

Section 5.5: Matrices and Matrix Operations

Section 5.5: Matrices and Matrix Operations Section 5.5 Matrices and Matrix Operations 359 Section 5.5: Matrices and Matrix Operations Two club soccer teams, the Wildcats and the Mud Cats, are hoping to obtain new equipment for an upcoming season.

More information

Mon Feb Matrix algebra and matrix inverses. Announcements: Warm-up Exercise:

Mon Feb Matrix algebra and matrix inverses. Announcements: Warm-up Exercise: Math 2270-004 Week 5 notes We will not necessarily finish the material from a given day's notes on that day We may also add or subtract some material as the week progresses, but these notes represent an

More information

11 a 12 a 13 a 21 a 22 a b 12 b 13 b 21 b 22 b b 11 a 12 + b 12 a 13 + b 13 a 21 + b 21 a 22 + b 22 a 23 + b 23

11 a 12 a 13 a 21 a 22 a b 12 b 13 b 21 b 22 b b 11 a 12 + b 12 a 13 + b 13 a 21 + b 21 a 22 + b 22 a 23 + b 23 Chapter 2 (3 3) Matrices The methods used described in the previous chapter for solving sets of linear equations are equally applicable to 3 3 matrices. The algebra becomes more drawn out for larger matrices,

More information

Determinants - Uniqueness and Properties

Determinants - Uniqueness and Properties Determinants - Uniqueness and Properties 2-2-2008 In order to show that there s only one determinant function on M(n, R), I m going to derive another formula for the determinant It involves permutations

More information

MAC Learning Objectives. Learning Objectives (Cont.) Module 10 System of Equations and Inequalities II

MAC Learning Objectives. Learning Objectives (Cont.) Module 10 System of Equations and Inequalities II MAC 1140 Module 10 System of Equations and Inequalities II Learning Objectives Upon completing this module, you should be able to 1. represent systems of linear equations with matrices. 2. transform a

More information

3. Replace any row by the sum of that row and a constant multiple of any other row.

3. Replace any row by the sum of that row and a constant multiple of any other row. Section. Solution of Linear Systems by Gauss-Jordan Method A matrix is an ordered rectangular array of numbers, letters, symbols or algebraic expressions. A matrix with m rows and n columns has size or

More information

MAT 1332: CALCULUS FOR LIFE SCIENCES. Contents. 1. Review: Linear Algebra II Vectors and matrices Definition. 1.2.

MAT 1332: CALCULUS FOR LIFE SCIENCES. Contents. 1. Review: Linear Algebra II Vectors and matrices Definition. 1.2. MAT 1332: CALCULUS FOR LIFE SCIENCES JING LI Contents 1 Review: Linear Algebra II Vectors and matrices 1 11 Definition 1 12 Operations 1 2 Linear Algebra III Inverses and Determinants 1 21 Inverse Matrices

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

Matrices. Chapter Keywords and phrases. 3.2 Introduction

Matrices. Chapter Keywords and phrases. 3.2 Introduction Chapter 3 Matrices 3.1 Keywords and phrases Special matrices: (row vector, column vector, zero, square, diagonal, scalar, identity, lower triangular, upper triangular, symmetric, row echelon form, reduced

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

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

Chapter 7. Linear Algebra: Matrices, Vectors,

Chapter 7. Linear Algebra: Matrices, Vectors, Chapter 7. Linear Algebra: Matrices, Vectors, Determinants. Linear Systems Linear algebra includes the theory and application of linear systems of equations, linear transformations, and eigenvalue problems.

More information

Section 12.4 Algebra of Matrices

Section 12.4 Algebra of Matrices 244 Section 2.4 Algebra of Matrices Before we can discuss Matrix Algebra, we need to have a clear idea what it means to say that two matrices are equal. Let's start a definition. Equal Matrices Two matrices

More information

Elementary Linear Algebra

Elementary Linear Algebra Elementary Linear Algebra Linear algebra is the study of; linear sets of equations and their transformation properties. Linear algebra allows the analysis of; rotations in space, least squares fitting,

More information

Vocabulary. A network is a set of objects. that are connected together by a. The vertices of a network are the. The arcs or edges of a network show

Vocabulary. A network is a set of objects. that are connected together by a. The vertices of a network are the. The arcs or edges of a network show Unit 4+ Vocabulary Knowledge Rating* Lesson Vocabulary Terms Definition Picture/Example/Notation A network is a set of objects 1 Network that are connected together by a. 1 Vertices The vertices of a network

More information

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to Linear Algebra SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 1 Introduction to 1.1. Introduction Linear algebra is a specific branch of mathematics dealing with the study of vectors, vector spaces with functions that

More information

Matrices. Chapter Definitions and Notations

Matrices. Chapter Definitions and Notations Chapter 3 Matrices 3. Definitions and Notations Matrices are yet another mathematical object. Learning about matrices means learning what they are, how they are represented, the types of operations which

More information

INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW MATRICES

INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW MATRICES 1 CHAPTER 4 MATRICES 1 INSTITIÚID TEICNEOLAÍOCHTA CHEATHARLACH INSTITUTE OF TECHNOLOGY CARLOW MATRICES 1 Matrices Matrices are of fundamental importance in 2-dimensional and 3-dimensional graphics programming

More information

L3-1: Determinants: The Good, the Bad and the Ugly 12 Nov 2012

L3-1: Determinants: The Good, the Bad and the Ugly 12 Nov 2012 L3-1: Determinants: The Good, the Bad and the Ugly 12 Nov 2012 Man with no name: Tut, tut. Such ingratitude after all the times I saved your life. Il Buono, il bruto, il cattivo (1966) See Hefferon, Chapter

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

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

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

[Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty.]

[Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty.] Math 43 Review Notes [Disclaimer: This is not a complete list of everything you need to know, just some of the topics that gave people difficulty Dot Product If v (v, v, v 3 and w (w, w, w 3, then the

More information

Chapter 2. Ma 322 Fall Ma 322. Sept 23-27

Chapter 2. Ma 322 Fall Ma 322. Sept 23-27 Chapter 2 Ma 322 Fall 2013 Ma 322 Sept 23-27 Summary ˆ Matrices and their Operations. ˆ Special matrices: Zero, Square, Identity. ˆ Elementary Matrices, Permutation Matrices. ˆ Voodoo Principle. What is

More information

The word Matrices is the plural of the word Matrix. A matrix is a rectangular arrangement (or array) of numbers called elements.

The word Matrices is the plural of the word Matrix. A matrix is a rectangular arrangement (or array) of numbers called elements. Numeracy Matrices Definition The word Matrices is the plural of the word Matrix A matrix is a rectangular arrangement (or array) of numbers called elements A x 3 matrix can be represented as below Matrix

More information

Mathematics 13: Lecture 10

Mathematics 13: Lecture 10 Mathematics 13: Lecture 10 Matrices Dan Sloughter Furman University January 25, 2008 Dan Sloughter (Furman University) Mathematics 13: Lecture 10 January 25, 2008 1 / 19 Matrices Recall: A matrix is a

More information

Numerical Analysis Lecture Notes

Numerical Analysis Lecture Notes Numerical Analysis Lecture Notes Peter J Olver 3 Review of Matrix Algebra Vectors and matrices are essential for modern analysis of systems of equations algebrai, differential, functional, etc In this

More information

18.02 Multivariable Calculus Fall 2007

18.02 Multivariable Calculus Fall 2007 MIT OpenCourseWare http://ocw.mit.edu 18.02 Multivariable Calculus Fall 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. M. Matrices and Linear Algebra

More information

STEP Support Programme. STEP 2 Matrices Topic Notes

STEP Support Programme. STEP 2 Matrices Topic Notes STEP Support Programme STEP 2 Matrices Topic Notes Definitions............................................. 2 Manipulating Matrices...................................... 3 Transformations.........................................

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

4016 MATHEMATICS TOPIC 1: NUMBERS AND ALGEBRA SUB-TOPIC 1.11 MATRICES

4016 MATHEMATICS TOPIC 1: NUMBERS AND ALGEBRA SUB-TOPIC 1.11 MATRICES MATHEMATICS TOPIC : NUMBERS AND ALGEBRA SUB-TOPIC. MATRICES CONTENT OUTLINE. Display of information in the form of a matrix of any order. Interpreting the data in a given matrix. Product of a scalar quantity

More information

A primer on matrices

A primer on matrices A primer on matrices Stephen Boyd August 4, 2007 These notes describe the notation of matrices, the mechanics of matrix manipulation, and how to use matrices to formulate and solve sets of simultaneous

More information

Matrices and Determinants

Matrices and Determinants Chapter1 Matrices and Determinants 11 INTRODUCTION Matrix means an arrangement or array Matrices (plural of matrix) were introduced by Cayley in 1860 A matrix A is rectangular array of m n numbers (or

More information

Math Studio College Algebra

Math Studio College Algebra Math 100 - Studio College Algebra Rekha Natarajan Kansas State University November 19, 2014 Systems of Equations Systems of Equations A system of equations consists of Systems of Equations A system of

More information

A FIRST COURSE IN LINEAR ALGEBRA. An Open Text by Ken Kuttler. Matrix Arithmetic

A FIRST COURSE IN LINEAR ALGEBRA. An Open Text by Ken Kuttler. Matrix Arithmetic A FIRST COURSE IN LINEAR ALGEBRA An Open Text by Ken Kuttler Matrix Arithmetic Lecture Notes by Karen Seyffarth Adapted by LYRYX SERVICE COURSE SOLUTION Attribution-NonCommercial-ShareAlike (CC BY-NC-SA)

More information

CLASS 12 ALGEBRA OF MATRICES

CLASS 12 ALGEBRA OF MATRICES CLASS 12 ALGEBRA OF MATRICES Deepak Sir 9811291604 SHRI SAI MASTERS TUITION CENTER CLASS 12 A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements

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

Systems of Linear Equations in two variables (4.1)

Systems of Linear Equations in two variables (4.1) Systems of Linear Equations in two variables (4.1) 1. Solve by graphing 2. Solve using substitution 3. Solve by elimination by addition 4. Applications Opening example A restaurant serves two types of

More information

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

7.4. The Inverse of a Matrix. Introduction. Prerequisites. Learning Outcomes The Inverse of a Matrix 7.4 Introduction In number arithmetic every number a 0has 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

MAC Module 1 Systems of Linear Equations and Matrices I

MAC Module 1 Systems of Linear Equations and Matrices I MAC 2103 Module 1 Systems of Linear Equations and Matrices I 1 Learning Objectives Upon completing this module, you should be able to: 1. Represent a system of linear equations as an augmented matrix.

More information

MTH 2032 Semester II

MTH 2032 Semester II MTH 232 Semester II 2-2 Linear Algebra Reference Notes Dr. Tony Yee Department of Mathematics and Information Technology The Hong Kong Institute of Education December 28, 2 ii Contents Table of Contents

More information

MATRICES. knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns.

MATRICES. knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns. MATRICES After studying this chapter you will acquire the skills in knowledge on matrices Knowledge on matrix operations. Matrix as a tool of solving linear equations with two or three unknowns. List of

More information

Determinants and Scalar Multiplication

Determinants and Scalar Multiplication Properties of Determinants In the last section, we saw how determinants interact with the elementary row operations. There are other operations on matrices, though, such as scalar multiplication, matrix

More information

Review from Bootcamp: Linear Algebra

Review from Bootcamp: Linear Algebra Review from Bootcamp: Linear Algebra D. Alex Hughes October 27, 2014 1 Properties of Estimators 2 Linear Algebra Addition and Subtraction Transpose Multiplication Cross Product Trace 3 Special Matrices

More information

Roberto s Notes on Linear Algebra Chapter 4: Matrix Algebra Section 4. Matrix products

Roberto s Notes on Linear Algebra Chapter 4: Matrix Algebra Section 4. Matrix products Roberto s Notes on Linear Algebra Chapter 4: Matrix Algebra Section 4 Matrix products What you need to know already: The dot product of vectors Basic matrix operations. Special types of matrices What you

More information

Inverses and Determinants

Inverses and Determinants Engineering Mathematics 1 Fall 017 Inverses and Determinants I begin finding the inverse of a matrix; namely 1 4 The inverse, if it exists, will be of the form where AA 1 I; which works out to ( 1 4 A

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

Fundamentals of Engineering Analysis (650163)

Fundamentals of Engineering Analysis (650163) Philadelphia University Faculty of Engineering Communications and Electronics Engineering Fundamentals of Engineering Analysis (6563) Part Dr. Omar R Daoud Matrices: Introduction DEFINITION A matrix is

More information

MATH 240 Spring, Chapter 1: Linear Equations and Matrices

MATH 240 Spring, Chapter 1: Linear Equations and Matrices MATH 240 Spring, 2006 Chapter Summaries for Kolman / Hill, Elementary Linear Algebra, 8th Ed. Sections 1.1 1.6, 2.1 2.2, 3.2 3.8, 4.3 4.5, 5.1 5.3, 5.5, 6.1 6.5, 7.1 7.2, 7.4 DEFINITIONS Chapter 1: Linear

More information

Appendix C Vector and matrix algebra

Appendix C Vector and matrix algebra Appendix C Vector and matrix algebra Concepts Scalars Vectors, rows and columns, matrices Adding and subtracting vectors and matrices Multiplying them by scalars Products of vectors and matrices, scalar

More information

7.6 The Inverse of a Square Matrix

7.6 The Inverse of a Square Matrix 7.6 The Inverse of a Square Matrix Copyright Cengage Learning. All rights reserved. What You Should Learn Verify that two matrices are inverses of each other. Use Gauss-Jordan elimination to find inverses

More information

Basics of Calculus and Algebra

Basics of Calculus and Algebra Monika Department of Economics ISCTE-IUL September 2012 Basics of linear algebra Real valued Functions Differential Calculus Integral Calculus Optimization Introduction I A matrix is a rectangular array

More information

Chapter 3. Determinants and Eigenvalues

Chapter 3. Determinants and Eigenvalues Chapter 3. Determinants and Eigenvalues 3.1. Determinants With each square matrix we can associate a real number called the determinant of the matrix. Determinants have important applications to the theory

More information

An Introduction To Linear Algebra. Kuttler

An Introduction To Linear Algebra. Kuttler An Introduction To Linear Algebra Kuttler April, 7 Contents Introduction 7 F n 9 Outcomes 9 Algebra in F n Systems Of Equations Outcomes Systems Of Equations, Geometric Interpretations Systems Of Equations,

More information

1.1 Linear Equations and Inequalities

1.1 Linear Equations and Inequalities 1.1 Linear Equations and Inequalities Linear Equation in 1 Variable Any equation that can be written in the following form: ax + b = 0 a,b R, a 0 and x is a variable Any equation has a solution, sometimes

More information

CHAPTER 8: Matrices and Determinants

CHAPTER 8: Matrices and Determinants (Exercises for Chapter 8: Matrices and Determinants) E.8.1 CHAPTER 8: Matrices and Determinants (A) means refer to Part A, (B) means refer to Part B, etc. Most of these exercises can be done without a

More information

Matrix Dimensions(orders)

Matrix Dimensions(orders) Definition of Matrix A matrix is a collection of numbers arranged into a fixed number of rows and columns. Usually the numbers are real numbers. In general, matrices can contain complex numbers but we

More information