Read matrices fluently before manipulating them
A matrix is simultaneously a rectangular array of numbers, a compact representation of a system of equations, a collection of column vectors, and—once bases are selected—the coordinate representation of a linear transformation. The meaning depends on context, but the shape and entry rules never do.
Matrix anatomy
Interpret dimensions, indices, rows, columns, and common matrix types
Shape
An m×n matrix has m rows and n columns. It accepts n-component input vectors and produces m-component output vectors when used as a linear map.
Entry notation
The symbol aᵢⱼ names the entry in row i and column j. The row index always comes first.
Column view
A matrix can be read as an ordered list of column vectors. This view becomes essential for multiplication, span, column space, and transformations.
Reading a 2×3 matrix
| 2 | −1 | 4 |
| 0 | 3 | 5 |
A has two rows and three columns. The entry a₁₂ is −1. Its second column is (−1, 3)ᵀ. As a transformation, A maps R³ to R².
| Type | Defining feature | Why it matters |
|---|---|---|
| Square | Same number of rows and columns. | Determinants, eigenvalues, and ordinary inverses are defined for square matrices. |
| Diagonal | Every off-diagonal entry is zero. | Scaling along coordinate axes; multiplication and powers are simple. |
| Identity I | Ones on the diagonal and zeros elsewhere. | Neutral element for multiplication: AI=IA=A. |
| Triangular | Zeros below or above the main diagonal. | Determinant is the product of diagonal entries; systems are easy to solve by substitution. |
| Symmetric | Aᵀ=A. | Real eigenvalues and an orthonormal eigenbasis. |
| Zero matrix | Every entry is zero. | Neutral element for addition. |
Equality, addition, and scalar multiplication
Apply entrywise operations only when the shapes permit them
Two matrices are equal exactly when they have the same shape and every corresponding entry is equal. Matrix addition and subtraction are also entrywise, so the matrices must have identical dimensions. Scalar multiplication multiplies every entry by the same number.
Shape is part of the object
A 1×3 row matrix and a 3×1 column matrix may contain the same three numbers, but they are not equal and do not behave the same way in multiplication.
Transpose and trace
Reorient a matrix and summarize its diagonal
Transpose
The transpose Aᵀ exchanges rows and columns: (Aᵀ)ᵢⱼ=aⱼᵢ. If A is m×n, then Aᵀ is n×m. Transpose reverses multiplication order: (AB)ᵀ=BᵀAᵀ.
Trace
For a square matrix, tr(A) is the sum of diagonal entries. Trace is linear and, for compatible matrices, tr(AB)=tr(BA). It also equals the sum of eigenvalues counted with algebraic multiplicity.
Interactive matrix workbench
Experiment with basic operations and inspect structural properties
Matrix fundamentals calculator
Enter integers, decimals, or fractions such as 3/4. Select 2×2 or 3×3 matrices.
Structural reasoning
Use definitions to predict behavior before calculating
Check the shape
Shape determines whether addition, multiplication, determinant, inverse, and eigenvalue questions are meaningful.
Look for zero patterns
Diagonal and triangular structure can simplify determinants, products, systems, and powers.
Separate structure from entries
Properties such as symmetry or singularity concern relationships among entries, not merely their magnitudes.
Review questions
Check vocabulary, dimensions, and operation rules