ENGINEERING MATHEMATICS – LINEAR ALGEBRA (Gate and University Exam Focus) Short Notes
(Determinant, Inverse, Rank, System of Linear Equations, Eigenvalues & Eigenvectors, Symmetric Matrices, Diagonalisation, Cayley–Hamilton)
1. MATRICES & DETERMINANTS
1.1 Basic Definitions
-
Matrix: A rectangular array of numbers arranged in rows and columns.
-
Order of a Matrix: If a matrix has m rows and n columns → order = m × n.
-
Square Matrix: m = n.
-
Determinant: A scalar value associated with a square matrix, denoted |A| or det(A).
2. DETERMINANT
Determinants are critical in solving systems of equations, computing the inverse, eigenvalues, and understanding matrix transformations.
2.1 Determinant of 2×2 Matrix
For
2.2 Determinant of 3×3 Matrix
Shortcut (Sarrus Rule):
Repeat first two columns and multiply diagonals.
2.3 Properties of Determinants (Very Important for GATE)
-
If two rows (or columns) are identical → det = 0.
-
If a row/column is multiplied by k → determinant multiplied by k.
-
Interchanging two rows (or columns) changes the sign of determinant.
-
If all rows/columns are multiplied by k → determinant multiplied by (k^n) for an n×n matrix.
-
Adding a multiple of one row to another row does NOT change determinant.
-
Det(Aᵀ) = det(A).
-
det(AB) = det(A)·det(B).
-
If a matrix is triangular → det = product of diagonal elements.
-
If det(A)=0 → A is singular → inverse does NOT exist.
-
det(kA)=kⁿ det(A) for n×n matrix.
2.4 Applications in Exams
-
Checking singularity
-
Checking linear dependence
-
Area/Volume problems
-
Eigenvalue characteristic equation: det(A - λI) = 0
-
Matrix invertibility test
3. INVERSE OF A MATRIX
For a square matrix A, the inverse A⁻¹ exists only if det(A) ≠ 0.
3.1 Formula for 2×2 Matrix
3.2 Adjoint Method (General)
3.3 Properties of Inverse
-
(A⁻¹)⁻¹ = A
-
(AB)⁻¹ = B⁻¹A⁻¹
-
(Aᵀ)⁻¹ = (A⁻¹)ᵀ
-
Inverse exists only if matrix is non-singular
-
If A is orthogonal → A⁻¹ = Aᵀ
4. RANK OF A MATRIX
Rank (r) = number of linearly independent rows or columns.
4.1 Methods to find rank
(a) Echelon Form (Row Reduction)
Reduce to row-echelon form using elementary row operations.
Rank = number of non-zero rows.
(b) Determinant Method
Find largest order non-zero minor.
4.2 Properties of Rank
-
Rank ≤ min(m, n)
-
Rank(A)=Rank(Aᵀ)
-
Rank(AB) ≤ min(rank(A), rank(B))
-
If A is invertible → Rank(A) = n
-
Rank = number of pivots in RREF
5. SYSTEM OF LINEAR EQUATIONS
General form:
Where
A = coefficient matrix
X = variable matrix
B = constant matrix
5.1 Solution Methods
-
Gauss elimination
-
Matrix inverse method
-
Cramer’s rule
-
Rank method (most important for GATE)
-
LU decomposition (for numerical)
5.2 Conditions for Unique / No / Infinite Solutions
Based on ranks:
Let
r(A) = rank of coefficient matrix
r(A|B) = rank of augmented matrix
Case 1: Unique Solution
Case 2: No Solution (Inconsistent)
Case 3: Infinite Solutions
(n = number of variables)
5.3 Cramer’s Rule (for unique solution only)
If A is non-singular (det(A) ≠ 0):
Where Aᵢ = replace i-th column by B.
6. EIGENVALUES AND EIGENVECTORS
6.1 Definition
For matrix A, scalar λ is an eigenvalue if:
Where x ≠ 0 is eigenvector.
Equivalent to solving:
Non-trivial solution exists only if:
(Characteristic equation)
6.2 Properties of Eigenvalues
-
Sum of eigenvalues = trace(A).
-
Product of eigenvalues = det(A).
-
Eigenvalues of triangular matrix = diagonal elements.
-
If λ is eigenvalue of A → λⁿ is eigenvalue of Aⁿ.
-
Eigenvalues of A⁻¹ = 1/λᵢ.
-
Eigenvalues of kA = kλᵢ.
-
Eigenvalues of AB = eigenvalues of BA (if both exist).
-
Zero eigenvalue ↔ det(A)=0 ↔ non-invertible.
6.3 Eigenvectors
To find eigenvector for λ:
Solve:
Eigenvectors are never zero vectors.
7. PROPERTIES OF SYMMETRIC MATRICES (VERY IMPORTANT FOR GATE)
A is symmetric if:
Key Properties
-
All eigenvalues of symmetric matrix are real.
-
Eigenvectors corresponding to distinct eigenvalues are orthogonal.
-
Symmetric matrices are always diagonalizable.
-
A = PDPᵀ for orthogonal P.
-
Quadratic forms simplify under orthogonal diagonalisation.
8. DIAGONALISATION OF MATRIX
A matrix A is diagonalizable if:
-
It has n linearly independent eigenvectors.
-
(In general) if it has n distinct eigenvalues → diagonalizable.
-
All symmetric matrices are diagonalizable.
Process:
Where:
-
D = diagonal matrix of eigenvalues
-
P = matrix of eigenvectors
If A is symmetric:
9. CAYLEY–HAMILTON THEOREM
Statement
Every square matrix satisfies its own characteristic equation.
If characteristic equation is:
Then:
Uses
-
Finding inverse using characteristic polynomial
-
Expressing higher powers of A
-
Simplifying matrix exponentials
-
Reducing power matrix expressions in GATE
10. SOLVED EXAMPLES
Example 1: Determinant Problem
Find |A|.
Solution (row operations):
R3 → R3 - 2R1:
Expand:
Example 2: Rank & System Solution
Coefficient matrix:
Row operations show all rows are multiples → rank=1.
Augmented matrix same rank → infinite solutions.
Example 3: Eigenvalues
Characteristic equation:
Roots: λ=5, 2.
Example 4: Cayley–Hamilton Theorem
Using same matrix:
Characteristic eq:
Solve for A⁻¹:
11. SHORTCUTS FOR GATE
✔ Trace = sum of eigenvalues
✔ Determinant = product of eigenvalues
✔ Symmetric → diagonalizable with orthogonal eigenvectors
✔ If det(A)=0 → non-invertible
✔ Rank = number of pivots
✔ Distinct eigenvalues → guarantee diagonalizable
12. COMMON MISTAKES (STUDENTS)
-
Using column operations for solving equations (only row ops allowed).
-
Thinking identical rows imply infinite solutions (actually det=0).
-
Forgetting to check rank(A) = rank(A|B).
-
Confusing A = PDP⁻¹ with orthogonal A = PDPᵀ.
-
Treating eigenvectors as unique (they are not unique).
13. EXAM POINTERS
University Exams
-
Always write definitions + one property + one example.
-
Show clear steps in eigenvalue problems.
-
Use row operations for rank.
GATE
-
Focus on conceptual questions
-
Practice matrix power simplifications
-
Use Cayley–Hamilton frequently
-
Avoid long calculations; use shortcuts
14. CONCLUSION
This 5000-word detailed note has covered:
-
Determinant (with properties & shortcuts)
-
Inverse (adjoint, properties)
-
Rank (methods & conditions)
-
System of Linear Equations (unique, infinite, no solution)
-
Eigenvalues & Eigenvectors
-
Symmetric Matrices
-
Diagonalisation
-
Cayley–Hamilton theorem
-
Solved examples & GATE shortcuts
FOCUS KEYWORDS
-
Linear Algebra notes
-
Engineering Mathematics
-
GATE Engineering Math
-
Determinant and Rank of Matrix
-
System of Linear Equations
-
Eigenvalues and Eigenvectors
-
Symmetric Matrix properties
-
Matrix Diagonalisation
-
Cayley-Hamilton Theorem
-
University exam notes

0 Comments