Matrices
Rectangular arrays of numbers that encode systems of equations, transformations, and data — the central objects of linear algebra.
2×3 matrix (2 rows, 3 columns)
[
123456
]A₂₃
Entry notation
[
a₁₁a₁₂a₁₃a₂₁a₂₂a₂₃
]aᵢⱼ = row i, col j
3×3 identity I
[
100010001
]AI = IA = A
Square matrix
rows = columns
Zero matrix
all entries = 0
Diagonal matrix
off-diag = 0
Definition
A matrix is a rectangular array of numbers arranged in rows and columns. An matrix has rows and columns.
The entry in row , column is written (or , or ).
Special matrices:
- Square matrix: (same number of rows and columns)
- Identity matrix : matrix with 1s on the diagonal, 0s elsewhere
- Zero matrix : all entries are 0
Reading matrix entries
This is a matrix. , , . Note the convention: row first, then column.
Try it
Write the identity matrix . What happens when you multiply any vector by ?
Solution
Multiplying — the identity matrix leaves every vector unchanged. It is the matrix analog of the number 1.
Related concepts
Algebra· Linear Algebra
Matrix OperationsAddition, subtraction, scalar multiplication, and the transpose — the elementary operations that form the arithmetic of matrices.Algebra· Linear Algebra
Matrix MultiplicationHow to multiply matrices — rows times columns — and why this operation encodes function composition and systems of linear maps.Algebra· Linear Algebra
DeterminantsA scalar associated with a square matrix measuring the signed volume scaling factor of the linear transformation it encodes.Algebra· Linear Algebra
Linear TransformationsFunctions between vector spaces that preserve addition and scaling — and why every such function is represented by a matrix.