1. Concept of Matrices
A matrix is an ordered rectangular array of numbers or functions, called elements or entries. A matrix having m rows and n columns is called a matrix of order m × n.
- Notation: A = [aij]m×n, where i = 1, 2,..., m and j = 1, 2,..., n.
- Equality: Two matrices are equal if they have the same order and their corresponding elements are equal.
Types of Matrices:
- Column/Row Matrix: Matrix with one column (m × 1) or one row (1 × n).
- Square Matrix: Number of rows equals columns (m = n).
- Diagonal Matrix: Square matrix where all non-diagonal elements are zero.
- Scalar & Identity (I): Diagonal matrix with identical diagonal elements. If diagonal elements are 1, it's an Identity matrix.
- Zero Matrix (O): All elements are zero.
2. Algebra of Matrices
Addition & Scalar Multiplication
- Addition (A + B): Possible only if A and B have the same order. Add corresponding elements. It is commutative (A+B=B+A) and associative.
- Scalar Multiplication (kA): Every element of A is multiplied by the scalar k.
- Negative of a Matrix: -A = (-1)A.
Multiplication of Matrices (AB)
To compute A × B, the columns of A must equal the rows of B. If A is (m × n) and B is (n × p), matrix AB will be of order (m × p).
- Associative Law: A(BC) = (AB)C.
- Distributive Law: A(B + C) = AB + AC.
- Identity Property: AI = IA = A.
3. Transpose & Matrix Ops
The Transpose (AT or A') is obtained by interchanging rows into columns. For A = [aij]m×n, AT = [aji]n×m.
- (AT)T = A
- (A + B)T = AT + BT
- (AB)T = BTAT (Reversal law is crucial!)
Symmetric and Skew-Symmetric
- Symmetric: AT = A. (Symmetrical across the main diagonal).
- Skew-symmetric: AT = -A. (Diagonal elements are zero).
- Theorem: Any square matrix can be written as the sum of a symmetric and a skew-symmetric matrix:
A = ½(A + AT) + ½(A - AT).
Elementary Operations:
Transforming rows (or columns) algebraically:
- Interchanging any two rows/columns (Ri ↔ Rj).
- Multiplying a row/column by a non-zero scalar (Ri → kRi).
- Adding a scalar multiple of another row/column (Ri → Ri + kRj).
4. Determinants
Every square matrix A = [aij] has a number called its Determinant, denoted as |A| or det(A).
- 1x1 Matrix: det(A) = a11
- 2x2 Matrix: |A| = (a11)(a22) - (a21)(a12)
- 3x3 Matrix: Expanded using row or column cofactors.
Expansion of Determinant
Along row i:
|A| = Σ aij Aij
Along column j:
|A| = Σ aij Aij
Where Aij is the cofactor of element aij.
Determinant Properties:
- |AB| = |A| |B|.
- |AT| = |A|.
- If any two rows/columns are identical, |A| = 0.
- Interchanging two rows/columns multiplies the determinant by -1.
- |kA| = kn|A|, where n is the order of the square matrix.
Area of a Triangle:
Using vertices (x1, y1), (x2, y2) and (x3, y3):
Area = ½ | [x1 y1 1]
[x2 y2 1]
[x3 y3 1] |
If Area = 0, the three points are collinear.
5. Adjoint and Inverse
Minors and Cofactors
- Minor (Mij): Determinant obtained by deleting the ith row and jth column.
- Cofactor (Aij): Aij = (-1)i+j Mij.
The Adjoint (adj A) is the transpose of the cofactor matrix.
- A(adj A) = (adj A)A = |A| I
- |adj A| = |A|n-1 (Crucial for IAT!)
- adj(AB) = (adj B)(adj A)
Invertible Matrix
A square matrix A is invertible if there exists a matrix A-1 such that:
AA-1 = A-1A = I
This happens if and only if |A| ≠ 0.
Uniqueness of Inverse
If A-1 exists, then it is unique. There cannot be two different inverses for the same matrix.
6. Systems of Linear Equations
Matrices can be used to solve systems of linear equations: AX = B.
Consistency of System
- |A| ≠ 0 → Unique solution (X = A-1B).
- |A| = 0 and rank(A) = rank([A|B]) → Infinite solutions.
- |A| = 0 and rank(A) ≠ rank([A|B]) → No solution.
7. IAT Exam Focus Points
High-Yield Tips:
- When solving 3x3 matrices, use elementary operations to create zeros before expanding the determinant.
- Orthogonal Matrices: A AT = I. For these matrices, A-1 = AT.
- Idempotent Matrices: A2 = A. Trace is equal to the rank.
- The determinant represents the area scale factor of the transformation.
8. Practice Mock Test
Ready to test your knowledge?
Take a 15-question test on Matrices & Determinants to check your mastery.
Start Practice MockEnd of Chapter
Matrices & Determinants Completed