Definition. For two matrices of the same orderA=[aij]m×n and B=[bij]m×n, the sum is
A+B=[aij+bij]m×n
— add corresponding entries. If the orders differ, A+B is simply not defined.
(2134)+(10−12)=(3126)
Scalar multiplication: every entry scales
Definition. For a scalar k, kA=[kaij]m×n — multiply every entry by k.
In particular (−1)A=−A is the negative of A, and subtraction is A−B=A+(−B): entrywise difference.
Worked combination. For A=(1324) and B=(3−112):
2A−B=(2648)−(3−112)=(−1736)
The algebra these operations satisfy
For matrices A,B,C of the same order and scalars k,l:
Property
Statement
commutativity
A+B=B+A
associativity
(A+B)+C=A+(B+C)
additive identity
A+O=O+A=A (zero matrix of the same order)
additive inverse
A+(−A)=O
distributivity over matrices
k(A+B)=kA+kB
distributivity over scalars
(k+l)A=kA+lA
Every rule is inherited entry-by-entry from ordinary number arithmetic — which is why this part of matrix algebra holds no surprises. (The surprises are saved for multiplication, next section.)
Common mistakes to avoid
Mistake 1 — adding different orders. A 2×3 plus a 3×2 is undefined, full stop.
Mistake 2 — scaling only one row.kA multiplies every entry — scaling a single row is a different (elementary) operation, not scalar multiplication.
Mistake 3 — sign slips in A−2B: distribute the −2 to every entry of B before adding.
Mistake 4 — treating O as "the" zero matrix: the additive identity must have the same order as A.
Solving Matrix Equations with + and Scalars
The linear-equation template
Because addition and scalar multiplication obey familiar algebra, simple matrix equations solve exactly like linear equations in one unknown — with matrices in place of numbers.
Template 1 — isolate X: from 2A+3X=5B,
3X=5B−2A⟹X=31(5B−2A)
compute 5B−2A entrywise, then divide every entry by 3.
Template 2 — the sum-and-difference pair: given X+Y=S and X−Y=D,
X=21(S+D),Y=21(S−D)
Worked pair.X+Y=(5029), X−Y=(306−1):
X=21(8088)=(4044),Y=21(20−410)=(10−25)
Template 3 — unknowns inside entries: a matrix equation with variables unpacks (by equality of matrices) into scalar equations. From
2(x75y−3)+(31−42)=(715614)
the (1,1) entry gives 2x+3=7⇒x=2, and the (2,2) entry gives 2(y−3)+2=14⇒y=9 (the other two entries check out: 10−4=6 ✓, 14+1=15 ✓).
Data applications
Scalar multiplication scales tabulated data wholesale (doubling a production matrix), and addition combines tables (two months' sales). If a farmer's September and October production matrices are A and B, then A+B is the two-month total and A−B the month-on-month change — entry by entry, with each entry keeping its row-column meaning.
Common mistakes to avoid
Mistake 1 — halving only one matrix in Template 2: both S+D and S−D get the 21.
Mistake 2 — forgetting to verify the spare entries in Template 3: the unpacked system is overdetermined; a full-marks answer notes that every entry is satisfied.
Mistake 3 — moving a matrix across '=' without flipping sign — the algebra is familiar, but each move still applies to whole matrices.
Solved Examples
Example 1 — A straight sum
Find A+B for A=(3213−10) and B=(2−253121).
Step 1 — same order (2×3) ✓, add entrywise:A+B=(3+201+56021)
Answer: as above — surds add formally; nothing simplifies unless the surds match.
Find the matrix X such that 2A+3X=5B, where A=8430−26 and B=24−5−221.
Step 1 — isolate:3X=5B−2A.
Step 2 — compute the right side entrywise:5B−2A=10−1620−8−25−6−10−010+45−12=−612−31−1014−7
Step 3 — divide by 3:X=−24−331−310314−37
Answer: as above — fractional entries are perfectly normal; do not force integers.
Example 4 — The sum-and-difference pair
Find X and Y if X+Y=(5029) and X−Y=(306−1).
Step 1 — add the equations:2X=(8088), so X=(4044).
Step 2 — subtract the equations:2Y=(20−410), so Y=(10−25).
Answer:X=(4044), Y=(10−25) (check: their sum and difference reproduce the data ✓).
Example 5 — Unknowns inside entries
Find x and y from 2(x75y−3)+(31−42)=(715614).
Step 1 — combine the left side:(2x+31562y−4)=(715614)
Step 2 — equate the entries containing unknowns:2x+3=7⇒x=2; 2y−4=14⇒y=9.
Step 3 — confirm the spare entries already match (6=6, 15=15) ✓.
Answer:x=2,y=9.
Example 6 — Combining data tables
A farmer's production (in tonnes) of rice and wheat over two plots is A=(10302015) in September and B=(5201010) in October (rows = plots, columns = crops). Find the total production and the decrease from September to October.
Step 1 — total:A+B=(15503025).
Step 2 — decrease:A−B=(510105).
Answer: the entry conventions ride along: e.g. plot 2 produced 50 tonnes of rice in total, and every crop-plot combination decreased.
Example 7 — Scaling a data table
If each entry of the October matrix B above doubles next October, write the new matrix.
Step 1 — scalar multiply:2B=(10402020)
Answer:2B — scalar multiplication is uniform scaling of the whole table, which is exactly why it models across-the-board percentage changes.
Ready to test your knowledge?
Take a quick interactive quiz on this topic —
free, works without login.