Skip to content
Medium

Scalar Multiplication of a Matrix

Simple Explanation

To multiply a matrix by a scalar (an ordinary number, not another matrix), multiply every single entry by that number.

Why Do We Need It?

Scalar multiplication lets you scale an entire matrix of data uniformly β€” useful whenever every value in a dataset needs to be adjusted by the same factor.

Formula

Scalar Multiplication of a Matrix

(kA)α΅’β±Ό = k Β· Aα΅’β±Ό

To multiply a matrix by a scalar (an ordinary number), multiply every single entry of the matrix by that number.

k
β€” the scalar (a plain number)
Aα΅’β±Ό
β€” the entry of matrix A in row i, column j

When to use it: Whenever a whole matrix needs to be scaled up or down by a constant factor.

Worked Example

Multiply a matrix by a scalar

Find 3A, where A = [[2, βˆ’1], [3, 4]].

    Why Does This Work?

    Scalar multiplication is defined entry-by-entry so that it matches the natural idea of "doubling" or "scaling" a whole dataset uniformly β€” every value grows (or shrinks) by exactly the same factor.

    Real-Life Example

    Applying a uniform tax rate across all figures

    A finance team needs to apply a fixed percentage adjustment to every value in a matrix of budget figures.

    Multiplying the whole matrix by the scale factor applies the adjustment to every entry simultaneously, in one operation.

    Practice

    Find βˆ’2B, where B = [[1, 5], [βˆ’3, 0]].

    Medium

    Common mistake

    Only multiplying some of the entries (like just the first row) instead of every single entry in the matrix β€” scalar multiplication always applies to the entire matrix.

    Quick Review

    • (kA)α΅’β±Ό = kΒ·Aα΅’β±Ό.
    • Multiply every entry of the matrix by the scalar.
    • Useful for uniformly scaling an entire dataset.