Loading [MathJax]/jax/output/HTML-CSS/jax.js
Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

3: Binary Matrix Operations

( \newcommand{\kernel}{\mathrm{null}\,}\)

Learning Objectives

After reading this chapter, you should be able to:

  1. add, subtract, and multiply matrices, and
  2. apply rules of binary operations on matrices.

How do you add two matrices?

Two matrices [A] and [B] can be added only if they are the same size. The addition is then shown as

[C]=[A]+[B]

where

cij=aij+bij

Example 1

Add the following two matrices.

[A]=[523127] [B]=[6723519]

Solution

[C]=[A]+[B]=[523127]+[6723519]=[5+62+7321+32+57+19]=[11914726]

Example 2

Blowout r’us store has two store locations A and B, and their sales of tires are given by make (in rows) and quarters (in columns) as shown below.

[A]=[2520325101525616727]

[B]=[2054036152141720]

where the rows represent the sale of Tirestone, Michigan and Copper tires respectively and the columns represent the quarter number: 1, 2, 3 and 4. What are the total tire sales for the two locations by make and quarter?

Solution

[C]=[A]+[B]=[2520325101525616727]+[2054036152141720]=[(25+20)(5+3)(6+4)(20+5)(10+6)(16+1)(3+4)(15+15)(7+7)(2+0)(25+21)(27+20)]=[458102516177301424647]

So, if one wants to know the total number of Copper tires sold in quarter 4 at the two locations, we would look at Row 3 – Column 4 to give c34=47.

How do you subtract two matrices?

Two matrices [A] and [B] can be subtracted only if they are the same size. The subtraction is then shown as

[D]=[A][B]

where

dij=aijbij

Example 3

Subtract matrix [B] from matrix [A].

[A]=[523127]

[B]=[6723519]

Solution

[D]=[A][B]=[523127][6723519]=[(56)(27)(3(2))(13)(25)(719)]=[1552312]

Example 4

Blowout r’us has two store locations A and B and their sales of tires are given by make (in rows) and quarters (in columns) as shown below.

[A]=[2556201016315722527]

[B]=[2034561415702120]

where the rows represent the sale of Tirestone, Michigan and Copper tires respectively and the columns represent the quarter number: 1, 2, 3, and 4. How many more tires did store A sell than store B of each brand in each quarter?

Solution

[D]=[A][B]=[2556201016315722527][2034561415702120]=[(2520)(53)(64)(205)(106)(161)(34)(1515)(77)(20)(2521)(2720)]=[52215415100247]

So, if you want to know how many more Copper tires were sold in quarter 4 in store A than store B, d34=7. Note that d13=1 implies that store A sold 1 less Michigan tire than store B in quarter 3.

How do I multiply two matrices?

Two matrices [A] and [B] can be multiplied only if the number of columns of [A] is equal to the number of rows of [B] to give

[C]m×n=[A]m×p[B]p×n

If [A] is a m×p matrix and [B] is a p×n matrix, the resulting matrix [C] is a m×n matrix.

So how does one calculate the elements of [C] matrix?

cij=pk=1aikbkj=ai1b1j+ai2b2j++aipbpj

for each i=1, 2,   , m and j=1, 2,   , n.

To put it in simpler terms, the ith row and jth column of the [C] matrix in [C]=[A][B] is calculated by multiplying the ith row of [A] by the jth column of [B]. That is

cij=ai1ai2     aip[b1jb2jbpj]=ai1b1j+ai2b2j++aipbpj=pk=1aikbkj

Example 5

Given

[A]=[523127]

[B]=[3258910]

Find

[C]=[A][B]

Solution

c12 can be found by multiplying the first row of [A] by the second column of [B],

c12=[523][2810]=(5)(2)+(2)(8)+(3)(10)=56

Similarly, one can find the other elements of [C] to give

[C]=[52567688]

Example 6

Blowout r’us store location A and the sales of tires are given by make (in rows) and quarters (in columns) as shown below

[A]=[2556201016315722527]

where the rows represent the sale of Tirestone, Michigan and Copper tires respectively and the columns represent the quarter number: 1, 2, 3, and 4. Find the per quarter sales of store A if the following are the prices of each tire:

  • Tirestone = $33.25
  • Michigan = $40.19
  • Copper = $25.03
Solution

The answer is given by multiplying the price matrix by the quantity of sales of store A. The price matrix is [33.2540.1925.03], so the per-quarter sales of store A would be given by:

[C]=[33.2540.1925.03][2556201016315722527]

cij=3k=1aikbkj

c11=3k=1a1kbk1=a11b11+a12b21+a13b31=(33.25)(25)+(40.19)(5)+(25.03)(6)=$1182.38

Similarly

c12=$1467.38

c13=$877.81

c14=$1747.06

Therefore, each quarter sales of store A in dollars is given by the four columns of the row vector

[C]=[1182.38   1467.38   877.81   1747.06]

Remember, since we are multiplying a 1×3 matrix by a 3×4 matrix, the resulting matrix is a 1×4 matrix.

What is the scalar multiplication of a matrix?

If [A] is a m×n matrix and k is a real number, then the multiplication [A] by a scalar k is another m×n matrix [B], where

bij=k aij for all i, j.

Example 7

Let

[A]=[2.132516]

Find 2[A]

Solution

2[A]=2[2.132516]=[2×2.12×32×22×52×12×6]=[4.26410212]

What is a linear combination of matrices?

If [A1],[A2],  , [Ap] are matrices of the same size and k1, k2,  , kp are scalars, then

k1[A1]+k2[A2]+  +kp[Ap]

is called a linear combination of [A1],[A2],  , [Ap].

Example 8

If

[A1]=[562321], [A2]=[2.132516], [A3]=[02.2233.56]

then find

[A1]+2[A2]0.5[A3]

Solution

[A1]+2[A2]0.5[A3]

=[562321]+2[2.132516]0.5[02.2233.56]=[562321]+[4.26410212]0.5[01.111.51.753]=[9.210.9511.52.2510]

What are some of the rules of binary matrix operations?

Commutative law of addition

If [A] and [B] are m×n matrices, then

[A]+[B]=[B]+[A]

Associative law of addition

If [A], [B], and [C] are all m×n matrices, then

[A]+([B]+[C])=([A]+[B])+[C]

Associative law of multiplication

If [A], [B], and [C] are m×n, n×p, and p×r size matrices, respectively, then

[A]([B][C])=([A][B])[C]

and the resulting matrix size on both sides of the equation is m×p.

Distributive law

If [A] and [B] are m×n size matrices, and [C] and [D] are n×p size matrices

[A]([C]+[D])=[A][C]+[A][D]

([A]+[B])[C]=[A][C]+[B][C]

And the resulting matrix size on both sides of the equation is m×p.

Example 9

Illustrate the associative law of multiplication of matrices using

[A]=[123502],    [B]=[2596],    [C]=[2135]

Solution

[B][C]=[2596][2135]=[19273639]

[A]([B][C])=[123502][19273639]=[911052372767278]

[A][B]=[123502][2596]=[201751451812]

([A][B])[C]=[201751451812][2135]=[911052372767278]

The above illustrates the associative law of multiplication of matrices.

Is [A][B] = [B][A]?

If [A][B] exists, number of columns of [A] has to be same as the number of rows of [B] and if [B][A] exists, number of columns of [B] has to be same as the number of rows of [A]. Now for [A][B]=[B][A], the resulting matrix from [A][B] and [B][A] has to be of the same size. This is only possible if [A] and [B] are square and are of the same size. Even then in general [A][B][B][A]

Example 10

Determine if

[A][B]=[B][A]

For the following matrices

[A]=[6325],    [B]=[3215]

Solution

[A][B]=[6325][3215]=[1527129]

[B][A]=[3215][6325]=[1411628]

[A][B][B][A]

Binary Matrix Operations Quiz

Quiz 1

If [A]=[5673]and [B]=[23] then [A][B]=

(A) [823]

(B) [1012149]

(C) [25]

(D) not possible

Quiz 2

For the product [A][B]to be possible

(A) the number of rows of [A] needs to be the ame as the number of columns of [B]

(B) the number of columns of [A] needs to be the same as the number of rows of [B]

(C) the number of rows of [A] and[B] needs to be the same

(D) the number of columns of [A] and[B] needs to be the same

Quiz 3

If [A]=[50602030] then 6[A]is equal to

(A) [50360120180]

(B) [300602030]

(C) [300360120180]

(D) [56662624]

Quiz 4

[A] and [B] are square matrices of n×n order. Then ([A][B])([A][B]) is equal to

(A) [A]2+[B]22[A][B]

(B) [A]2+[B]2

(C) [A]2[B]2

(D) [A]2+[B]2[A][B][B][A]

Quiz 5

Given [A] is a rectangular matrix and c[A]=[0], then choose the most appropriate answer.

(A) C=0

(B) C=0 and [A]=[0]

(C) C=0 or [A]=[0]

(D) C=0 and [A] is a non-zero matrix

Quiz 6

You sell Jupiter and Fickers Candy bars. The sales in January are 25 and 30 of Jupiter and Fickers, respectively. In February, the sales are 75 and 35 of Jupiter and Fickers, respectively. If a Jupiter bar costs $2 and a Fickers bar costs $7, then if

[A]=[25307535],and

[B]=[27],

the total sales amount in each month is given by

(A) [B][A]

(B) [A][B]

(C) 2[A]

(D) 7[A]

Binary Matrix Operations Exercise

Exercise 1

For the following matrices

[A]=[310211], [B]=[4102], [C]=[532567]

Find where possible

  1. 4[A]+5[C]
  2. [A][B]
  3. [A]=2[C]
Answer

A. =[371110333439]

B. =[1234541]

C. =[74781113]

Exercise 2

Food orders are taken from two engineering departments for a takeout. The order is tabulated below.

Food order:

MechanicalCivilChickenSandwichFriesDrink[25  35  2521  20  21]

However they have a choice of buying this food from three different restaurants. Their prices for the three food items are tabulated below

Price Matrix:

Chicken  SandwichFriesDrinkMcFatBurcholestrolKentuckySodium[2.42    2.38  2.460.93    0.90  0.890.95    1.03  1.13]

Show how much each department will pay for their order at each restaurant. Which restaurant would be more economical to order from for each department?

Answer

The cost in dollars is 116.80, 116.75, 120.90 for the Mechanical Department at three fast food joints. So BurCholestrol is the cheapest for the Mechanical Department. The cost in dollars is 89.37, 89.61, 93.19 for the Civil Department at three fast food joints. McFat is the cheapest for the Civil Department.

Exercise 3

Given

[A]=[235679213]

[B]=[352916]

[C]=[523976]

Illustrate the distributive law of binary matrix operations

[A]([B]+[C])=[A][B]+[A][C]

Answer

[B]+[C]=[352916]+[523976]

=[87518812]

[A]([B]+[C])=[711281552764568]

[A][B]=[1767411471137]

[A][C]=[54611141293431]

[A][B]+[A][C]=[711281552764568]

Exercise 4

Let [I] be a n×n identity matrix. Show that [A][[I]=[I][A]=[A] for every n×n matrix [A].

Let [C]n×n=[A]n×n[I]n×n

Answer

Hint: cij=np=1aipipj

=ai1i1j++ai,j1ij1,j+aijijj+ai(j+1)i(j+1)j++aininj

Since

iij=0 for ij

=1 for i=j

cij=aij

So [A]=[A][I]

Similarly do the other case

[I][A]=[A]. Just do it!

Exercise 5

Consider there are only two computer companies in a country. The companies are named Dude and Imac. Each year, company Dude keeps 1/5th of its customers, while the rest switch to Imac. Each year, Imac keeps 1/3rd of its customers, while the rest switch to Dude. If in 2002, Dude has 1/6th of the market and Imac has 5/6th of the market.

  1. What is the distribution of the customers between the two companies in 2003? Write the answer first as multiplication of two matrices.
  2. What would be distribution when the market becomes stable?
Answer

A. At the end of 2002, Dude has 15×16+23×56=0.589.
    Imac has 45×16+13×56=0.411
    In matrix form [15234513][1656]=[0.5890.411]

B. Stable distribution is [10/22 12/22] (Try to do this part of the problem first by finding the distribution five years from now).
Exercise 6

Given

[A]=[12.312.310.311.310.311.310.311.312.3],

[B]=[24561120]

[A][B] matrix size is _______________

Answer

3×2

Exercise 7

Given

[A]=[12.312.310.311.310.311.310.311.312.3],

[B]=[24561120]

if [C]=[A][B], then c31= _____________________

Answer

(10.3×2)+((5)×(11.3))+(11×(12.3))=58.2


This page titled 3: Binary Matrix Operations is shared under a CC BY-NC-SA 4.0 license and was authored, remixed, and/or curated by Autar Kaw via source content that was edited to the style and standards of the LibreTexts platform.

Support Center

How can we help?