This lesson works through several frequently asked Class 12 matrix questions: the commutative and associative laws of matrix addition, solving a matrix equation for two unknowns, and finding an unknown constant from a matrix product.
Commutative law of matrix addition
With A=[122435] and B=[1344−26], we check that A+B=B+A.
Left side. Adding entry by entry:
A+B=[1+12+32+44+43+(−2)5+6]=[2568111]
Right side. Adding in the other order gives the same result:
B+A=[1+13+24+24+4−2+36+5]=[2568111]
Since both sides match, A+B=B+A. This is the commutative property of matrix addition.
Associative law of matrix addition
If A, B, C are matrices of the same order, then (A+B)+C=A+(B+C). Take
A=[1324],B=[4657],C=[0213]
Left side. First A+B=[59711], then add C:
(A+B)+C=[5+09+27+111+3]=[511814]
Right side. First B+C=[48610], then add A:
A+(B+C)=[1+43+82+64+10]=[511814]
Both sides give the same matrix, so (A+B)+C=A+(B+C). This is the associative law.
Solving a matrix equation for x and y
Given
x[23]+y[−11]=[105]
the left side becomes [2x−y3x+y]. Comparing entries gives two equations:
2x−y=10(1)3x+y=5(2)
Adding (1) and (2) removes y:
5x=15⟹x=3
Substituting x=3 into (1): 6−y=10, so −y=4, giving y=−4.
So x=3 and y=−4. Check in (2): 3(3)+(−4)=5. ✓
Finding k from a matrix squared
Given A=[34−2−2] and I=[1001], find k such that A2=kA−2I.
Compute A2=A⋅A by multiplying rows into columns:
A2=[3⋅3+(−2)(4)4⋅3+(−2)(4)3(−2)+(−2)(−2)4(−2)+(−2)(−2)]=[14−2−4]
Set up the right side. With kA−2I=[3k4k−2k−2k]−[2002]=[3k−24k−2k−2k−2].
Compare entries. Equating A2 with kA−2I entry by entry:
1=3k−2⟹3k=3⟹k=1
The other entries agree too: −2=−2k, 4=4k, and −4=−2k−2 all give k=1.
Key takeaways
- Matrix addition is commutative (A+B=B+A) and associative ((A+B)+C=A+(B+C)).
- A matrix equation in unknowns can be split into ordinary equations by comparing corresponding entries, then solved like simultaneous equations.
- To compare two equal matrices, match their corresponding entries; any one matching pair can be enough to solve for an unknown constant.