No recently used tools
Loading categories...
Multiply two matrices A×B with step-by-step visualization. Checks dimension compatibility (columns of A = rows of B). 100% client-side—no data sent to servers. Supports rectangular matrices up to 10×10.
This matrix multiplication calculator computes C = A×B using the standard dot product formula. All computations run client-side in your browser—no matrices are sent to any server. Supports compatible dimensions (columns of A = rows of B) up to 10×10 with step-by-step solutions.
A×B is defined when columns(A) = rows(B). If A is m×n and B is n×p, the product C is m×p. Each cij is the dot product of row i of A with column j of B.
No. Matrix multiplication is generally not commutative: A×B ≠ B×A. It is associative and distributive, and obeys (AB)^T = B^T A^T.
This tool supports rectangular and square matrices with dimensions up to 10×10, showing step-by-step computations.
For A×B, the number of columns in A must equal the number of rows in B. If A is m×n and B is n×p, the result is m×p. Unlike addition, the matrices do not need the same dimensions.