Linear Algebra Learning Studio · Module 04

Determinants and Inverses

Learn determinant computation and geometry, cofactor expansion, invertibility, singularity, and matrix inverses.

Offline browser lab Interactive mathematics Student practice environment
Module 04 · Invertibility

Measure signed volume scaling and detect reversible transformations

The determinant condenses a square matrix into one scalar with deep geometric and algebraic meaning. Its magnitude is the factor by which the transformation scales area or volume; its sign records orientation; and a zero determinant signals collapse, dependence, and noninvertibility.

Compute 2×2 and 3×3 determinantsInterpret signed scalingUse determinant propertiesFind inversesRecognize singularity
01

Geometric meaning

Connect a scalar formula to transformed area and volume

|det A|

Magnitude

The absolute value is the area-scaling factor in R² and the volume-scaling factor in R³.

sign

Orientation

A negative determinant reverses orientation, as a reflection does. A positive determinant preserves orientation.

0

Collapse

det(A)=0 means a square or cube collapses into a lower-dimensional object. At least one direction is lost.

For A = [[a,b],[c,d]],   det(A)=ad−bc
02

Cofactors and row operations

Choose a computation method that uses structure

A 3×3 determinant may be expanded along any row or column. Cofactor signs follow a checkerboard pattern beginning with plus in the upper-left corner. Expansion along a row or column with many zeros minimizes arithmetic.

det(A)=Σⱼ aᵢⱼ Cᵢⱼ,   where Cᵢⱼ=(−1)ⁱ⁺ʲ det(Mᵢⱼ)
Row operationEffect on determinant
Swap two rowsMultiply determinant by −1.
Multiply one row by cMultiply determinant by c.
Add a multiple of one row to anotherNo change.
03

The invertible matrix theorem

See many equivalent descriptions of the same structural fact

For an n×n matrix A, these statements are equivalent

det(A)≠0; A is invertible; rank(A)=n; every column is a pivot column; the columns are linearly independent; the columns span Rⁿ; N(A)={0}; Ax=b has a unique solution for every b; and zero is not an eigenvalue.

These are not separate coincidences. Each expresses that the transformation preserves all n independent directions and can therefore be reversed.

04

Interactive determinant and inverse laboratory

Compute, verify, and visualize transformed area

Determinant, rank, and inverse calculator

Use a 2×2 matrix for the geometric unit-square view or a 3×3 matrix for cofactor expansion.

2×2 / 3×3

Select Compute to analyze the matrix.

Dashed blue: original unit square. Teal: image under A. The parallelogram area equals |det(A)|.
05

Inverse computation and responsible use

Understand both the formula and the numerical caution

2×2 inverse
A⁻¹ = 1/(ad−bc) [[d,−b],[−c,a]], provided ad−bc≠0

For larger matrices, augment A with I and row-reduce [A|I] to [I|A⁻¹], or use a factorization. In numerical computation, explicitly forming an inverse is often less stable and less efficient than solving a system directly.

A tiny nonzero determinant is not a complete conditioning test

Determinant depends on scale and dimension. Numerical sensitivity is better assessed with singular values or a condition number. An invertible matrix can still be nearly singular.

06

Review questions

Connect determinant calculations to geometry and invertibility

Knowledge check

For A=[[3,2],[1,4]], what is det(A)?

Knowledge check

What happens to det(A) when two rows are swapped?

Knowledge check

If det(A)=0 for a square matrix, which statement is true?

Knowledge check

What does |det(A)| represent geometrically in R²?

Knowledge check

Which determinant identity is correct?