Matrix Calculator (2×2)

Add, subtract, or multiply two 2×2 matrices, and calculate the determinant of matrix A.

How 2×2 matrix multiplication works

Unlike addition and subtraction, matrix multiplication isn't done element-by-element. Each entry in the result is a sum of products: the entry in row i, column j of the result comes from multiplying row i of matrix A by column j of matrix B, element by element, and summing.

This also means matrix multiplication generally isn't commutative — A × B usually doesn't equal B × A, unlike regular number multiplication, which is an important distinction when working with matrices in linear algebra.

What the determinant tells you

The determinant of a 2×2 matrix reveals whether the matrix can be inverted — a determinant of zero means the matrix has no inverse (it's called 'singular'), which has practical implications when solving systems of linear equations.

Geometrically, the absolute value of the determinant represents how much the matrix scales area when used as a linear transformation — a determinant of 2 means the transformation doubles area, for example.

Frequently asked questions

Why isn't matrix multiplication done element by element?

Matrix multiplication follows a row-by-column rule rooted in linear algebra (representing composition of linear transformations), which is fundamentally different from simple element-wise multiplication.

What does it mean if the determinant is zero?

A zero determinant means the matrix is 'singular' — it cannot be inverted, and the corresponding system of linear equations doesn't have a unique solution.

Related calculators