3.3 Matrix Operations

Two club soccer teams, the Wildcats and the Mud Cats, are hoping to obtain new equipment for an upcoming season. The table below shows the needs of both teams.

Wildcats Mud Cats
Goals 6 10
Balls 30 24
Jerseys 14 20

A goal costs $300; a ball costs $10; and a jersey costs $30. How can we find the total cost for the equipment needed for each team?

In the last section we learned how matrices can be used to solve systems of linear equations.  In this section, we will explore other uses of matrices, and discover a method in which the data in the soccer equipment table can be displayed and used for calculating other information. Then, we will be able to calculate the cost of the equipment in a way that can be easily translated to a computer or calculator.

Finding the Sum and Difference of Two Matrices

To solve a problem like the one in the section opener, we can use a matrix, which is a rectangular array of numbers. A row in a matrix is a set of numbers that are aligned horizontally. A column in a matrix is a set of numbers that are aligned vertically. Each number is an entry, sometimes called an element, of the matrix. Matrices (plural) are enclosed in [  ] or (  ), and are usually named with capital letters. For example, three matrices named A, B, and C are shown below.

    \[A = \left[ {\begin{array}{*{20}{c}} 1&2\\ 3&4 \end{array}} \right],\quad B = \left[ {\begin{array}{*{20}{c}} 1&2&7\\ 0&{ - 5}&6\\ 7&8&2 \end{array}} \right],\quad C = \left[ {\begin{array}{*{20}{c}} { - 1}\\ {\,\,\,0}\\ {\,\,\,3} \end{array}\,\,\,\,\begin{array}{*{20}{c}} 3\\ 2\\ 1 \end{array}} \right]\]

Describing Matrices

A matrix is often referred to by its size or dimensions: m \times n indicating m rows and n columns. Matrix entries are defined first by row and then by column. For example, to locate the entry in matrix A identified as a_{ij}, we look for the entry in row i, column j. In matrix A,  shown below, the entry in row 2, column 3 is a_{23}.

    \[A = \left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}&{{a_{13}}}\\ {{a_{21}}}&{{a_{22}}}&{{a_{23}}}\\ {{a_{31}}}&{{a_{32}}}&{{a_{33}}} \end{array}} \right]\]

A square matrix is a matrix with dimensions n \times n, meaning that it has the same number of rows as columns. The 3 \times 3 matrix above is an example of a square matrix.

A row matrix is a matrix consisting of one row with dimensions 1 \times n

    \[\left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}&{{a_{13}}} \end{array}} \right]\]

A column matrix is a matrix consisting of one column with dimensions m \times 1.

    \[\left[ {\begin{array}{*{20}{c}} {{a_{11}}}\\ {{a_{21}}}\\ {{a_{31}}} \end{array}} \right]\]

A matrix may be used to represent a system of equations. In these cases, the numbers represent the coefficients of the variables in the system. Matrices often make solving systems of equations easier because they are not encumbered with variables. We will investigate this idea further in the next section, but first we will look at basic matrix operations.

Matrices

A matrix is a rectangular array of numbers that is usually named by a capital letter:  A,B,C, and so on. Each entry in a matrix is referred to as a_{ij} such that i represents the row and j represents the column. Matrices are often referred to by their dimensions:  m \times n indicating m rows and n columns.

Example of a Matrix

Given matrix A = \left[ {\begin{array}{*{20}{c}} 2&1\\ 2&4\\ 3&1 \end{array}} \right]
a. What are the dimension of matrix A?
b. What are the entries at a_{31} and a_{22}?

a. The dimensions are 3 \times 2 because there are 3 rows and 2 columns.

b. Entry a_{31} is the number at row 3 column 1, which is 3. The entry at a_{22} is the number at row 2, column 2, which is 4. Remember, the row comes first, then the column.

Adding and Subtracting Matrices

We use matrices to list data or to represent systems. Because the entries are numbers, we can perform operations on matrices. We add or subtract matrices by adding or subtracting corresponding entries.

In order to do this, the entries must correspond. Therefore, addition and subtraction of matrices is only possible when the matrices have the same dimensions. We can add or subtract a  3 \times 3 matrix and another 3 \times 3 matrix, but we cannot add or subtract a 2 \times 3 matrix and a 3 \times 3 matrix because some entries in one matrix will not have a corresponding entry in the other matrix.

Adding and Subtracting Matrices

Given matrices A and B of like dimensions, addition and subtraction of A and B will produce matrix C or matrix D of the same dimensions.
A+B=C such that a_{ij}+b_{ij}=c_{ij}
A-B=D such that a_{ij}-b_{ij}=d_{ij}

Matrix addition is commutative: A+B=B+A

It is also associative: (A+B)+C=A+(B+C)

Example Adding and Subtracting Matrices

Given A and B:
A = \left[ {\begin{array}{*{20}{c}} 2&{ - 10}&{ - 2}\\ {14}&{12}&{10}\\ 4&{ - 2}&2 \end{array}} \right]\quad {\rm{and}}\quad B = \left[ {\begin{array}{*{20}{c}} 6&{10}&{ - 2}\\ 0&{ - 12}&{ - 4}\\ { - 5}&2&{ - 2} \end{array}} \right]
a. Find the sum.
b. Find the difference.

a. Add the corresponding entries:
\begin{array}{c} A + B = \left[ {\begin{array}{*{20}{c}} 2&{ - 10}&{ - 2}\\ {14}&{12}&{10}\\ 4&{ - 2}&2 \end{array}} \right] + \left[ {\begin{array}{*{20}{c}} 6&{10}&{ - 2}\\ 0&{ - 12}&{ - 4}\\ { - 5}&2&{ - 2} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {2 + 6}&{ - 10 + 10}&{ - 2 - 2}\\ {14 + 0}&{12 - 12}&{10 - 4}\\ {4 - 5}&{ - 2 + 2}&{2 - 2} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} 8&0&{ - 4}\\ {14}&0&6\\ { - 1}&0&0 \end{array}} \right] \end{array}

b. Subtract the corresponding entries:
\begin{array}{c} A - B = \left[ {\begin{array}{*{20}{c}} 2&{ - 10}&{ - 2}\\ {14}&{12}&{10}\\ 4&{ - 2}&2 \end{array}} \right] - \left[ {\begin{array}{*{20}{c}} 6&{10}&{ - 2}\\ 0&{ - 12}&{ - 4}\\ { - 5}&2&{ - 2} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {2 - 6}&{ - 10 - 10}&{ - 2 + 2}\\ {14 - 0}&{12 + 12}&{10 + 4}\\ {4 + 5}&{ - 2 - 2}&{2 + 2} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} { - 4}&{ - 20}&0\\ {14}&{24}&{14}\\ 9&{ - 4}&4 \end{array}} \right] \end{array}

Try it Now 1

Add matrix A and matrix B.
A = \left[ {\begin{array}{*{20}{c}} 2\\ 1\\ 1 \end{array}\begin{array}{*{20}{c}} {\,\,\,\,6}\\ {\,\,\,\,\,0}\\ {\,\,\, - 3} \end{array}} \right]\quad {\rm{and}}\quad B = \left[ {\,\begin{array}{*{20}{c}} {\,3}\\ {\,1}\\ { - 4} \end{array}\begin{array}{*{20}{c}} {\,\, - 2}\\ {\,\,\,\,\,5}\\ {\,\,\,\,\,\,3} \end{array}} \right]

Finding Scalar Multiples of a Matrix

Besides adding and subtracting whole matrices, there are many situations in which we need to multiply a matrix by a constant called a scalar. Recall that a scalar is a real number quantity that has magnitude, but not direction. For example, time, temperature, and distance are scalar quantities. The process of scalar multiplication involves multiplying each entry in a matrix by a scalar. A scalar multiple is any entry of a matrix that results from scalar multiplication.

Scalar Multiplication

Scalar multiplication involves finding the product of a constant by each entry in the matrix. Given A:
A = \left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}\\ {{a_{21}}}&{{a_{22}}} \end{array}} \right]

the scalar multiple cA is:
\begin{array}{l} cA = c\left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}\\ {{a_{21}}}&{{a_{22}}} \end{array}} \right]\\ {\rm{ }} = \left[ {\begin{array}{*{20}{c}} {c{a_{11}}}&{c{a_{12}}}\\ {c{a_{21}}}&{c{a_{22}}} \end{array}} \right] \end{array}

Scalar multiplication is distribute. For the matrices A and B and with scalars c and k:
c(A+B)=cA+cB
(c+k)A=cA+kA

Example Multiplying a Matrix by a Scalar

Multiply matrix A by the scalar 3.
A = \left[ {\begin{array}{*{20}{c}} 8&1\\ 5&4 \end{array}} \right]

Multiply each entry in A by the scalar 3.
\begin{array}{c} 3A = 3\left[ {\begin{array}{*{20}{c}} 8&1\\ 5&4 \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {3 \cdot 8}&{3 \cdot 1}\\ {3 \cdot 5}&{3 \cdot 4} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {24}&3\\ {15}&{12} \end{array}} \right] \end{array}

Try it Now 2

Given matrix B find -2B where
B = \left[ {\begin{array}{*{20}{c}} 4&1\\ 3&2 \end{array}} \right]

Example with Scalars and Matrix Addition

Find the sum 3A+2B given the following matrices A and B.
A = \left[ {\begin{array}{*{20}{c}} 1&{ - 2}&0\\ 0&{ - 1}&2\\ 4&3&{ - 6} \end{array}} \right]\quad {\rm{and}}\quad B = \left[ {\begin{array}{*{20}{c}} { - 1}&2&1\\ 0&{ - 3}&2\\ 0&1&{ - 4} \end{array}} \right]

First, find 3A, then 2B.
\begin{array}{c} 3A = \left[ {\begin{array}{*{20}{c}} {3 \cdot 1}&{3\left( { - 2} \right)}&{3 \cdot 0}\\ {3 \cdot 0}&{3\left( { - 1} \right)}&{3 \cdot 2}\\ {3 \cdot 4}&{3 \cdot 3}&{3\left( { - 6} \right)} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} 3&{ - 6}&0\\ 0&{ - 3}&6\\ {12}&9&{ - 18} \end{array}} \right] \end{array}
\begin{array}{c} 2B = \left[ {\begin{array}{*{20}{c}} {2\left( { - 1} \right)}&{2 \cdot 2}&{2 \cdot 1}\\ {2 \cdot 0}&{2\left( { - 3} \right)}&{2 \cdot 2}\\ {2 \cdot 0}&{2 \cdot 1}&{2\left( { - 4} \right)} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} { - 2}&4&2\\ 0&{ - 6}&4\\ 0&2&{ - 8} \end{array}} \right] \end{array}

Now,add 3A+2B.
\begin{array}{c} 3A + 2B = \left[ {\begin{array}{*{20}{c}} 3&{ - 6}&0\\ 0&{ - 3}&6\\ {12}&9&{ - 18} \end{array}} \right] + \left[ {\begin{array}{*{20}{c}} { - 2}&4&2\\ 0&{ - 6}&4\\ 0&2&{ - 8} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {3 - 2}&{ - 6 + 4}&{0 + 2}\\ {0 + 0}&{ - 3 - 6}&{6 + 4}\\ {12 + 0}&{9 + 2}&{ - 18 - 8} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} 1&{ - 2}&2\\ 0&{ - 9}&{10}\\ {12}&{11}&{ - 26} \end{array}} \right] \end{array}

Finding the Product of Two Matrices

In addition to multiplying a matrix by a scalar, we can multiply two matrices. Finding the product of two matrices is only possible when the inner dimensions are the same, meaning that the number of columns of the first matrix is equal to the number of rows of the second matrix. If A is an m\times r matrix and B is an r \times n matrix, then the product matrix AB  is an m \times n matrix. For example, the product  AB is possible because the number of columns in A is the same as the number of rows in B. If the inner dimensions do not match, the product is not defined.

    \[\begin{array}{ccccccccc} \,&A&\,&\,& \cdot &\,&\,&B&\,\\ 2 &\times&3 & \,&\,&\,&3&\times & 3 \end{array}\]

    \[\underbracket{\begin{array}{ccccc} \,&\,&\,&\,&\,\end{array}}_{\textsf{same}}\]

We multiply entries of  A with entries of B according to a specific pattern as outlined below. The process of matrix multiplication becomes clearer when working a problem with real numbers.

To obtain the entries in row i of AB, we multiply the entries in row i  of A  by column j in B and add. For example, given matrices A and B where the dimensions of A are 2 \times 3 and the dimensions of B are 3 \times 3  the product of AB will be a 2 \times 3  matrix.

    \[A = \left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}\\ {{a_{21}}}&{{a_{22}}} \end{array}\,\,\,\,\,\,\begin{array}{*{20}{c}} {{a_{13}}}\\ {{a_{23}}} \end{array}} \right]\quad {\rm{and}}\quad B = \left[ {\begin{array}{*{20}{c}} {{b_{11}}}&{{b _{12}}}&{{b_{13}}}\\ {{b_{21}}}&{{b_{22}}}&{{b_{23}}}\\ {{b_{ & 31}}}&{{b_{32}}}&{{b_{33}}} \end{array}} \right]\]

Multiplying Matrices

To obtain the entry in row 1, column 1 of AB, multiply the first row in A by the first column in B and add.
\left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}&{{a_{13}}} \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} {{b_{11}}}\\ {{b_{21}}}\\ {{b_{31}}} \end{array}} \right] = {a_{11}} \cdot {b_{11}} + {a_{12}} \cdot {b_{21}} + {a_{13}} \cdot {b_{31}}

To obtain the entry in row 1, column 2 of AB, multiply the first row of A by the second column in B, and add.
\left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}&{{a_{13}}} \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} {{b_{12}}}\\ {{b_{22}}}\\ {{b_{32}}} \end{array}} \right] = {a_{11}} \cdot {b_{12}} + {a_{12}} \cdot {b_{22}} + {a_{13}} \cdot {b_{32}}

To obtain the entry in row 1, column 3 of AB multiply the first row of A by the third column in B, and add.
\left[ {\begin{array}{*{20}{c}} {{a_{11}}}&{{a_{12}}}&{{a_{13}}} \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} {{b_{13}}}\\ {{b_{23}}}\\ {{b_{33}}} \end{array}} \right] = {a_{11}} \cdot {b_{13}} + {a_{12}} \cdot {b_{23}} + {a_{13}} \cdot {b_{33}}

We proceed the same way to obtain the second row of AB. In other words, row 2 of A times column 1 of B; row 2 of A times column 2 of B; row 2 of A times column 3 of B. When complete, the product matrix will be
AB = \left[ {\begin{array}{*{20}{c}} \begin{array}{l} {a_{11}} \cdot {b_{11}} + {a_{12}} \cdot {b_{21}} + {a_{13}} \cdot {b_{31}}\\  \end{array}\\ {{a_{21}} \cdot {b_{11}} + {a_{22}} \cdot {b_{21}} + {a_{23}} \cdot {b_{31}}} \end{array}\,\,\,\,\,\,\,\begin{array}{*{20}{c}} \begin{array}{l} {a_{11}} \cdot {b_{12}} + {a_{12}} \cdot {b_{22}} + {a_{13}} \cdot {b_{32}}\\  \end{array}\\ {{a_{21}} \cdot {b_{12}} + {a_{22}} \cdot {b_{22}} + {a_{23}} \cdot {b_{32}}} \end{array}\,\,\,\,\,\,\begin{array}{*{20}{c}} \begin{array}{l} {a_{11}} \cdot {b_{13}} + {a_{12}} \cdot {b_{23}} + {a_{13}} \cdot {b_{33}}\\  \end{array}\\ {{a_{21}} \cdot {b_{13}} + {a_{22}} \cdot {b_{23}} + {a_{23}} \cdot {b_{33}}} \end{array}} \right]

Properties of Matrix Multiplication

For the matrices A, B, and C the following properties hold.

  • Matrix Multiplication is associative: \left(AB\right)C=A \left(BC \right)
  • Matrix Multiplication is distributive: C\left(A+B \right)=CA+CB  and \left(A+B\right)C=AC+BC.

Warning Sign

Matrix Multiplication is NOT commutative.  In other words, for matrices A and B.

AB \neq BA

While they are equal is some specific cases, it is not always true.

Examples of Multiplying Matrices

a. Find AB
A = \left[ {\begin{array}{*{20}{c}} 1&2\\ 3&4 \end{array}} \right]\quad {\rm{and}}\quad B = \left[ {\begin{array}{*{20}{c}} 5&6\\ 7&8 \end{array}} \right]

First, we check the dimensions of the matrices. Matrix A has dimensions 2 \times 2 and matrix B has dimensions 2 \times 2. The inner dimensions are the same so we can perform the multiplication. The product will have the dimensions 2 \times 2.
We perform the operations outlined previously.

\begin{array}{c} AB = \left[ {\begin{array}{*{20}{c}} 1&2\\ 3&4 \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} 5&6\\ 7&8 \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {1 \cdot 5 + 2 \cdot 7}&{1 \cdot 6 + 2 \cdot 8}\\ {3 \cdot 5 + 4 \cdot 7}&{3 \cdot 6 + 4 \cdot 8} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {19}&{22}\\ {43}&{50} \end{array}} \right] \end{array}

b. Given A and B:
i. Find AB.
ii. Find BA.

A = \left[ \begin{array}{l} \begin{array}{*{20}{c}} { - 1}&2&3 \end{array}\\ \begin{array}{*{20}{c}} {\,\,\,4}&0&5 \end{array} \end{array} \right]\quad {\rm{and}}\quad B = \left[ {\begin{array}{*{20}{c}} {\,\,5}\\ { - 4}\\ {\,\,2} \end{array}\,\,\,\begin{array}{*{20}{c}} { - 1}\\ {\,\,0}\\ {\,\,3} \end{array}} \right]

i. As the dimensions of A are 2 \times 3 and the dimensions of B are 3 \times 2, these matrices can be multiplied together because the number of columns in A matches the number of rows in B. The resulting product will be a 2 \times 2 matrix, the number of rows in A by the number of columns in B.

\begin{array}{c} AB = \left[ \begin{array}{l} \begin{array}{*{20}{c}} { - 1}&2&3 \end{array}\\ \begin{array}{*{20}{c}} {\,\,\,4}&0&5 \end{array} \end{array} \right]\left[ {\begin{array}{*{20}{c}} {\,\,5}\\ { - 4}\\ {\,\,2} \end{array}\,\,\,\begin{array}{*{20}{c}} { - 1}\\ {\,\,0}\\ {\,\,3} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} { - 1(5) + 2( - 4) + 3(2)}&{ - 1( - 1) + 2(0) + 3(3)}\\ {4(5) + 0( - 4) + 5(2)}&{4( - 1) + 0(0) + 5(3)} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} { - 7}&{10}\\ {30}&{11} \end{array}} \right] \end{array}

ii.The dimensions of B are 3 \times 2 and the dimensions of A are 2 \times 3. The inner dimensions match so the product is defined and will be a 3 \times 3 matrix.

\begin{array}{c} BA = \left[ {\begin{array}{*{20}{c}} {\,\,5}\\ { - 4}\\ {\,\,2} \end{array}\,\,\,\begin{array}{*{20}{c}} { - 1}\\ {\,\,0}\\ {\,\,3} \end{array}} \right]\left[ \begin{array}{l} \begin{array}{*{20}{c}} { - 1}&2&3 \end{array}\\ \begin{array}{*{20}{c}} {\,\,\,4}&0&5 \end{array} \end{array} \right]\\ = \left[ {\begin{array}{*{20}{c}} {5( - 1) + - 1(4)}&{5(2) + - 1(0)}&{5(3) + - 1(5)}\\ { - 4( - 1) + 0(4)}&{ - 4(2) + 0(0)}&{ - 4(3) + 0(5)}\\ {2( - 1) + 3(4)}&{2(2) + 3(0)}&{2(3) + 3(5)} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} { - 9}&{10}&{10}\\ 4&{ - 8}&{ - 12}\\ {10}&4&{21} \end{array}} \right] \end{array}

Take NoteNotice in the example above that the products AB and BA are not equal.

AB = \left[ {\begin{array}{*{20}{c}} { - 7}&{10}\\ {30}&{11} \end{array}} \right] \ne \left[ {\begin{array}{*{20}{c}} { - 9}&{10}&{10}\\ 4&{ - 8}&{ - 12}\\ {10}&4&{21} \end{array}} \right] = BA

This illustrates the fact that matrix multiplication is not commutative.

Also, this means that it is possible for AB to be defined but not BA.  Consider a matrix A with dimension 3 \times 4 and matrix B with dimension 4 \times 2. For the product AB the inner dimensions are 4 and the product is defined, but for the product BA the inner dimensions are 2 and 3 so the product is undefined.

Try it Now 3

Multiply:  \left[ {\begin{array}{*{20}{c}} 1&{ - 2}\\ 4&0\\ { - 1}&3 \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} 2&3\\ 1&{ - 1} \end{array}} \right]

Example of a Matrix Application

Let’s return to the problem presented at the opening of this section. We have the table below representing the equipment needs of two soccer teams.

Wildcats Mud Cats
Goals 6 10
Balls 30 24
Jerseys 14 20

We are also given the prices of the equipment, $300 for Goals, $10 for Balls and $30 for Jerseys.

We will convert the data to matrices. Thus, the equipment need matrix is written as:
E = \left[ {\begin{array}{*{20}{c}} 6\\ {30}\\ {14} \end{array}\,\,\,\,\,\begin{array}{*{20}{c}} {10}\\ {24}\\ {20} \end{array}} \right]

The cost matrix is written as
C = \left[ {\begin{array}{*{20}{c}} {300}&{10}&{30} \end{array}} \right]

We perform matrix multiplication to obtain costs for the equipment.
\begin{array}{c} CE = \left[ {\begin{array}{*{20}{c}} {300}&{10}&{30} \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} 6\\ {30}\\ {14} \end{array}\,\,\,\,\,\,\begin{array}{*{20}{c}} {10}\\ {24}\\ {20} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {300(6) + 10(30) + 30(14)}&{300(10) + 10(24) + 30(20)} \end{array}} \right]\\ = \left[ {\begin{array}{*{20}{c}} {2,520}&{3,840} \end{array}} \right] \end{array}

The total cost for equipment for the Wildcats is $2,520, and the total cost for equipment for the Mud Cats is $3,840.

The calculation in the last example could easily be calculated using a calculator and computer, which would also easily handle a version of the problem with dozens of teams and hundreds of expenses.  Representing the problem as matrix operations allows us to utilize technology to help solve this type of problem.

Try it Now Answers

  1. A + B = \left[ {\begin{array}{*{20}{c}} 2\\ 1\\ 1 \end{array}\begin{array}{*{20}{c}} {\,\,\,\,6}\\ {\,\,\,\,\,0}\\ {\,\,\, - 3} \end{array}} \right] + \left[ {\,\begin{array}{*{20}{c}} {\,3}\\ {\,1}\\ { - 4} \end{array}\begin{array}{*{20}{c}} {\,\, - 2}\\ {\,\,\,\,\,5}\\ {\,\,\,\,\,\,3} \end{array}} \right] = \left[ {\begin{array}{*{20}{c}} {2\,\, + \,3}\\ {1\,\,\, + \,\,\,1}\\ {1 + ( - 4)} \end{array}\,\,\,\,\,\,\begin{array}{*{20}{c}} {6 + ( - 2)}\\ {0\,\, + \,\,5}\\ { - 3\,\,\, + \,\,\,3} \end{array}} \right] = \left[ {\begin{array}{*{20}{c}} {\,5}\\ {\,\,2}\\ { - 3} \end{array}\,\,\,\,\,\,\begin{array}{*{20}{c}} 4\\ 5\\ 0 \end{array}} \right]
  2. - 2B = \left[ {\begin{array}{*{20}{c}} { - 8}&{ - 2}\\ { - 6}&{ - 4} \end{array}} \right]
  3. \left[ {\begin{array}{*{20}{c}} 1&{ - 2}\\ 4&0\\ { - 1}&3 \end{array}} \right] \cdot \left[ {\begin{array}{*{20}{c}} 2&3\\ 1&{ - 1} \end{array}} \right] = \left[ {\begin{array}{*{20}{c}} {1(2) + ( - 2)(1)}&{1(3) + ( - 2)( - 1)}\\ {4(2) + 0(1)}&{4(3) + 0( - 1)}\\ {( - 1)(2) + (3)(1)}&{( - 1)(3) + (3)( - 1)} \end{array}} \right] = \left[ {\begin{array}{*{20}{c}} 0&5\\ 8&{12}\\ 1&{ - 6} \end{array}} \right]

 

Media Attributions

License

Icon for the Creative Commons Attribution-ShareAlike 4.0 International License

College Algebra for the Managerial Sciences Copyright © by Terri Manthey is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License, except where otherwise noted.

Share This Book