📐 Linear Algebra Lab — Matrix Multiplication

Interactive • Visual • Step-by-step

Matrix × Matrix Multiplication

Set sizes so that A (m×n) and B (n×p) are compatible. Hover or click a cell in C = A×B to see the row·column dot product that produced it.

3
4
3
idle

A's row i B's column j C(i,j)
A ∈ ℝ3×4
×
B ∈ ℝ4×3
C = A×B ∈ ℝ3×3
C[i,j] = Σk=1..n A[i,k] · B[k,j]