Determinant Calculator
Calculate the determinant of 2×2 and 3×3 matrices. The determinant determines if a matrix is invertible, finds area/volume scaling factors, and solves systems via Cramer's rule.
Formula & Reference
| Variable | Symbol | Formula | Units |
|---|---|---|---|
| Determinant Calculator | — | det(A) = ad - bc (2×2) | scalar |
Step-by-Step Examples
[[3,8],[4,6]].
- det = 3×6 − 8×4 = 18 − 32 = −14
- Invertible: det ≠ 0
[[1,0],[0,1]].
- det = 1×1 − 0×0 = 1
- Identity always has det = 1
[[1,2,3],[4,5,6],[7,8,9]].
- det = 1(45−48) − 2(36−42) + 3(32−35)
- = 1(−3) − 2(−6) + 3(−3) = −3+12−9 = 0
- Singular: rows are linearly dependent
Real-World Applications
Common Mistakes to Avoid
Cofactor expansion: +a₁₁M₁₁ − a₁₂M₁₂ + a₁₃M₁₃. The middle cofactor is negative.
Each row swap multiplies the determinant by −1. Two swaps return to original sign.
Determinant is multiplicative. Very useful property, but det(A+B) ≠ det(A)+det(B).
Frequently Asked Questions
Related Math Calculators
Formula Explorer connections
Interpretation: This relationship represents vectors, linear systems or transformations using matrix structure and vector operations. Assumption: Matrix dimensions must be compatible. Inversion, decomposition and unique solutions require rank, conditioning or nonzero-determinant conditions.