What is Matrix Calculator?
Evaluates linear algebra matrix operations including 2x2 determinants, matrix transposes, and matrix inverses.
How to Use This Calculator
- Enter matrix cell values for matrix A.
- Review computed determinant, trace, and inverted matrix coefficients.
The Mathematical Formula & Variables
det(A) = a*d - b*c; A^-1 = (1/det) * [[d, -b], [-c, a]]
Step-by-Step Worked Example
Scenario: Matrix A = [[1, 2], [3, 4]].
- det(A) = (1 * 4) - (2 * 3) = 4 - 6 = -2.
- Inverse = (1/-2) * [[4, -2], [-3, 1]] = [[-2, 1], [1.5, -0.5]].
Result: Determinant = -2
Frequently Asked Questions
What does a determinant of zero mean?
If det(A) = 0, the matrix is singular (non-invertible) and its columns are linearly dependent.