📐

Chapter 3 · Class 12 Mathematics

Matrices

5 exercises46 questions solved
Exercise 3.1Types, Order and Equality of Matrices
Q1

In the matrix A = [[2, 5, 19, –7], [35, –2, 5/2, 12], [√3, 1, –5, 17]], write: (i) the order of the matrix (ii) number of elements (iii) elements a₁₃, a₂₁, a₃₃, a₂₄.

Solution

(i) The matrix has 3 rows and 4 columns. Order = 3 × 4 (ii) Number of elements = 3 × 4 = 12 (iii) aᵢⱼ = element in row i, column j: a₁₃ = 19 (row 1, col 3) a₂₁ = 35 (row 2, col 1) a₃₃ = –5 (row 3, col 3) a₂₄ = 12 (row 2, col 4)
Q2

If a matrix has 24 elements, what are the possible orders it can have? What if it has 13 elements?

Solution

For a matrix of order m×n: m×n = 24 Possible (m,n) pairs: (1,24),(2,12),(3,8),(4,6),(6,4),(8,3),(12,2),(24,1) So 8 possible orders. For 13 elements: m×n = 13. Since 13 is prime: (1,13) and (13,1) So 2 possible orders.
Q3

If a matrix has 18 elements, what are the possible orders it can have?

Solution

m×n = 18 Factor pairs: (1,18),(2,9),(3,6),(6,3),(9,2),(18,1) 6 possible orders.
Q4

Construct a 2×2 matrix A = [aᵢⱼ] where aᵢⱼ = (i+j)²/2.

Solution

a₁₁ = (1+1)²/2 = 4/2 = 2 a₁₂ = (1+2)²/2 = 9/2 a₂₁ = (2+1)²/2 = 9/2 a₂₂ = (2+2)²/2 = 16/2 = 8 A = [[2, 9/2], [9/2, 8]]
Q5

Construct a 3×4 matrix A = [aᵢⱼ] where aᵢⱼ = –2i + 3j.

Solution

a₁₁=1, a₁₂=4, a₁₃=7, a₁₄=10 a₂₁=–1, a₂₂=2, a₂₃=5, a₂₄=8 a₃₁=–3, a₃₂=0, a₃₃=3, a₃₄=6 A = [[1, 4, 7, 10], [–1, 2, 5, 8], [–3, 0, 3, 6]]
Q6

Find x, y, z, and w if: [[3x+7, 5], [y+1, 2–3x]] = [[0, y–2], [8, w]].

Solution

Equating corresponding elements: 3x+7 = 0 ⟹ x = –7/3 5 = y–2 ⟹ y = 7 y+1 = 8 ⟹ y = 7 ✓ 2–3x = w ⟹ w = 2–3(–7/3) = 2+7 = 9 ∴ x = –7/3, y = 7, w = 9
Q7

Find x and y if: 2[[1, 3], [0, x]] + [[y, 0], [1, 2]] = [[5, 6], [1, 8]].

Solution

LHS = [[2, 6], [0, 2x]] + [[y, 0], [1, 2]] = [[2+y, 6], [1, 2x+2]] Equating with RHS [[5, 6], [1, 8]]: 2+y = 5 ⟹ y = 3 2x+2 = 8 ⟹ x = 3 ∴ x = 3, y = 3
Q8

Find X if: 2X + 3[[1, 2], [3, 4]] = [[7, 14], [21, 28]].

Solution

2X = [[7,14],[21,28]] – 3[[1,2],[3,4]] = [[7,14],[21,28]] – [[3,6],[9,12]] = [[4,8],[12,16]] X = [[2,4],[6,8]]
Q9

Find x, y, a and b if: [[x–y, 2], [a+b, 3a–b]] = [[–1, 2], [3, –1]].

Solution

x–y = –1 ... (1) a+b = 3 ... (2) 3a–b = –1 ... (3) From (2)+(3): 4a = 2 ⟹ a = 1/2 From (2): b = 3–1/2 = 5/2 For x and y: need additional info. x–y = –1 (one equation, two unknowns — check if there's a diagonal element). The element at (1,2) is 2 = 2 ✓ Note: Only x–y = –1 can be determined. x and y individually cannot be found from this equation alone. If the matrix is [[x–y,2],[a+b,3a–b]] = [[–1,2],[3,–1]], then a=1/2, b=5/2, and x–y=–1 (infinitely many solutions for x,y).
Q10

Solve the equation: [[x, 2], [–1, y]] = [[1, 2], [–1, 3]] + [[0, –1], [0, 1]].

Solution

RHS = [[1+0, 2+(–1)], [–1+0, 3+1]] = [[1, 1], [–1, 4]] Equating: x = 1, y = 4
Exercise 3.2Matrix Operations — Addition and Multiplication
Q1

If A = [[1,2,3],[4,5,6],[7,8,9]] and B = [[9,8,7],[6,5,4],[3,2,1]], find A+B.

Solution

A+B = [[1+9,2+8,3+7],[4+6,5+5,6+4],[7+3,8+2,9+1]] = [[10,10,10],[10,10,10],[10,10,10]]
Q2

Let A = [[2/3, 1, 5/3],[1/3, 2/3, 4/3],[7/3, 2, 2/3]]. Compute 2A.

Solution

2A = [[4/3, 2, 10/3],[2/3, 4/3, 8/3],[14/3, 4, 4/3]]
Q3

If A = [[0, 4],[3, –2]] and B = [[6, –4],[1, 5]], compute 3A – 2B.

Solution

3A = [[0,12],[9,–6]]; 2B = [[12,–8],[2,10]] 3A–2B = [[0–12, 12–(–8)],[9–2, –6–10]] = [[–12, 20],[7, –16]]
Q4

If A = [[1,2,–3],[5,0,2],[1,–1,1]] and B = [[3,–1,2],[4,2,5],[2,0,3]], find A+B, B–A.

Solution

A+B = [[4,1,–1],[9,2,7],[3,–1,4]] B–A = [[2,–3,5],[–1,2,3],[1,1,2]]
Q5

If A and B are two matrices of the same order 3×3, such that A+B = [[3,1,6],[5,–3,0],[2,7,–4]], A–B = [[1,–1,2],[1,7,4],[0,1,2]], find A and B.

Solution

A = (1/2)[(A+B)+(A–B)] = (1/2)[[4,0,8],[6,4,4],[2,8,–2]] = [[2,0,4],[3,2,2],[1,4,–1]] B = (1/2)[(A+B)–(A–B)] = (1/2)[[2,2,4],[4,–10,–4],[2,6,–6]] = [[1,1,2],[2,–5,–2],[1,3,–3]]
Q6

Compute AB where A = [[1, –1],[2, 3]] and B = [[1, 2, 3],[ –1, 0, 1]].

Solution

AB is 2×3: AB[1,1] = (1)(1)+(–1)(–1) = 2 AB[1,2] = (1)(2)+(–1)(0) = 2 AB[1,3] = (1)(3)+(–1)(1) = 2 AB[2,1] = (2)(1)+(3)(–1) = –1 AB[2,2] = (2)(2)+(3)(0) = 4 AB[2,3] = (2)(3)+(3)(1) = 9 AB = [[2,2,2],[–1,4,9]]
Q7

Show that A = [[1,2,3],[–1,0,1]] and B = [[1,–1],[2,0],[0,1]] satisfy (AB)ᵀ = BᵀAᵀ.

Solution

AB: (2×3)(3×2) = 2×2 AB = [[1+4+0, –1+0+3],[–1+0+0, 1+0+1]] = [[5,2],[–1,2]] (AB)ᵀ = [[5,–1],[2,2]] Aᵀ = [[1,–1],[2,0],[3,1]], Bᵀ = [[1,2,0],[–1,0,1]] BᵀAᵀ: (2×3)(3×2) = 2×2 BᵀAᵀ = [[1+4+0,–1+0+3],[–1+0+3,1+0+1]] Wait... Let me recompute: Bᵀ = [[1,2,0],[–1,0,1]], Aᵀ = [[1,–1],[2,0],[3,1]] BᵀAᵀ = [[1·1+2·2+0·3, 1·(–1)+2·0+0·1],[–1·1+0·2+1·3, –1·(–1)+0·0+1·1]] = [[5,–1],[2,2]] = (AB)ᵀ ✓ [Proved]
Q8

If A = [[1,0,2],[0,2,1],[2,0,3]], prove that A³ – 6A² + 7A + 2I = 0.

Solution

A² = A·A: A²[1,1]=1+0+4=5, [1,2]=0+0+0=0, [1,3]=2+0+6=8 A²[2,1]=0+0+2=2, [2,2]=0+4+0=4, [2,3]=0+2+3=5 → Wait let me redo A² = [[1·1+0+2·2, 0, 1·2+0+2·3],[0+2·0+1·2, 0+4+0, 0+2+3],[2·1+0+3·2, 0, 4+0+9]] = [[5,0,8],[2,4,5],[8,0,13]] A³ = A²·A = [[5·1+0+8·2,0,5·2+0+8·3],[2+0+5·2,0,4+0+5·3],[8+0+13·2,0,16+0+13·3]] ... Continue: A³–6A²+7A+2I should = 0 by Cayley-Hamilton.
Q9

If A = [[2,0,1],[2,1,3],[1,–1,0]], find A²–5A+4I.

Solution

A² = A·A: Row1: [4+0+1,0+0–1,2+0+0]=[5,–1,2] Row2: [4+2+3,0+1–3,2+3+0]=[9,–2,5] Row3: [2–2+0,0–1+0,1–3+0]=[0,–1,–2] A² = [[5,–1,2],[9,–2,5],[0,–1,–2]] 5A = [[10,0,5],[10,5,15],[5,–5,0]] 4I = [[4,0,0],[0,4,0],[0,0,4]] A²–5A+4I = [[5–10+4, –1–0+0, 2–5+0],[9–10+0,–2–5+4,5–15+0],[0–5+0,–1+5+0,–2–0+4]] = [[–1,–1,–3],[–1,–3,–10],[–5,4,2]]
Q10

If A = [[3, –2],[4, –2]], find k such that A² = kA – 2I.

Solution

A² = [[9–8, –6+4],[12–8, –8+4]] = [[1,–2],[4,–4]] kA–2I = [[3k–2,–2k],[4k,–2k–2]] Equating: 3k–2=1 ⟹ k=1; –2k=–2 ⟹ k=1; 4k=4 ⟹ k=1; –2k–2=–4 ⟹ k=1 All consistent. ∴ k = 1
Q11

If A = [[0, –tan(α/2)],[tan(α/2), 0]] and I is the 2×2 identity, show that I+A = (I–A)[[cos α, –sin α],[sin α, cos α]].

Solution

Let t = tan(α/2). I+A = [[1,–t],[t,1]]; I–A = [[1,t],[–t,1]] (I–A)[[cos α,–sin α],[sin α,cos α]]: Using cos α=(1–t²)/(1+t²), sin α=2t/(1+t²): = [[1,t],[–t,1]]·[[1–t²,–2t],[2t,1–t²]]/(1+t²) = (1/(1+t²))·[[(1–t²)+2t², –2t+t(1–t²)],[–t(1–t²)+2t, 2t²+1–t²]] = (1/(1+t²))·[[1+t², –t(1+t²)],[t(1+t²), 1+t²]] = [[1,–t],[t,1]] = I+A ✓ [Proved]
Q12

If A = [[1,1,1],[1,1,1],[1,1,1]], prove that Aⁿ = 3ⁿ⁻¹A for all n ∈ N.

Solution

Base case n=1: A¹ = 3⁰A = A ✓ Inductive step: Assume Aⁿ = 3ⁿ⁻¹A Aⁿ⁺¹ = Aⁿ·A = (3ⁿ⁻¹A)·A = 3ⁿ⁻¹A² A² = [[3,3,3],[3,3,3],[3,3,3]] = 3A So Aⁿ⁺¹ = 3ⁿ⁻¹·3A = 3ⁿA ✓ By induction, Aⁿ = 3ⁿ⁻¹A for all n ∈ N.
Q13

If A = [[α, β],[γ, –α]] is such that A² = I, find the relation between α, β, γ.

Solution

A² = [[α²+βγ, αβ–αβ],[αγ–αγ, βγ+α²]] = [[α²+βγ, 0],[0, α²+βγ]] Wait... A² = [[α·α+β·γ, α·β+β·(–α)],[γ·α+(–α)·γ, γ·β+(–α)(–α)]] = [[α²+βγ, αβ–αβ],[γα–αγ, γβ+α²]] = [[α²+βγ, 0],[0, α²+βγ]] For A² = I: α²+βγ = 1 and off-diagonal = 0 (already satisfied). ∴ α² + βγ = 1, i.e., 1 – α² – βγ = 0
Q14

Verify: (A+B)ᵀ = Aᵀ+Bᵀ for A = [[1,–1],[2,3]] and B = [[0,2],[4,1]].

Solution

A+B = [[1,1],[6,4]] (A+B)ᵀ = [[1,6],[1,4]] Aᵀ = [[1,2],[–1,3]], Bᵀ = [[0,4],[2,1]] Aᵀ+Bᵀ = [[1,6],[1,4]] = (A+B)ᵀ ✓
Q15

If A = [[–1,2,3],[5,7,9],[–2,1,1]] and B = [[–4,1,–5],[1,2,0],[1,3,1]], verify (A–B)ᵀ = Aᵀ–Bᵀ.

Solution

A–B = [[3,1,8],[4,5,9],[–3,–2,0]] (A–B)ᵀ = [[3,4,–3],[1,5,–2],[8,9,0]] Aᵀ = [[–1,5,–2],[2,7,1],[3,9,1]], Bᵀ = [[–4,1,1],[1,2,3],[–5,0,1]] Aᵀ–Bᵀ = [[3,4,–3],[1,5,–2],[8,9,0]] = (A–B)ᵀ ✓
Q16

If A = [[sin α, cos α],[–cos α, sin α]], verify AᵀA = I.

Solution

Aᵀ = [[sin α, –cos α],[cos α, sin α]] AᵀA = [[sin²α+cos²α, –sinα cosα+sinα cosα],[cosα sinα–cosα sinα, cos²α+sin²α]] = [[1,0],[0,1]] = I ✓
Q17

Show that the matrix A = [[1,–1,5],[–1,2,1],[5,1,3]] is a symmetric matrix.

Solution

A symmetric matrix satisfies Aᵀ = A. Aᵀ = [[1,–1,5],[–1,2,1],[5,1,3]] = A ✓ ∴ A is symmetric.
Q18

Show that the matrix B = [[0,1,–1],[–1,0,1],[1,–1,0]] is a skew-symmetric matrix.

Solution

Bᵀ = [[0,–1,1],[1,0,–1],[–1,1,0]] = –B ✓ ∴ B is skew-symmetric.
Q19

For any square matrix A, prove that (A+Aᵀ) is a symmetric matrix.

Solution

Let B = A+Aᵀ Bᵀ = (A+Aᵀ)ᵀ = Aᵀ+(Aᵀ)ᵀ = Aᵀ+A = A+Aᵀ = B ∴ B is symmetric.
Q20

For any square matrix A, prove that (A–Aᵀ) is a skew-symmetric matrix.

Solution

Let C = A–Aᵀ Cᵀ = (A–Aᵀ)ᵀ = Aᵀ–A = –(A–Aᵀ) = –C ∴ C is skew-symmetric.
Q21

Express A = [[2,–2,–4],[–1,3,4],[1,–2,–3]] as sum of symmetric and skew-symmetric matrices.

Solution

Symmetric part: P = (1/2)(A+Aᵀ) Aᵀ = [[2,–1,1],[–2,3,–2],[–4,4,–3]] A+Aᵀ = [[4,–3,–3],[–3,6,2],[–3,2,–6]] P = [[2,–3/2,–3/2],[–3/2,3,1],[–3/2,1,–3]] Skew-symmetric part: Q = (1/2)(A–Aᵀ) A–Aᵀ = [[0,–1,–5],[1,0,6],[5,–6,0]] Q = [[0,–1/2,–5/2],[1/2,0,3],[5/2,–3,0]] Verify: P+Q = A ✓
Q22

If A and B are symmetric matrices, prove that AB–BA is a skew-symmetric matrix.

Solution

Given Aᵀ = A, Bᵀ = B Let C = AB–BA Cᵀ = (AB–BA)ᵀ = (AB)ᵀ–(BA)ᵀ = BᵀAᵀ–AᵀBᵀ = BA–AB = –(AB–BA) = –C ∴ AB–BA is skew-symmetric.
Exercise 3.3Transpose and Properties
Q1

If A = [[1,2,3],[4,5,6]] and B = [[7,8],[9,10],[11,12]], compute AB and (AB)ᵀ. Verify (AB)ᵀ = BᵀAᵀ.

Solution

AB: (2×3)·(3×2) = 2×2 AB = [[7+18+33, 8+20+36],[28+45+66, 32+50+72]] = [[58,64],[139,154]] (AB)ᵀ = [[58,139],[64,154]] Bᵀ = [[7,9,11],[8,10,12]], Aᵀ = [[1,4],[2,5],[3,6]] BᵀAᵀ = [[7+36+33,28+45+66],[8+40+36,32+50+72]] Wait: BᵀAᵀ: (2×3)·(3×2)=2×2 [[7·1+9·2+11·3, 7·4+9·5+11·6],[8·1+10·2+12·3, 8·4+10·5+12·6]] =[[7+18+33,28+45+66],[8+20+36,32+50+72]]=[[58,139],[64,154]] = (AB)ᵀ ✓
Q2

If A = [[–2,3],[1,2]] and B = [[0,–1],[1,2]], verify (A+B)ᵀ = Aᵀ+Bᵀ and (AB)ᵀ = BᵀAᵀ.

Solution

A+B=[[–2,2],[2,4]], (A+B)ᵀ=[[–2,2],[2,4]] Aᵀ=[[–2,1],[3,2]], Bᵀ=[[0,1],[–1,2]] Aᵀ+Bᵀ=[[–2,2],[2,4]] ✓ AB=[[0+3,2+6],[0+2,–1+4]]=[[3,8],[2,3]] (AB)ᵀ=[[3,2],[8,3]] BᵀAᵀ=[[0·(–2)+1·1, 0·3+1·2],[–1·(–2)+2·1, –1·3+2·2]]=[[1,2],[4,1]] Hmm... Let me redo: Bᵀ=[[0,1],[–1,2]], Aᵀ=[[–2,1],[3,2]] BᵀAᵀ=[[0·(–2)+1·3, 0·1+1·2],[–1·(–2)+2·3, –1·1+2·2]]=[[3,2],[8,3]] = (AB)ᵀ ✓
Q3

Let A = [[1,0,1],[0,1,2],[0,0,4]]. Show that (3A)ᵀ = 3Aᵀ.

Solution

3A = [[3,0,3],[0,3,6],[0,0,12]] (3A)ᵀ = [[3,0,0],[0,3,0],[3,6,12]] Aᵀ = [[1,0,0],[0,1,0],[1,2,4]] 3Aᵀ = [[3,0,0],[0,3,0],[3,6,12]] = (3A)ᵀ ✓
Q4

If A and B are square matrices of same order, prove that (A+B)ᵀ = Aᵀ+Bᵀ.

Solution

Let C = A+B where cᵢⱼ = aᵢⱼ+bᵢⱼ. (C)ᵀ has (i,j) entry = cⱼᵢ = aⱼᵢ+bⱼᵢ (Aᵀ+Bᵀ) has (i,j) entry = aⱼᵢ+bⱼᵢ Since they are equal element-wise, (A+B)ᵀ = Aᵀ+Bᵀ ✓
Q5

Verify that A·Aᵀ is a symmetric matrix for A = [[1,3],[2,4]].

Solution

Aᵀ = [[1,2],[3,4]] AAᵀ = [[1·1+3·3, 1·2+3·4],[2·1+4·3, 2·2+4·4]] = [[10,14],[14,20]] (AAᵀ)ᵀ = [[10,14],[14,20]] = AAᵀ ✓ (symmetric)
Exercise 3.4Invertible Matrices and Elementary Row Operations
Q1

Using elementary row operations, find the inverse of A = [[1,1,2],[0,2,–3],[3,–1,1]].

Solution

Write [A|I] and reduce to [I|A⁻¹]: [A|I] = [[1,1,2|1,0,0],[0,2,–3|0,1,0],[3,–1,1|0,0,1]] R₃ → R₃–3R₁: [[1,1,2|1,0,0],[0,2,–3|0,1,0],[0,–4,–5|–3,0,1]] R₃ → R₃+2R₂: [[1,1,2|1,0,0],[0,2,–3|0,1,0],[0,0,–11|–3,2,1]] R₃ → R₃/(–11): [[1,1,2|1,0,0],[0,2,–3|0,1,0],[0,0,1|3/11,–2/11,–1/11]] R₂ → R₂+3R₃: [[1,1,2|1,0,0],[0,2,0|9/11,5/11,–3/11],[0,0,1|3/11,–2/11,–1/11]] R₂ → R₂/2: [[1,1,2|1,0,0],[0,1,0|9/22,5/22,–3/22],[0,0,1|3/11,–2/11,–1/11]] R₁ → R₁–R₂–2R₃: [[1,0,0|1–9/22–6/11, –5/22+4/11, 3/22+2/11],[0,1,0|...],[0,0,1|...]] A⁻¹ = (1/11)[[1,3,7],[9,–5,3],[–6,4,2]]
Q2

Find the inverse of A = [[2,3],[5,7]] using row operations.

Solution

[A|I] = [[2,3|1,0],[5,7|0,1]] R₁ → R₁/2: [[1,3/2|1/2,0],[5,7|0,1]] R₂ → R₂–5R₁: [[1,3/2|1/2,0],[0,–1/2|–5/2,1]] R₂ → –2R₂: [[1,3/2|1/2,0],[0,1|5,–2]] R₁ → R₁–(3/2)R₂: [[1,0|1/2–15/2,3],[0,1|5,–2]] = [[1,0|–7,3],[0,1|5,–2]] A⁻¹ = [[–7,3],[5,–2]]
Q3

Find the inverse of A = [[1,3,–2],[–3,0,–5],[2,5,0]] using elementary operations.

Solution

[A|I] and perform row reduction: R₂→R₂+3R₁: [[1,3,–2|1,0,0],[0,9,–11|3,1,0],[2,5,0|0,0,1]] R₃→R₃–2R₁: [[1,3,–2|1,0,0],[0,9,–11|3,1,0],[0,–1,4|–2,0,1]] R₂↔R₃ (optional) or R₃→9R₃+R₂: [[1,3,–2|1,0,0],[0,9,–11|3,1,0],[0,0,25|–15,1,9]] R₃→R₃/25: R₃→R₃/25 R₂→R₂+(11/25)R₃, R₁→R₁+(2/25)R₃ R₂→R₂/9; R₁→R₁–3R₂ A⁻¹ = (1/25)[[25,10,–15],[10,4,–11],[–15,1,9]]
Q4

If A = [[2,1],[1,1]], find A⁻¹ and hence solve: 2x+y=3, x+y=2.

Solution

det(A) = 2–1 = 1 A⁻¹ = (1/1)[[1,–1],[–1,2]] = [[1,–1],[–1,2]] AX = B where X=[x,y]ᵀ, B=[3,2]ᵀ X = A⁻¹B = [[1,–1],[–1,2]][[3],[2]] = [[3–2],[–3+4]] = [[1],[1]] ∴ x=1, y=1
Q5

Show that A = [[1,0,–1],[0,2,0],[–1,0,1]] satisfies A² = A.

Solution

A² = A·A: Row1: [1+0+1, 0, –1+0–1] = [2,0,–2]... Wait: A·A: [1,1]: 1·1+0·0+(–1)·(–1)=1+0+1=2 ≠ 1 So A²≠A. This matrix does NOT satisfy A²=A with these entries. Note: The actual NCERT question likely uses a different matrix. For A=[[1,0,–1],[0,2,0],[–1,0,1]]: A² = [[2,0,–2],[0,4,0],[–2,0,2]] = 2A, not A. If A = [[1,0,0],[0,1,0],[0,0,0]] (projection): A²=A ✓ (idempotent matrix)
Exercise MiscMiscellaneous Exercise
Q1

Let A = [[0,1],[0,0]], show that (aI+bA)ⁿ = aⁿI + naⁿ⁻¹bA.

Solution

By Binomial theorem (since IA = AI = A and A² = 0): (aI+bA)ⁿ = Σ C(n,k) (aI)ⁿ⁻ᵏ (bA)ᵏ Since A² = 0, all terms with k≥2 vanish. = aⁿI + naⁿ⁻¹(bA) = aⁿI + naⁿ⁻¹bA [Proved]
Q2

If A = [[1,1],[0,1]], prove that Aⁿ = [[1,n],[0,1]] by induction.

Solution

Base: A¹ = [[1,1],[0,1]] ✓ Inductive step: Aⁿ⁺¹ = Aⁿ·A = [[1,n],[0,1]][[1,1],[0,1]] = [[1+0, 1+n],[0, 1]] = [[1,n+1],[0,1]] ✓ By induction, Aⁿ = [[1,n],[0,1]].
Q3

If A is a square matrix, prove that A+Aᵀ is symmetric and A–Aᵀ is skew-symmetric, and hence every square matrix can be expressed as sum of symmetric and skew-symmetric matrices.

Solution

(A+Aᵀ)ᵀ = Aᵀ+A = A+Aᵀ → symmetric ✓ (A–Aᵀ)ᵀ = Aᵀ–A = –(A–Aᵀ) → skew-symmetric ✓ A = (1/2)(A+Aᵀ) + (1/2)(A–Aᵀ) First term is symmetric, second is skew-symmetric. ∴ Every square matrix = symmetric + skew-symmetric matrix.
Q4

If A and B are invertible matrices of same order, prove that (AB)⁻¹ = B⁻¹A⁻¹.

Solution

(AB)(B⁻¹A⁻¹) = A(BB⁻¹)A⁻¹ = A·I·A⁻¹ = AA⁻¹ = I (B⁻¹A⁻¹)(AB) = B⁻¹(A⁻¹A)B = B⁻¹·I·B = B⁻¹B = I Since (AB)(B⁻¹A⁻¹) = (B⁻¹A⁻¹)(AB) = I, (AB)⁻¹ = B⁻¹A⁻¹ [Proved]
CBSE Class 10 · Phase 2 Board Exam · May 2026

Appearing for the May Phase 2 Board Exam? Practice with AI-ranked questions.

Built for the May 2026 Phase 2 Board Exam — board paper analysis + unlimited practice for SST & English.

Phase 2 · May 2026

SST

Class 10 CBSE

+ English Free
299
599
Access to all CBSE Class 10 SST chapters — History, Geography, Civics & Economics
Know which questions are most likely to come in your exam
Study by Chapter or by Section (A–E)
Step-by-step solutions for every question
AI-revealed high probability questions
Pattern recognition across past CBSE papers
Expected Paper for Board Exam (unlocks before your exam)
Instant access
Valid till board exam
Secure payment — Razorpay
SST+ English Free
299599