Linear Algebra Learning Studio · Module 01

Matrix Fundamentals

Learn matrix notation, shapes, common structures, transpose, addition, scalar multiplication, trace, rank, and classification.

Offline browser lab Interactive mathematics Student practice environment
Module 01 · Foundations

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.

Use m×n notationIdentify rows and columnsAdd and scale matricesTranspose a matrixClassify matrix structure
01

Matrix anatomy

Interpret dimensions, indices, rows, columns, and common matrix types

m×n

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.

aᵢⱼ

Entry notation

The symbol aᵢⱼ names the entry in row i and column j. The row index always comes first.

[c₁ … cₙ]

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.

Worked example

Reading a 2×3 matrix

A =
2−14
035

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².

TypeDefining featureWhy it matters
SquareSame number of rows and columns.Determinants, eigenvalues, and ordinary inverses are defined for square matrices.
DiagonalEvery off-diagonal entry is zero.Scaling along coordinate axes; multiplication and powers are simple.
Identity IOnes on the diagonal and zeros elsewhere.Neutral element for multiplication: AI=IA=A.
TriangularZeros below or above the main diagonal.Determinant is the product of diagonal entries; systems are easy to solve by substitution.
SymmetricAᵀ=A.Real eigenvalues and an orthonormal eigenbasis.
Zero matrixEvery entry is zero.Neutral element for addition.
02

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.

(A+B)ᵢⱼ = aᵢⱼ+bᵢⱼ    |    (kA)ᵢⱼ = k aᵢⱼ

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.

03

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.

tr(A) = a₁₁ + a₂₂ + ··· + aₙₙ
04

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.

Runs locally
Matrix A
and
Matrix B
05

Structural reasoning

Use definitions to predict behavior before calculating

01

Check the shape

Shape determines whether addition, multiplication, determinant, inverse, and eigenvalue questions are meaningful.

02

Look for zero patterns

Diagonal and triangular structure can simplify determinants, products, systems, and powers.

03

Separate structure from entries

Properties such as symmetry or singularity concern relationships among entries, not merely their magnitudes.

06

Review questions

Check vocabulary, dimensions, and operation rules

Knowledge check

A matrix A has size 3×5. Which statement is correct?

Knowledge check

When is A+B defined?

Knowledge check

What is the size of Aᵀ when A is 4×2?

Knowledge check

Which condition defines a symmetric real matrix?

Knowledge check

For a diagonal matrix, which entries may be nonzero?