Back to Course
Chapter Review

Matrices and Determinants

Matrices and Determinants · System of Linear Equations

Matrix Structure and Operations

Matrices are rectangular arrays with order . Addition requires matching dimensions and is element-wise, while scalar multiplication distributes over both matrix and scalar addition.

Key Points

  • Element is in row , column ; addition/subtraction require identical dimensions
  • Addition is commutative (), but multiplication is NOT
  • The null matrix is the additive identity:
  • Scalar distribution: and

Matrix Multiplication

Matrix multiplication uses the dot product of rows and columns, not element-wise pairing. The inner dimensions must match for the product to be defined.

Key Points

  • produces an matrix — inner values must agree
  • Each entry:
  • Generally non-commutative:
  • Identity property:
  • Transpose of a product reverses order:
Formula

Special Matrix Types

Matrices are classified by structural properties of their entries. Symmetric, skew-symmetric, Hermitian, diagonal, scalar, and null matrices each have distinct algebraic behaviours.

Key Points

  • Symmetric: , i.e. . All diagonal matrices are symmetric
  • Skew-Symmetric: , forcing all diagonal entries to zero
  • Hermitian: (complex analog of symmetric); diagonal entries must be real
  • Skew-Hermitian: ; diagonal entries are zero or purely imaginary
  • Scalar matrix: — commutes with all square matrices of the same order

Determinants

The determinant is a scalar value of a square matrix that determines invertibility. A zero determinant means the matrix is singular and has no inverse.

Key Points

  • 2×2:
  • 3×3: expand along any row/column using cofactors
  • Choose the row/column with the most zeros for efficient expansion
  • means the matrix is singular (no inverse exists)
  • Product rule:
Formula

Properties of Determinants

Several shortcut properties allow evaluating or simplifying determinants without full cofactor expansion, by recognising special structures.

Key Points

  • — transpose does not change the determinant
  • Swapping two rows/columns reverses the sign
  • Two identical rows/columns or an all-zero row/column →
  • Scaling one row by multiplies the determinant by ; scaling the whole matrix:
  • Adding a multiple of one row to another leaves the determinant unchanged
  • Triangular/diagonal matrix: determinant = product of diagonal entries
Formula

Adjoint and Matrix Inverse

The inverse exists only when and is computed via the adjoint matrix (transpose of the cofactor matrix) scaled by the reciprocal of the determinant.

Key Points

  • , requires
  • 2×2 adjoint shortcut: swap diagonal entries, negate off-diagonal entries
  • Alternative: augment and row-reduce to
  • Verification: must equal
Formula

Systems of Linear Equations and Consistency

A linear system is consistent if it has at least one solution. Comparing the rank of the coefficient matrix to the augmented matrix determines consistency and solution type.

Key Points

  • Unique solution: rank() = rank() = number of variables
  • Infinitely many: rank() = rank() < number of variables — free variables exist
  • No solution: rank() ≠ rank() — contradiction row ,
  • Rank = number of non-zero rows after reducing to echelon form

Echelon Form and Row Reduction

Elementary row operations (swap, scale, row replacement) transform any augmented matrix into echelon form for back-substitution, or reduced echelon form for direct reading of solutions.

Key Points

  • Three operations: row swap (), scaling (), row addition ()
  • Echelon form: staircase of leading 1s, zeros below each pivot
  • Reduced echelon form: additionally, zeros above each pivot — solution read directly
  • All operations are reversible — they preserve the solution set
  • Most general method: works even when

Cramer's Rule

Cramer's Rule solves each variable as a ratio of determinants — the numerator replaces the variable's column in with the constants vector .

Key Points

  • where has column replaced by
  • Requires (non-singular system)
  • For a 3×3 system, requires computing 4 determinants
  • Replace a column, not a row, when forming
Formula

Homogeneous Systems

A homogeneous system always has the trivial solution . Non-trivial solutions exist if and only if .

Key Points

  • Trivial solution always satisfies
  • : infinitely many solutions parameterised by free variables
  • : only the trivial solution (inverse gives )
  • To find non-trivial solutions: set one variable as parameter , solve remaining from any two equations, verify with the third
Formula

Formulas

2×2 Determinant

Cross-multiply diagonals and subtract.

Cofactor Formula

Sign of a cofactor follows the checkerboard pattern.

Matrix Inverse

Inverse via adjoint scaled by reciprocal of determinant.

Scalar Determinant

Scaling an $n \times n$ matrix raises the scalar to the $n$-th power.

Product Determinant

Determinant of a product equals the product of determinants.

Transpose Product Rule

Transpose of a product reverses the order of factors.

Cramer's Rule

Each variable is the ratio of a modified determinant to the original.

Matrix Inverse Solution

Direct solution for non-singular linear systems.