Scalar Multiplication of a Matrix
Scalar multiplication of a matrix is the operation of multiplying every element in a matrix by a single number, called a scalar. The result is a new matrix of the same size where each entry has been scaled by that number.
Given a scalar and an matrix , the scalar multiple is the matrix obtained by multiplying each entry of by . Formally, if , then for all and . This operation preserves the dimensions of the original matrix.
Key Formula
Where:
- = the scalar (a real number)
- = the entry in row i and column j of matrix A
Worked Example
Problem: Multiply the matrix by the scalar .
Step 1: Write out the scalar multiplication, applying the scalar to each entry.
Step 2: Multiply each entry in the first row by 3.
Step 3: Multiply each entry in the second row by 3.
Step 4: Assemble the results into the new matrix.
Answer:
Why It Matters
Scalar multiplication of a matrix shows up whenever you need to scale a set of values uniformly. In computer graphics, scaling an object larger or smaller involves multiplying coordinate matrices by a scalar. In physics, multiplying a force or velocity matrix by a constant adjusts every component at once, which makes this operation fundamental in linear algebra and applied mathematics.
Common Mistakes
Mistake: Multiplying only some entries (such as the diagonal) instead of every entry in the matrix.
Correction: Every single entry in the matrix must be multiplied by the scalar, regardless of its position.
Mistake: Confusing scalar multiplication with matrix multiplication and trying to treat the scalar as a matrix.
Correction: A scalar is just a number. You multiply it directly into each entry — there is no row-by-column process involved.
