Loading...
Loading...
Multiply, add, subtract, transpose matrices and calculate determinants with step-by-step solutions.
Enter matrices and click Calculate.
Quick Reference:
A×B ≠ B×A in general. The dimensions must be compatible (cols of A = rows of B), and even when both orders work, the results usually differ.
Naive multiplication is O(n³). Strassen's algorithm is O(n^2.807). Modern GPUs parallelize this efficiently for deep learning.
Only when cols(A) = rows(B). An m×n matrix times an n×p matrix gives an m×p result.