This document provides an example of calculating the singular value decomposition (SVD) of a 3x3 matrix A. It finds the matrices U, Σ, and V such that A = UΣV^T. It first calculates the eigenvalues and eigenvectors of A^TA to construct Σ and V. It then uses A and the eigenvectors to calculate the columns of U. The final SVD of A is presented.