Matrix Calculator
Perform matrix addition, multiplication & determinant calculations
×
Input Matrix A:
[1 2]
[3 4]
[3 4]
Result:
Calculation Steps:
Matrix Operations Guide
Matrix Addition:
C = A + B
Add corresponding elements. Matrices must have same dimensions.
Matrix Multiplication:
C = A × B
Number of columns in A must equal number of rows in B.
Determinant:
2×2 Matrix:
det = a*d - b*c
3×3 Matrix:
det = a(ei−fh) − b(di−fg) + c(dh−eg)
Transpose:
Rows become columns and columns become rows.