Read this lesson as text

Matrix Transpose & Properties

Linear Algebra for Machine Learning · Axiom Academy

Properties and Worked Examples The transpose of a matrix A, denoted Aᵀ, is formed by converting rows to columns and columns to rows. If A is an m×n matrix, then Aᵀ is an n×m matrix where the (i,j) entry of Aᵀ is the (j,i) entry of A. Worked Example 1: Simple Transpose Solution: Swap rows and columns: Transposing twice returns the original matrix. Transpose of a sum equals the sum of transposes. Transpose of a product reverses the order of multiplication! Transpose of a scalar multiple is the scalar times the transpose. Special Matrices Related to Transpose A matrix A is symmetric if Aᵀ = A. This means it's identical to its own transpose! A matrix A is skew-symmetric if Aᵀ = -A. In solving systems of linear equations (normal equations) In computing covariance matrices in statistics In orthogonal transformations and QR decomposition In graph theory with adjacency matrices

This is the written version of the interactive lesson above. See the full Linear Algebra for Machine Learning course.