Published on

Notes on Strang Lecture - 5

Permutation matrices and transposes

Permutation matrices

A permutation matrix PAPA executes row exchanges of AA.

For LU decomposition with row exchanges, we have:

PA=LUPA = LU

Key property: For any permutation matrix PP:

PTP=IP^T P = I

The matrix is orthogonal.

Matrix transpose

If A=[aij]A = [a_{ij}], then AT=[aji]A^T = [a_{ji}].

Symmetric matrices

A matrix AA is symmetric if A=ATA = A^T

Vector subspaces

Definition

A vector subspace is a subset of the vectors in a vector space, that is itself a vector space under the same operations.

Examples in R2\mathbb{R}^2 and R3\mathbb{R}^3

All possible subspaces of R2\mathbb{R}^2:

  1. The zero vector {0}\{\vec{0}\} (dimension 0)
  2. Any line through the origin (dimension 1)
  3. The entire space R2\mathbb{R}^2 itself (dimension 2)

All possible subspaces of R3\mathbb{R}^3:

  1. The zero vector {0}\{\vec{0}\} (dimension 0)
  2. Any line through the origin (dimension 1)
  3. Any plane through the origin (dimension 2)
  4. The entire space R3\mathbb{R}^3 itself (dimension 3)

Important note: A line or plane that does not pass through the origin is not a subspace, as it fails to contain the zero vector and is not closed under scalar multiplication.