Adjoint (Adjugate) Matrix
The adjugate adj(A) is the transpose of the cofactor matrix. Key formula: A⁻¹ = adj(A) / det(A). A·adj(A) = det(A)·I.
Why This Mathematical Concept Matters
Why: Adjoint gives a formula for A⁻¹ when det(A) ≠ 0. Used in Cramer's rule and theoretical derivations.
How: Compute cofactor matrix; transpose it. adj(A)[i,j] = Cⱼᵢ (note: Cⱼᵢ not Cᵢⱼ).
- ●adj(A) A = A adj(A) = det(A) I.
- ●adj(AB) = adj(B) adj(A).
- ●2×2: swap diagonal, negate off-diagonal.
Quick Examples — Click to Load
Matrix A (3×3)
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
Adjoint Element Distribution (Bar)
Sign Distribution (Doughnut)
Calculation Steps
⚠️For educational and informational purposes only. Verify with a qualified professional.
🧮 Fascinating Math Facts
adj(adj(A)) = det(A)^(n−2) A
det(adj(A)) = det(A)^(n−1)
Key Takeaways
- • Adjoint (adjugate) = transpose of cofactor matrix: adj(A) = (cof(A))ᵀ.
- • Cofactor Cij = (-1)i+j × det(Mij), Mij = minor (submatrix).
- • A⁻¹ = adj(A) / det(A) — inverse formula for non-singular A.
- • A · adj(A) = adj(A) · A = det(A) · I.
- • Singular matrices: adj still exists; A · adj(A) = 0 when det(A) = 0.
Did You Know?
How It Works
For each element (i,j): find minor Mij (determinant of submatrix with row i, col j removed), apply sign (-1)i+j, build cofactor matrix, then transpose to get adjugate.
adj(A) = (cof(A))ᵀ
A⁻¹ = adj(A) / det(A)
Expert Tips
2×2 Shortcut
[[a,b],[c,d]] → adj = [[d,-b],[-c,a]].
Sign Pattern
Checkerboard: + − + − ... from (1,1).
Singular Case
adj exists even when det=0; A·adj(A)=0.
Inverse Formula
A⁻¹ = adj(A)/det(A) for invertible A.
Comparison Table
| Feature | This Calculator | NumPy | Manual |
|---|---|---|---|
| Cofactor + Adjoint | ✅ | ❌ | ⚠️ |
| Bar & Doughnut charts | ✅ | ❌ | ❌ |
| 8 preset examples | ✅ | ❌ | ❌ |
| Step-by-step | ✅ | ❌ | ⚠️ |
FAQ
What is the adjoint matrix?
Transpose of the cofactor matrix. adj(A) = (cof(A))ᵀ.
How is it related to inverse?
A⁻¹ = adj(A) / det(A) for non-singular A.
Does adj exist for singular matrices?
Yes. A·adj(A)=0 when det(A)=0.
2×2 shortcut?
Swap diagonal elements, negate off-diagonal.
What is the cofactor?
C_ij = (-1)^(i+j) × det(minor_ij).
adj(AB) = ?
adj(B)·adj(A). Order reverses.
det(adj(A)) = ?
det(A)^(n-1) for n×n matrix.
When is adj symmetric?
When cofactor matrix is symmetric (e.g. symmetric A with special structure).
Stats
Sources
- • Gilbert Strang, Linear Algebra and Its Applications
- • Khan Academy: khanacademy.org
- • MIT 18.06: ocw.mit.edu
- • Wolfram MathWorld: mathworld.wolfram.com
- • Horn & Johnson, Matrix Analysis
- • 3Blue1Brown: 3blue1brown.com
Disclaimer: For educational purposes. Uses JavaScript floating-point. Verify critical calculations independently.