Matrix Masterclass
EXERCISE 3.2 • Q1 — Q22 COMPLETE
💡 Key Concepts for Exercise 3.2
- Addition/Subtraction: Possible ONLY for same order matrices. Combine $a_{ij}$ and $b_{ij}$.
- Matrix Product ($AB$): Defined if Columns of A = Rows of B. Use the Row-by-Column dot product.
- Multiplication Property: $AB \neq BA$ (Generally non-commutative).
- Identity ($I$): $AI = IA = A$.
Question 01
Find $A+B, A-B, 3A-C, AB, BA$ for $A = \begin{bmatrix} 2 & 4 \\ 3 & 2 \end{bmatrix}, B = \begin{bmatrix} 1 & 3 \\ -2 & 5 \end{bmatrix}, C = \begin{bmatrix} -2 & 5 \\ 3 & 4 \end{bmatrix}$.
Question 03 • All Products
Compute the products (i) to (vi).
(ii) Column $\times$ Row
(iv) 3×3 Multiplication
Question 04 • Verification
Verify $A+(B-C) = (A+B)-C$.
Step 1: Compute $(B-C)$
Verification is confirmed by calculating both sides: Result = $\mathbf{\begin{bmatrix} 0 & 0 & -3 \\ 9 & -1 & 5 \\ 2 & 1 & 1 \end{bmatrix}}$
Question 07 • Finding X and Y
Solve (i) $X+Y$ and $X-Y$ (ii) $2X+3Y$ and $3X+2Y$.
(ii) Simultaneous Equations
Multiply Eq(1) by 3 and Eq(2) by 2 to eliminate X:
Question 13 • Trigonometric Proof
Show $F(x)F(y) = F(x+y)$.
Perform Row-by-Column multiplication:
✅ LHS = RHS. Proof complete.
Question 15 • Polynomial
Find $A^2 – 5A + 6I$.
Question 18 • Complex Proof
Prove $I + A = (I – A) \times$ Trig Matrix.
Use substitution $t = \tan(\alpha/2)$. Use $\cos \alpha = \frac{1-t^2}{1+t^2}$ and $\sin \alpha = \frac{2t}{1+t^2}$.
✅ LHS = RHS. Proof complete.
Question 19 • Trust Fund
Investment in ₹30,000 bonds.
Equation: $[x \quad 30000-x] \begin{bmatrix} 0.05 \\ 0.07 \end{bmatrix} = [1800]$
$0.05x + 0.07(30000-x) = 1800 \implies -0.02x = -300 \implies \mathbf{x=15000}$.
₹15,000 in each bond.
MCQs 21 — 22
Order restrictions.
21. To define $PY + WY$: Columns $P = Rows Y \implies \mathbf{k=3}$. Same order for addition $\implies \mathbf{p=n}$. (Option A)
22. Given $n=p$. Order of $7X-5Z = \mathbf{2 \times n}$. (Option B)