Tested tool guide
Tested browser tools
Checked August 16, 2026
What Matrix Calculator does, with a checked example
This calculator evaluates one matrix or a pair of matrices using the selected operation. It covers addition, matrix multiplication, determinant, inverse, transpose, and eigenvalues. Matrix dimensions determine which operations are defined: addition needs matching shapes, while multiplication needs matching inner dimensions. The common surprise is that matrix multiplication is row-by-column, not cell-by-cell. Reversing the operands can change the result, change its dimensions, or make the product undefined.
Worked example
A concrete input and expected output from the current implementation.
Input
Operation: A x B
A = [[1, 2], [3, 4]]
B = [[2, 0], [1, 2]]
->
Expected output
[[4, 4], [10, 8]]
The first entry is 1 x 2 + 2 x 1 = 4. The remaining row-column products are 1 x 0 + 2 x 2 = 4, 3 x 2 + 4 x 1 = 10, and 3 x 0 + 4 x 2 = 8.