How this instrument works
A matrix's rank measures how many independent directions its rows (or columns) actually span. For a 2×2 matrix, only three outcomes are possible: full span (a value of 2), when the determinant is nonzero and the two rows point in genuinely different directions, spanning the entire plane; a value of 1, when the determinant is exactly zero but the matrix isn't entirely empty, meaning both rows collapse onto a single shared direction; and a value of 0, reserved for the all-zero matrix alone, which spans nothing at all.
Checking this figure this way sidesteps a more general row-reduction process (typically needed for larger matrices) entirely — for a 2×2 matrix specifically, the determinant's sign (zero or nonzero) combined with a simple all-zero check is enough to pin the answer down exactly, no elimination steps required.
This figure connects directly to whether a matrix is invertible: only a full-span (value 2, for a 2×2 matrix) matrix has an inverse at all. A matrix scoring lower has effectively lost information — some direction in the plane gets squashed down to nothing under its transformation, and that squashing can never be undone.
- Enter the matrix's four entries into the a, b, c, and d fields, reading left to right, top to bottom.
- Read Rank: the sheet checks the determinant first, then checks for the all-zero case if needed.
- A result of 2 means the matrix is invertible; anything lower means it isn't.
Worked example — [[2,1],[3,4]]
The matrix [[2,1],[3,4]] has a determinant of 2×4−1×3=5, nonzero, so its rank is the maximum possible, 2 — its two rows point in genuinely different directions, together spanning the full plane, and the matrix is invertible.
The zero matrix [[0,0],[0,0]] has rank exactly 0 — nothing to span at all. The matrix [[2,4],[1,2]] has a zero determinant (its rows are proportional, row 2 exactly half of row 1) but isn't the zero matrix, so its rank is 1 — both rows collapse onto a single shared direction instead of spanning the full plane.
Questions
What does a matrix's rank measure?
How many independent directions its rows (or columns) actually span. A 2×2 matrix's result is always 0, 1, or 2 — the number of genuinely distinct directions among its two rows.
How do you find the rank of a 2×2 matrix?
Check the determinant first: a nonzero value means a full span of 2. If the determinant is zero, check whether every entry is zero — if so, the answer is 0; if not, it's 1.
What does a value of 1 mean geometrically?
The matrix's two rows point in the same (or exactly opposite) direction, collapsing what could have been a full 2D span down to just a single line — some information about the original space has been lost.
How is this figure related to invertibility?
Only a full-span matrix (a value of 2, for 2×2) is invertible. Any matrix scoring lower has squashed some direction down to nothing, a transformation that can never be reversed.
Why is this page limited to 2×2 matrices?
Because a 2×2 matrix's result reduces to a simple determinant-and-zero check with only three possible outcomes. Larger matrices need row reduction (Gaussian elimination) to determine the answer properly, handled by other dedicated linear-algebra tools.