Matrices encode systems of equations; determinants unlock their solutions. One of the most formula-heavy chapters — 4–5 questions guaranteed every EAPCET year.
From matrix types to Cramer's Rule — structured for exam speed.
| Type | Definition | Example |
|---|---|---|
| Row matrix | 1 × n matrix | [1 2 3] |
| Column matrix | n × 1 matrix | Single column |
| Square matrix | n × n | 2×2, 3×3 |
| Diagonal | Off-diagonal elements = 0 | diag(a,b,c) |
| Identity (I) | Diagonal = 1, rest = 0 | AI = IA = A |
| Symmetric | A = Aᵀ | aᵢⱼ = aⱼᵢ |
| Skew-symmetric | A = −Aᵀ | aᵢⱼ = −aⱼᵢ; diagonal = 0 |
| Orthogonal | AAᵀ = I → A⁻¹ = Aᵀ | Rotation matrices |
Addition: Same order only. Add element-by-element. Commutative.
Multiplication: (m×n)(n×p) = (m×p). NOT commutative: AB ≠ BA in general.
Transpose: (Aᵀ)ᵢⱼ = Aⱼᵢ. (AB)ᵀ = BᵀAᵀ
Trace: tr(A) = sum of diagonal elements = sum of eigenvalues
2×2:
3×3 (cofactor expansion along row 1):
where Cᵢⱼ = (−1)^(i+j) × Mᵢⱼ (Mᵢⱼ = minor)
1. |Aᵀ| = |A| — transposing doesn't change determinant
2. Swapping two rows/cols: sign of det changes
3. Row of zeros → det = 0
4. Two identical rows/cols → det = 0
5. |kA| = kⁿ|A| for n×n matrix
6. |AB| = |A|·|B|
A⁻¹ exists only when |A| ≠ 0 (A is non-singular).
adj(A) = transpose of cofactor matrix
Properties: AA⁻¹ = I | (AB)⁻¹ = B⁻¹A⁻¹ | (A⁻¹)ᵀ = (Aᵀ)⁻¹
For AX = B where A is n×n, solution: xᵢ = Dᵢ/D
where D = |A| and Dᵢ = |A with i-th column replaced by B|
Consistency:
D ≠ 0: unique solution
D = 0, all Dᵢ = 0: infinitely many solutions
D = 0, any Dᵢ ≠ 0: no solution (inconsistent)
Eigenvalues λ satisfy: det(A − λI) = 0 (characteristic equation)
For 2×2 matrix: λ² − (tr A)λ + |A| = 0
Cayley-Hamilton Theorem: every matrix satisfies its own characteristic equation. Use to find powers of A.
All matrix and determinant formulas in one place.
5 problems covering the full EAPCET spectrum.
5 common errors that cost marks in EAPCET matrix questions.
Matrices is one of the highest-scoring chapters if you know exactly what to practise.