Matrices
"Matrices are the language in which systems of linear equations are written — and solved."
1. Chapter Overview
A MATRIX is an ordered rectangular array of numbers or functions. This chapter covers: notation (order m×n), TYPES of matrices (square, diagonal, scalar, identity, zero), OPERATIONS (addition, subtraction, scalar multiplication, matrix multiplication), TRANSPOSE, SYMMETRIC and SKEW-SYMMETRIC matrices, and finding the INVERSE of a square matrix using elementary row/column operations.
2. Basic Concepts
- Order: m × n (rows × columns)
- Square matrix: m = n
- Diagonal matrix: non-diagonal elements = 0
- Scalar matrix: diagonal matrix with all diagonal elements EQUAL
- Identity matrix (I) : diagonal = 1, rest = 0. The '1' of matrix multiplication. A × I = I × A = A.
- Zero matrix (O) : All elements = 0
3. Matrix Operations
Addition
- ONLY matrices of the SAME order can be added. Element by element.
- Commutative: A + B = B + A
Multiplication
- A (m×n) × B (n×p) = C (m×p). 'Inner dimensions must MATCH.'
- NOT COMMUTATIVE: AB ≠ BA (in general)
- Associative: (AB)C = A(BC). Distributive: A(B+C) = AB + AC.
4. Transpose, Symmetric, and Skew-Symmetric
Transpose (A′ or Aᵀ)
- Rows become columns. Columns become rows. (A′)′ = A. (AB)′ = B′A′.
Symmetric Matrix
- A′ = A. 'Equal to its own transpose.'
Skew-Symmetric Matrix
- A′ = -A. All diagonal elements = 0.
Every Square Matrix Can Be Expressed As:
A = ½(A + A′) + ½(A — A′) = Symmetric part + Skew-Symmetric part
5. Inverse of a Matrix (Using Elementary Operations)
- A square matrix A is INVERTIBLE if there exists B such that AB = BA = I. B = A⁻¹.
- Methods: Elementary Row Operations (ERO) or Column Operations. Apply the SAME operations to A and I. When A → I, I → A⁻¹.
6. Exam Focus
- Matrix multiplication — condition (inner dimensions must match), non-commutative
- Transpose properties. (AB)′ = B′A′.
- Symmetric (A′=A) and Skew-Symmetric (A′=-A). Decomposition: A = ½(A+A′) + ½(A-A′).
- Inverse using elementary row operations.
7. Conclusion
Matrices are ESSENTIAL for: solving systems of linear equations (next chapter: determinants), computer graphics, data science, quantum mechanics, and more:
- A matrix ORGANISES information into rows and columns
- Matrix MULTIPLICATION is a TRANSFORMATION — 'apply one matrix to another'
- The INVERSE undoes a matrix's effect — 'A⁻¹(Ax) = x'
'Matrices are the heavy lifters of applied mathematics. Wherever there are systems, there are matrices.'
