Orthogonal Matrices & Gram-Schmidt | Linear Algebra

Added:

Orthonormal Definition
Orthogonal Matrices
Hadamard Example
Projection Simplified
Gram-Schmidt Start
GS Algorithm Formula
GS Numerical Run
A Equals QR

Orthonormal Definition

0:06
Playing Section
  • 1

    Defines orthonormal vectors as unit vectors that are mutually orthogonal.

  • 2

    Introduces matrix Q containing orthonormal columns as its basis.

  • 3

    Key property: Q transpose times Q equals the identity matrix.

Vector dot products, inner product spaces, and the geometric concept of orthogonality (perpendicularity).
Linear independence, vector spans, and the definition of a basis for a vector space.
Vector projection, specifically how to project one vector onto another or onto a subspace.
Basic matrix algebra, including matrix multiplication, transposes, and the identity matrix.
QR Decomposition, which factorizes a matrix into an orthogonal matrix Q and an upper triangular matrix R.
The Least Squares Method for solving overdetermined systems of equations efficiently using orthogonal bases.
Orthogonal diagonalization, symmetric matrices, and the Spectral Theorem.
Singular Value Decomposition (SVD) and its application in dimensionality reduction (such as PCA).
280.2K views3.8Klikes49:09@mitocwOriginal Release: 2019-09-24

An orthogonal matrix has orthonormal columns where Q^TQ = I, making calculations like projections and least squares solutions dramatically simpler (e.g., projection matrix becomes QQ^T and normal equations reduce to x̂ = Q^TB); the Gram-Schmidt process transforms any set of independent vectors into an orthonormal basis by iteratively subtracting projections onto previously constructed orthogonal vectors, with the relationship A = QR connecting the original matrix A to the orthonormal matrix Q via an upper triangular matrix R.