Skip to main content
Logo image

Applied Discrete Structures

Section 5.1 Basic Definitions and Operations

Subsection 5.1.1 Matrix Order and Equality

Definition 5.1.1. matrix.

A matrix is a rectangular array of elements of the form
A=(a11a12a13a1na21a22a23a2na31a32a33a3nam1am2am3amn)
A convenient way of describing a matrix in general is to designate each entry via its position in the array. That is, the entry a34 is the entry in the third row and fourth column of the matrix A. Depending on the situation, we will decide in advance to which set the entries in a matrix will belong. For example, we might assume that each entry aij (1im, 1jn) is a real number. In that case we would use Mm×n(R) to stand for the set of all m by n matrices whose entries are real numbers. If we decide that the entries in a matrix must come from a set S, we use Mm×n(S) to denote all such matrices.

Definition 5.1.2. The Order of a Matrix.

A matrix A that has m rows and n columns is called an m×n (read “m by n”) matrix, and is said to have order m×n.
Since it is rather cumbersome to write out the large rectangular array above each time we wish to discuss the generalized form of a matrix, it is common practice to replace the above by A=(aij). In general, matrices are often given names that are capital letters and the corresponding lower case letter is used for individual entries. For example the entry in the third row, second column of a matrix called C would be c32.

Example 5.1.3. Orders of Some Matrices.

A=(2305) , B=(01215) , and D=(125623428) are 2×2, 3×1, and 3×3 matrices, respectively.
Since we now understand what a matrix looks like, we are in a position to investigate the operations of matrix algebra for which users have found the most applications.
First we ask ourselves: Is the matrix A=(1234) equal to the matrix B=(1235)? No, they are not because the corresponding entries in the second row, second column of the two matrices are not equal.
Next, is A=(123456) equal to B=(1245)? No, although the corresponding entries in the first two columns are identical, B doesn’t have a third column to compare to that of A. We formalize these observations in the following definition.

Definition 5.1.4. Equality of Matrices.

A matrix A is said to be equal to matrix B (written A=B) if and only if:
  1. A and B have the same order, and
  2. all corresponding entries are equal: that is, aij = bij for all appropriate i and j.

Subsection 5.1.2 Matrix Addition and Scalar Multiplication

The first two operations we introduce are very natural and are not likely cause much confusion. The first is matrix addition. It seems natural that if A=(1021) and B=(3452) , then
A+B=(1+30+4251+2)=(4431).
However, if A=(123012) and B=(3028), is there a natural way to add them to give us A+B? No, the orders of the two matrices must be identical.

Definition 5.1.5. Matrix Addition.

Let A and B be m×n matrices. Then A+B is an m×n matrix where (A+B)ij=aij+bij (read “The ith jth entry of the matrix A+B is obtained by adding the ith jth entry of A to the ith jth entry of B”). If the orders of A and B are not identical, A+B is not defined.
In short, A+B is defined if and only if A and B are of the same order.
Another frequently used operation is that of multiplying a matrix by a number, commonly called a scalar in this context. Scalars normally come from the same set as the entries in a matrix. For example, if AMm×n(R), a scalar can be any real number.

Example 5.1.6. A Scalar Product.

If c=3 and if A=(1235) and we wish to find cA, it seems natural to multiply each entry of A by 3 so that 3A=(36915), and this is precisely the way scalar multiplication is defined.

Definition 5.1.7. Scalar Multiplication.

Let A be an m×n matrix and c a scalar. Then cA is the m×n matrix obtained by multiplying c times each entry of A; that is (cA)ij=caij.

Subsection 5.1.3 Matrix Multiplication

A definition that is more awkward to motivate is the product of two matrices. See Exercise 5.1.4.8 for an attempt to do so. In time, the reader will see that the following definition of the product of matrices will be very useful, and will provide an algebraic system that is quite similar to elementary algebra.

Definition 5.1.8. Matrix Multiplication.

Let A be an m×n matrix and let B be an n×p matrix. The product of A and B, denoted by AB, is an m×p matrix whose ith row jth column entry is
(AB)ij=ai1b1j+ai2b2j++ainbnj=k=1naikbkj
for 1im and 1jp.
The mechanics of computing one entry in the product of two matrices is illustrated in Figure 5.1.9.
Computation of one entry in the product of two 3 by 3 matrices. Two three by three matrices are shown with row 1 of the first matrix and column 2 of the second highlighted.  Row 1 of the first matrix has entries 1, -1 and 0.  Column 2 of the second matrix has 2, 3 and 4.  The corresponding entries are multiplied and the products are added to produce the entry in row 1, column 2 of the product matrix.  That number is 1 time 2 plus -1 times 3 plus 0 times 4, which is -1.
Figure 5.1.9. Computation of one entry in the product of two 3 by 3 matrices
The computation of a product can take a considerable amount of time in comparison to the time required to add two matrices. Suppose that A and B are n×n matrices; then (AB)ij is determined performing n multiplications and n1 additions. The full product takes n3 multiplications and n3n2 additions. This compares with n2 additions for the sum of two n×n matrices. The product of two 10 by 10 matrices will require 1,000 multiplications and 900 additions, clearly a job that you would assign to a computer. The sum of two matrices requires a more modest 100 additions. This analysis is based on the assumption that matrix multiplication will be done using the formula that is given in the definition. There are more advanced methods that, in theory, reduce operation counts. For example, Strassen’s algorithm (en.wikipedia.org/wiki/Strassen_algorithm) computes the product of two n by n matrices in 77log2n64log2n7n2.808 operations. There are practical issues involved in actually using the algorithm in many situations. For example, round-off error can be more of a problem than with the standard formula.

Example 5.1.10. A Matrix Product.

Let A=(103251), a 3×2 matrix, and let B=(61), a 2×1 matrix. Then AB is a 3×1 matrix:
AB=(103251)(61)=(16+0136+2156+11)=(62029)
Remarks:
  1. The product AB is defined only if A is an m×n matrix and B is an n×p matrix; that is, the two “inner” numbers must be equal. Furthermore, the order of the product matrix AB is the “outer” numbers, in this case m×p.
  2. It is wise to first determine the order of a product matrix. For example, if A is a 3×2 matrix and B is a 2×2 matrix, then AB is a 3×2 matrix of the form
    AB=(c11c12c21c22c31c32)
    Then to obtain, for example, c31, we multiply corresponding entries in the third row of A times the first column of B and add the results.

Example 5.1.11. Multiplication with a diagonal matrix.

Let A=(1003) and B=(31021) . Then AB=(13+02110+0103+32010+31)=(31063)
The net effect is to multiply the first row of B by 1 and the second row of B by 3.
Note: BA=(33023)AB. The columns of B are multiplied by 1 and 3 when the order is switched.
Remarks:
  • An n×n matrix is called a square matrix.
  • If A is a square matrix, AA is defined and is denoted by A2 , and AAA=A3, etc.
  • The m×n matrices whose entries are all 0 are denoted by 00m×n, or simply 00, when no confusion arises regarding the order.

Exercises 5.1.4 Exercises

1.

Let A=(1123), B=(0135) , and C=(011322)
  1. Compute AB and BA.
  2. Compute A+B and B+A.
  3. If c=3, show that c(A+B)=cA+cB.
  4. Show that (AB)C=A(BC).
  5. Compute A2C.
  6. Compute B+00.
  7. Compute A002×2 and 002×2A, where 002×2 is the 2×2 zero matrix.
  8. Compute 0A, where 0 is the real number (scalar) zero.
  9. Let c=2 and d=3. Show that (c+d)A=cA+dA.
Answer.
For parts c, d and i of this exercise, only a verification is needed. Here, we supply the result that will appear on both sides of the equality.
  1. AB=(36913)BA=(23718)
  2. (1052)
  3. (30156)
  4. (181515393535)
  5. (12772166)
  6. B+0=B
  7. (0000)
  8. (0000)
  9. (551015)

2.

Let A=(102215321) , B=(023112132) , and C=(212340113141) Compute, if possible;
  1. AB
  2. AB
  3. ACBC
  4. A(BC)
  5. CACB
  6. C(xyzw)

3.

Let A=(2003) . Find a matrix B such that AB=I and BA=I, where I=(1001).
Answer.
(1/2001/3)

4.

Find AI and BI where I is as in Exercise 3, where A=(1895) and B=(2357). What do you notice?

5.

Find A3 if A=(100020003) . What is A15 equal to?
Answer.
A3=(1000800027) A15=(10003276800014348907)

6.

  1. Determine I2 and I3 if  I=(100010001).
  2. What is In equal to for any n1?
  3. Prove your answer to part (b) by induction.

7.

  1. If
    A=(2111),X=(x1x2), and B=(31),
    show that AX=B is a way of expressing the system 2x1+x2=3x1x2=1 using matrices.
  2. Express the following systems of equations using matrices:
    1. 2x1x2=4x1+x2=0
    2. x1+x2+2x3=1x1+2x2x3=1x1+3x2+x3=5
    3. x1+x2=3x2=5x1+3x3=6
Answer.
  1. Ax=(2x1+1x21x11x2) equals (31) if and only if both of the equalities 2x1+x2=3 and x1x2=1 are true.
  2. (i) A=(2111) x=(x1x2) B=(40)
  3. A=(112121131) x=(x1x2x3) B=(115)
  4. A=(110010103) x=(x1x2x3) B=(356)

8.

In this exercise, we propose to show how matrix multiplication is a natural operation. Suppose a bakery produces bread, cakes and pies every weekday, Monday through Friday. Based on past sales history, the bakery produces various numbers of each product each day, summarized in the 5×3 matrix D. It should be noted that the order could be described as “number of days by number of products.” For example, on Wednesday (the third day) the number of cakes (second product in our list) that are produced is d3,2=4.
D=(2555145820415185735109)
The main ingredients of these products are flour, sugar and eggs. We assume that other ingredients are always in ample supply, but we need to be sure to have the three main ones available. For each of the three products, The amount of each ingredient that is needed is summarized in the 3×3, or “number of products by number of ingredients” matrix P. For example, to bake a cake (second product) we need P2,1=1.5 cups of flour (first ingredient). Regarding units: flour and sugar are given in cups per unit of each product, while eggs are given in individual eggs per unit of each product.
P=(20.501.512111)
These amounts are “made up”, so don’t used them to do your own baking!
  1. How many cups of flour will the bakery need every Monday? Pay close attention to how you compute your answer and the units of each number.
  2. How many eggs will the bakery need every Wednesday?
  3. Compute the matrix product DP. What do you notice?
  4. Suppose the costs of ingredients are $0.12 for a cup of flour, $0.15 for a cup of sugar and $0.19 for one egg. How can this information be put into a matrix that can meaningfully be multiplied by one of the other matrices in this problem?
You have attempted 1 of 1 activities on this page.