Vidhyapath ← EAMCET Hub
FREE vidhyapath.com β†—
Chapter progress
Layer 1 of 5
Mathematics High Weightage β˜…β˜…β˜…β˜…β˜… Class 11 + 12

Matrices & Determinants

Matrices encode systems of equations; determinants unlock their solutions. One of the most formula-heavy chapters β€” 4–5 questions guaranteed every EAPCET year.

4–5Questions in EAPCET
~5%Paper Weightage
10Core Formulas
5Mistake Traps

Concept Core

From matrix types to Cramer's Rule β€” structured for exam speed.

Matrix Types β€” Quick Reference
TypeDefinitionExample
Row matrix1 Γ— n matrix[1 2 3]
Column matrixn Γ— 1 matrixSingle column
Square matrixn Γ— n2Γ—2, 3Γ—3
DiagonalOff-diagonal elements = 0diag(a,b,c)
Identity (I)Diagonal = 1, rest = 0AI = IA = A
SymmetricA = Aα΅€aα΅’β±Ό = aβ±Όα΅’
Skew-symmetricA = βˆ’Aα΅€aα΅’β±Ό = βˆ’aβ±Όα΅’; diagonal = 0
OrthogonalAAα΅€ = I β†’ A⁻¹ = Aα΅€Rotation matrices
Matrix Operations

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

Determinant of 2Γ—2 and 3Γ—3

2Γ—2:

|A| = ad βˆ’ bc for A = [[a,b],[c,d]]

3Γ—3 (cofactor expansion along row 1):

|A| = a₁₁C₁₁ + a₁₂C₁₂ + a₁₃C₁₃

where Cα΅’β±Ό = (βˆ’1)^(i+j) Γ— Mα΅’β±Ό (Mα΅’β±Ό = minor)

Properties of Determinants

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|

Inverse of a Matrix

A⁻¹ exists only when |A| β‰  0 (A is non-singular).

A⁻¹ = adj(A) / |A|

adj(A) = transpose of cofactor matrix

Properties: AA⁻¹ = I  |  (AB)⁻¹ = B⁻¹A⁻¹  |  (A⁻¹)α΅€ = (Aα΅€)⁻¹

Cramer's Rule β€” Solving Linear Systems

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 β€” Characteristic Equation

Eigenvalues Ξ» satisfy: det(A βˆ’ Ξ»I) = 0 (characteristic equation)

For 2Γ—2 matrix: λ² βˆ’ (tr A)Ξ» + |A| = 0

λ₁ + Ξ»β‚‚ = tr(A) = a₁₁ + aβ‚‚β‚‚    λ₁λ₂ = |A|

Cayley-Hamilton Theorem: every matrix satisfies its own characteristic equation. Use to find powers of A.

Formula Vault

All matrix and determinant formulas in one place.

2Γ—2 Determinant
|A| = ad βˆ’ bc
A = [[a,b],[c,d]]
2Γ—2 Inverse
A⁻¹ = (1/|A|)[[d,βˆ’b],[βˆ’c,a]]
Swap diagonal, negate off-diagonal
Adjoint
adj(A) = (Cofactor matrix)α΅€
AΒ·adj(A) = |A|Β·I
Inverse Formula
A⁻¹ = adj(A) / |A|
Only when |A| β‰  0
Determinant of Product
|AB| = |A| Β· |B|
|Aⁿ| = |A|ⁿ
Determinant of Scalar Multiple
|kA| = kⁿ|A|
n = order of matrix
Cramer's Rule
x = D₁/D, y = Dβ‚‚/D
D = |coeff matrix|
Eigenvalue Sum & Product
Σλ = tr(A), Πλ = |A|
For 2Γ—2 matrix
Transpose Properties
(AB)α΅€ = Bα΅€Aα΅€; (A+B)α΅€ = Aα΅€+Bα΅€
Reverse order for products
Rank
ρ(A) = max order of non-zero minor
Full rank nΓ—n: ρ=n β†’ A invertible

Worked Examples

5 problems covering the full EAPCET spectrum.

EasyEvaluate the determinant of [[3,1],[βˆ’2,4]]β–Ύ
Find |A| for A = [[3, 1], [βˆ’2, 4]].
1
|A| = ad βˆ’ bc = (3)(4) βˆ’ (1)(βˆ’2) = 12 + 2 = 14
βœ“ |A| = 14
EasyFind the inverse of A = [[2,1],[5,3]]β–Ύ
Find A⁻¹ for A = [[2,1],[5,3]].
1
|A| = (2)(3) βˆ’ (1)(5) = 6 βˆ’ 5 = 1
2
A⁻¹ = (1/1) Γ— [[3,βˆ’1],[βˆ’5,2]] = [[3,βˆ’1],[βˆ’5,2]]
βœ“ A⁻¹ = [[3,βˆ’1],[βˆ’5,2]]
MediumSolve using Cramer's Rule: 2x+y=5, 3xβˆ’y=0β–Ύ
Solve the system: 2x + y = 5 and 3x βˆ’ y = 0 using Cramer's Rule.
1
Coefficient matrix: A = [[2,1],[3,βˆ’1]]. D = |A| = (2)(βˆ’1)βˆ’(1)(3) = βˆ’2βˆ’3 = βˆ’5
2
D₁ (replace col 1 by constants [5,0]): |[[5,1],[0,βˆ’1]]| = βˆ’5βˆ’0 = βˆ’5
3
Dβ‚‚ (replace col 2 by [5,0]): |[[2,5],[3,0]]| = 0βˆ’15 = βˆ’15
4
x = D₁/D = βˆ’5/βˆ’5 = 1;   y = Dβ‚‚/D = βˆ’15/βˆ’5 = 3
βœ“ x = 1, y = 3
EAPCET LevelFind k such that the system has no solutionβ–Ύ
For what value of k does the system x+2y=3, 3x+ky=9 have no solution?
1
D = |[[1,2],[3,k]]| = k βˆ’ 6
2
For no solution: D = 0 AND not all Dα΅’ = 0. So k βˆ’ 6 = 0 β†’ k = 6
3
Verify D₁: |[[3,2],[9,6]]| = 18βˆ’18 = 0. Dβ‚‚: |[[1,3],[3,9]]| = 9βˆ’9 = 0.
4
Both Dα΅’ = 0 when k=6 β†’ infinitely many solutions, NOT no solution. Try: equations become x+2y=3 and 3x+6y=9 β†’ 3(x+2y)=9 β†’ same line β†’ infinitely many solutions
5
For no solution we need D=0 but at least one Dα΅’β‰ 0. Change problem: if RHS was 9 and 10 instead of 3 and 9, then k=6 gives no solution. For this problem: no unique k gives no solution β€” the system is always consistent.
βœ“ For k = 6: infinitely many solutions. For k β‰  6: unique solution. No solution is not possible here.
Trap QuestionIf A is a 3Γ—3 matrix with |A| = 5, find |3A| and |adj A|β–Ύ
A is a 3Γ—3 matrix with |A| = 5. Find (i) |3A| and (ii) |adj A|.
1
|3A|: Use |kA| = kⁿ|A| where n = 3. So |3A| = 3Β³ Γ— 5 = 27 Γ— 5 = 135
2
|adj A|: Use formula |adj A| = |A|^(nβˆ’1) = 5^(3βˆ’1) = 5Β² = 25
βœ“ |3A| = 135, |adj A| = 25

Mistake DNA

5 common errors that cost marks in EAPCET matrix questions.

βœ–οΈ
Assuming Matrix Multiplication is Commutative
AB = BA is NOT generally true. This error appears in simplification problems.
❌ Wrong
AB = BA assumed
β†’ wrong simplification
of (AB)α΅€ = Aα΅€Bα΅€ βœ—
βœ“ Correct
(AB)α΅€ = Bα΅€Aα΅€ βœ“
(AB)⁻¹ = B⁻¹A⁻¹ βœ“
Order reverses for products
For any product of matrices, transpose or inverse reverses the order. This is one of the most frequently tested properties.
πŸ”’
|kA| = k|A| instead of kⁿ|A|
The scalar factor k is raised to the power n (order of matrix), not left as k.
❌ Wrong
For 3Γ—3, |A|=4:
|2A| = 2 Γ— 4 = 8 βœ—
βœ“ Correct
|2A| = 2Β³ Γ— 4 = 32 βœ“
Each row gets factor k,
so kⁿ overall
Each row of the matrix can be scaled by k, contributing k to the determinant. For n rows, that's kⁿ. This is NOT the same as multiplying a single row.
πŸ”‘
Computing Inverse When |A| = 0
A singular matrix (|A|=0) has no inverse. Students still try to compute A⁻¹.
❌ Wrong
|A| = 0 but still compute
A⁻¹ = adj(A)/0 βœ—
(division by zero)
βœ“ Correct
If |A| = 0: A is singular
β†’ A⁻¹ does not exist βœ“
First check |A| β‰  0
Always compute |A| first. If it's zero, stop β€” the matrix is singular. This also means the linear system either has infinitely many or no solutions.
πŸ“Š
Cofactor Sign Errors in 3Γ—3 Determinant
Forgetting the (βˆ’1)^(i+j) checkerboard sign pattern when computing cofactors.
❌ Wrong
All cofactors positive βœ—
C₁₂ = +M₁₂ instead
of βˆ’M₁₂
βœ“ Correct
Sign pattern: + βˆ’ +
                       βˆ’ + βˆ’
                       + βˆ’ +
Cofactor Cα΅’β±Ό = (βˆ’1)^(i+j) Γ— Mα΅’β±Ό. Corner elements are +, edge centers are βˆ’. Memorise the checkerboard.
βž—
D = 0 β†’ Automatically Claiming "No Solution"
When D = 0, the system might have infinitely many solutions (not necessarily no solution).
❌ Wrong
D = 0 β†’ "system has
no solution" βœ—
βœ“ Correct
D = 0: check all Dα΅’
All Dα΅’ = 0 β†’ ∞ solutions
Any Dα΅’ β‰  0 β†’ no solution βœ“
D = 0 is the starting point, not the conclusion. You must check D₁, Dβ‚‚, etc. to determine if the system is inconsistent or has infinitely many solutions.

Chapter Intelligence

Matrices is one of the highest-scoring chapters if you know exactly what to practise.

EAPCET Topic Weightage (2019–2024)
Inverse of a matrix
~8
3Γ—3 determinant evaluation
~7
Cramer's Rule
~6
|kA|, |adj A| properties
~5
Matrix multiplication
~4
Eigenvalues / char. equation
~3
High-Yield PYQ Patterns
Find A⁻¹ using adj/det |adj A| and |kA| Solve 2Γ—2 system using Cramer's Consistency of 3-equation system Symmetric / skew-symmetric Eigenvalue of 2Γ—2 matrix
Exam Strategy
  • For 2Γ—2 inverse: use the swap-negate formula directly β€” don't compute adjoint through cofactors. It's 4Γ— faster.
  • Before solving any system: compute D first. If D β‰  0, unique solution exists β€” use Cramer's. If D = 0, investigate further.
  • Properties questions (|kA|, |adj A|): memorise the two formulas |kA|=kⁿ|A| and |adj A|=|A|^(nβˆ’1). These appear as 30-second MCQs every year.
  • 3Γ—3 determinant: expand along the row or column with the most zeros β€” it reduces the number of 2Γ—2 determinants you need to compute.
  • Check: (AB)α΅€ = Bα΅€Aα΅€, (AB)⁻¹ = B⁻¹A⁻¹. Order reversal is tested very frequently in EAPCET.
Share

💡 Suggestions & Feedback

We read every message

To keep feedback accountable, we verify your email before accepting messages.

Already a student? Log in to skip this step.