- Select the matrix size. Choose 2×2 or 3×3. All matrix entries default to an identity matrix. Click any cell and type a new value. Changes take effect instantly.
- Pick an operation. Add (A+B) and Subtract (A-B) combine corresponding entries. Multiply (A×B) performs standard matrix multiplication, which is not commutative: A×B rarely equals B×A. Transpose flips rows and columns. Determinant gives a single scalar. Inverse finds the matrix A⁻¹ such that A×A⁻¹ = I.
- Read the result. For matrix results, each cell shows the computed value rounded to 6 decimal places. For determinant, a single number is shown. If the inverse is requested for a singular matrix (det = 0), you will see an error message.
Example: multiply A = [[2,1],[5,3]] by B = [[3,-1],[-5,2]]. The result is the identity matrix [[1,0],[0,1]], confirming B = A⁻¹.