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.

Consider a real-world scenario in which a university needs to add to its inventory of computers, computer tables, and chairs in two of the campus labs due to increased enrollment. They estimate that 15% more equipment is needed in both labs. The school’s current inventory is displayed in the table below.

Lab A Lab B
Computers 15 27
Computer Tables 16 34
Chairs 16 34

Converting the data to a matrix, we have

C2013=[151616273434]

To calculate how much computer equipment will be needed, we multiply all entries in matrix C by 0.15.

(0.15)C2013=[(0.15)15(0.15)16(0.15)16(0.15)27(0.15)34(0.15)34]=[2.252.42.44.055.15.1]

We must round up to the next integer, so the amount of new equipment needed is

[333566]

Adding the two matrices as shown below, we see the new inventory amounts.

[151616273434]+[333566]=[181919324040]

This means

C2014=[181919324040]

Thus, Lab A will have 18 computers, 19 computer tables, and 19 chairs; Lab B will have 32 computers, 40 computer tables, and 40 chairs.

A General Note: Scalar Multiplication

Scalar multiplication involves finding the product of a constant by each entry in the matrix. Given

A=[a11a12a21a22]

the scalar multiple cA is

cA=c[a11a12a21a22] =[ca11ca12ca21ca22]

Scalar multiplication is distributive. For the matrices A,B, and C with scalars a and b,

a(A+B)=aA+aB(a+b)A=aA+bA

Example 6: Multiplying the Matrix by a Scalar

Multiply matrix A by the scalar 3.

A=[8154]

Solution

Multiply each entry in A by the scalar 3.

3A=3[8154]=[38313534]=[2431512]

Try It 2

Given matrix B, find 2B where

B=[4132]

Example 7: Finding the Sum of Scalar Multiples

Find the sum 3A+2B.

A=[120012436] and B=[121032014]

Solution

First, find 3A, then 2B.

3A=[313(2)30303(1)3234333(6)]=[36003612918]
2B=[2(1)2221202(3)2220212(4)]=[242064028]

Now, add 3A+2B.

3A+2B=[36003612918]+[242064028] =[326+40+20+0366+412+09+2188] =[1220910121126]