Advanced matrix tool for determinants, inverses, and rank insights with steps. Choose size, paste values, and watch elimination steps unfold with pivot tracking. Validate singularity, condition estimates, and numerical stability warnings for accurate engineering calculations. Export matrices and steps as CSV or PDF files.
The determinant of an n×n matrix A can be defined by cofactor expansion or as the signed product of pivots during elimination. For 2×2:
det(A) = a₁₁a₂₂ − a₁₂a₂₁
The inverse exists only if det(A) ≠ 0. In general we compute A⁻¹ via Gauss–Jordan on the augmented matrix [A | I], performing row operations until the left side becomes I, yielding [I | A⁻¹]. For 2×2:
A⁻¹ = (1/det(A)) · [[a₂₂, −a₁₂], [−a₂₁, a₁₁]]
The implemented method uses partial pivoting for stability; the determinant equals the product of pivot elements with a sign correction for row swaps.
1/3; they are converted to decimals.| Name | n | Matrix (rows) | Determinant | Action |
|---|---|---|---|---|
| Example A | 2 | 1, 2 ; 3, 4 |
-2 |
|
| Example B | 3 | 2, 1, 0 ; -1, 3, 2 ; 4, 0, 1 |
13 |
|
| Example C (singular) | 3 | 1, 2, 3 ; 2, 4, 6 ; 0, 0, 0 |
0 |
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.