This is the "throw everything at it" page for scalar multiplication . The parent note built the rule: k A means multiply every entry of A by the number k . Here we drill that rule against every kind of input it can meet — positive, negative, zero, fractions, the zero matrix, a word problem, and an exam trap.
Before we start, one word we lean on: a scalar is just a single ordinary number (like 3 , − 2 , or 2 1 ) — see vectors and scalars . It is not a matrix. Every example below multiplies a matrix (a grid of numbers, introduction to matrices ) by one such scalar.
Every scalar-multiplication problem you can be handed falls into one of these boxes. We will hit all of them.
Cell
Scenario
What's tricky about it
Example
A
Positive whole scalar, k > 1
Baseline — stretch every entry
Ex 1
B
Fractional scalar, 0 < k < 1
Shrink; watch fractions
Ex 2
C
Negative scalar, k < 0
Every sign flips
Ex 3
D
The scalar k = 0
Collapses to zero matrix O
Ex 4
E
The scalar k = 1
Nothing changes (identity check)
Ex 4
F
Combined: k 1 A + k 2 B
Scale twice, then add
Ex 5
G
Geometric meaning (columns as arrows)
Scaling = stretch/reflect the picture
Ex 6
H
Real-world word problem (units!)
Translate words → matrix → scale
Ex 7
I
Exam twist: solve for k or X
Work the rule backwards
Ex 8
Let's go cell by cell.
Worked example Example 1 — stretch by
k = 4 (Cell A)
Let A = [ 2 5 − 3 0 ] . Find 4 A .
Forecast: before reading on — every number gets 4 times bigger, and the grid stays 2 × 2 . Guess the four answers.
Write the scalar in front of the grid.
4 A = 4 [ 2 5 − 3 0 ]
Why this step? The definition says k A multiplies each entry by k ; writing it this way reminds us the 4 must reach every box.
Multiply entry-by-entry.
= [ 4 ⋅ 2 4 ⋅ 5 4 ⋅ ( − 3 ) 4 ⋅ 0 ] = [ 8 20 − 12 0 ]
Why this step? No entry interacts with another (unlike matrix multiplication ); each is scaled on its own.
Verify: 4 ⋅ 0 = 0 (a zero entry stays zero — good sanity anchor). Dimensions: A is 2 × 2 , so 4 A is 2 × 2 . ✓
Worked example Example 2 — shrink by
k = 3 1 (Cell B)
Let E = [ 6 12 − 9 15 ] . Find 3 1 E .
Forecast: multiplying by 3 1 is the same as dividing by 3 . All these entries are multiples of 3 , so guess: do they come out whole?
Distribute 3 1 into every box.
3 1 E = [ 3 6 3 12 3 − 9 3 15 ]
Why this step? A fraction is a perfectly legal scalar; the entry-wise rule doesn't care whether k is whole.
Simplify each fraction.
= [ 2 4 − 3 5 ]
Why this step? Each division is independent arithmetic on a single number.
Verify: multiply back by 3 : 3 [ 2 4 − 3 5 ] = [ 6 12 − 9 15 ] = E . Getting the original back confirms 3 1 and 3 undo each other. ✓
Worked example Example 3 — reflect by
k = − 1 (Cell C)
Let B = [ 1 4 2 5 3 6 ] . Compute − B .
Forecast: − B is shorthand for ( − 1 ) B . What happens to the sign of every entry? Guess before scrolling.
Rewrite − B as a scalar multiple.
− B = ( − 1 ) [ 1 4 2 5 3 6 ]
Why this step? The bare minus sign in front of a matrix is scalar multiplication by − 1 — naming the scalar keeps the rule honest.
Multiply each entry by − 1 .
= [ − 1 − 4 − 2 − 5 − 3 − 6 ]
Why this step? Multiplying a number by − 1 flips its sign; do this to all six independently.
Verify: B + ( − B ) should be the zero matrix (see matrix addition ): [ 1 + ( − 1 ) ⋯ ] = [ 0 0 0 0 0 0 ] . ✓ A number plus its negative is 0 , box by box.
Worked example Example 4 —
0 ⋅ A and 1 ⋅ A (Cells D & E)
Using A = [ 2 5 − 3 0 ] from Example 1, compute 0 ⋅ A and 1 ⋅ A .
Forecast: one of these will erase the matrix; the other will leave it exactly alone. Which is which?
Cell D: multiply each entry by 0 .
0 ⋅ A = [ 0 ⋅ 2 0 ⋅ 5 0 ⋅ ( − 3 ) 0 ⋅ 0 ] = [ 0 0 0 0 ] = O
Why this step? Zero times any number is zero, so every box collapses — the result is the zero matrix O (same size as A , all entries 0 ).
Cell E: multiply each entry by 1 .
1 ⋅ A = [ 1 ⋅ 2 1 ⋅ 5 1 ⋅ ( − 3 ) 1 ⋅ 0 ] = [ 2 5 − 3 0 ] = A
Why this step? One times any number is that same number, so nothing moves — 1 is the identity scalar.
Verify: the size is unchanged in both cases (2 × 2 in, 2 × 2 out) — scaling never resizes. And 0 ⋅ A = O matches Property 4 of the parent note. ✓
0 ⋅ A is just the number 0 "
No — it is the zero matrix , a full grid of zeros with the same shape as A . A single number and a 2 × 2 block of zeros are different objects.
Worked example Example 5 — compute
3 C + 2 D (Cell F)
Let C = [ 1 0 0 1 ] and D = [ 2 4 3 5 ] . Find 3 C + 2 D .
Forecast: two scalings happen before any addition. Guess 3 C first (it should just be 3 on the diagonal).
Scale C by 3 .
3 C = [ 3 0 0 3 ]
Why this step? The rule applies to C alone before we touch D ; order of operations puts scaling first.
Scale D by 2 .
2 D = [ 4 8 6 10 ]
Why this step? Same rule, different scalar and matrix.
Add the two scaled matrices entry-by-entry.
3 C + 2 D = [ 3 + 4 0 + 8 0 + 6 3 + 10 ] = [ 7 8 6 13 ]
Why this step? Addition of matrices is also entry-wise, and both are 2 × 2 so it's allowed.
Verify: top-left is 3 ( 1 ) + 2 ( 2 ) = 7 ✓ and bottom-right is 3 ( 1 ) + 2 ( 5 ) = 13 ✓. This mixing of scaling and adding is exactly the linear-combination pattern.
Here the two columns of a 2 × 2 matrix are read as arrows starting at the origin. Scaling the matrix scales both arrows. This is the seed of linear transformations .
Worked example Example 6 — stretch and reflect arrows (Cell G)
Let M = [ 2 1 − 1 1 ] . Its columns are the arrows u = [ 2 1 ] and v = [ − 1 1 ] . Compute 2 M and ( − 1 ) M and describe the pictures.
Forecast: doubling should make each arrow twice as long, same direction . Multiplying by − 1 should flip each arrow to point the opposite way. Picture it before the figure.
Scale by 2 .
2 M = [ 4 2 − 2 2 ]
Why this step? Each column's coordinates double, so each arrow's length doubles while its angle stays fixed.
Look at the blue original arrow u and the longer yellow 2 u lying right on top of its direction — only the length changed.
Scale by − 1 .
( − 1 ) M = [ − 2 − 1 1 − 1 ]
Why this step? Multiplying by − 1 negates each coordinate, which points the arrow through the origin to the exact opposite side.
The red arrow − u is the same length as blue u but aims 18 0 ∘ the other way — a reflection through the origin.
Verify: length of u is 2 2 + 1 2 = 5 ; length of 2 u = 4 2 + 2 2 = 20 = 2 5 — exactly double ✓. Length of − u = ( − 2 ) 2 + ( − 1 ) 2 = 5 — unchanged ✓.
Worked example Example 7 — doubling a price list (Cell H)
A shop stores weekly sales in a matrix S where rows are two branches and columns are (units sold, price per unit in ₹):
S = [ 30 50 20 15 ]
A festival doubles prices (units stay the same for now). But prices are only in column 2 . Someone naively writes 2 S . What goes wrong, and what is the correct fix?
Forecast: does the whole matrix get scaled, or only one column? Think about what "double the prices" actually touches.
First see what 2 S would give.
2 S = [ 60 100 40 30 ]
Why this step? Scalar multiplication is all-or-nothing — it cannot touch just one column. So 2 S wrongly doubles the units sold too.
Correct model: only column 2 is a price. Scaling a single column is not scalar multiplication of S ; you scale that column separately.
S new = [ 30 50 40 30 ]
Why this step? The physical quantity being doubled (price, in ₹) lives only in column 2, so only those entries change.
Verify: units column unchanged: 30 , 50 — same as before ✓. Price column doubled: 20 → 40 , 15 → 30 ✓. Lesson: scalar multiplication scales everything ; use it only when the whole grid is the same kind of quantity being scaled by the same factor.
Common mistake Reaching for
k A when only part of the data scales
A single scalar k hits every entry equally. If your real-world factor applies to just some rows/columns (or different factors to different parts), scalar multiplication of the whole matrix is the wrong tool.
Worked example Example 8 — solve for the unknown (Cell I)
Find the scalar k and then the matrix X such that
k [ 3 − 6 ] = [ 12 − 24 ] , 2 X = [ 8 6 − 4 0 ] .
Forecast: in part 1 you know the before and after , so k is a ratio. In part 2 you undo a doubling — what scalar undoes 2 ?
Find k : every entry was multiplied by the same k , so compare any one entry.
k ⋅ 3 = 12 ⟹ k = 3 12 = 4
Why this step? Because k is one number applied everywhere, one equation determines it.
Consistency check with the other entry.
4 ⋅ ( − 6 ) = − 24 ✓
Why this step? If the two entries gave different k , no single scalar would work — the check guards against that.
Solve for X : multiply both sides by 2 1 (the scalar that undoes 2 ).
X = 2 1 [ 8 6 − 4 0 ] = [ 4 3 − 2 0 ]
Why this step? 2 1 ⋅ 2 = 1 , and 1 ⋅ X = X (Cell E), so scaling by 2 1 isolates X .
Verify: plug back — 2 [ 4 3 − 2 0 ] = [ 8 6 − 4 0 ] ✓ and 4 [ 3 − 6 ] = [ 12 − 24 ] ✓.
Recall Which scenarios collapse or preserve the matrix?
0 ⋅ A gives the zero matrix; 1 ⋅ A leaves A unchanged.
0 ⋅ A gives ::: the zero matrix O (same shape, all zeros)
1 ⋅ A gives ::: A itself, unchanged
Recall Geometric effect of a negative scalar on a matrix's columns?
Reflect each column-arrow through the origin (same length, opposite direction).
Effect of multiplying by − 1 ::: each column-arrow flips 18 0 ∘ , length unchanged
Mnemonic "One scalar, whole grid, no exceptions"
If the factor doesn't apply to every entry equally, it isn't scalar multiplication of the matrix.