ALGEBRALinear AlgebraMathematics Calculator
adj

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.

Concept Fundamentals
adj(A)=(cof(A))ᵀ
Definition
adj(A)/det(A)
A⁻¹
A·adj(A)=det(A)·I
Property
[[d,-b],[-c,a]]
2×2
Compute AdjointTranspose of cofactor matrix

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)

adjoint_matrix.sh
CALCULATED
$ adjoint --size="3×3"
Size
3×3
Adjoint
computed
Original A (3×3)
000
000
000
Cofactor cof(A)
000
000
000
Adjoint adj(A) = (cof)ᵀ
000
000
000
Share:
Adjoint Matrix
3×3 adj(A)
[0, 0, 0] | [0, 0, 0] | [0, 0, 0]
numbervibe.com/calculators/mathematics/linear-algebra/adjoint-matrix-calculator

Adjoint Element Distribution (Bar)

Sign Distribution (Doughnut)

Calculation Steps

SETUP
Original A[0, 0, 0] [0, 0, 0] [0, 0, 0]
SETUP
Size3×3
FORMULA
Formulaadj(A) = (cof(A))ᵀ
INTERMEDIATE
Cofactor matrix[0, 0, 0] [0, 0, 0] [0, 0, 0]
RESULT
Transpose cof → adjSwap rows↔cols
RESULT
Adjoint adj(A)[0, 0, 0] [0, 0, 0] [0, 0, 0]
NOTE
RelationA⁻¹ = adj(A)/det(A), det=0

⚠️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?

📐2×2 shortcut: swap diagonal, negate off-diagonal.Source: Shortcut
🧮Cramer's rule uses adjoint for solving Ax = b.Source: Cramer
⚛️Cayley-Hamilton: adj appears in characteristic polynomial.Source: Theory
📊det(adj(A)) = det(A)n-1 for n×n matrix.Source: Property
🔢adj(AB) = adj(B) · adj(A) — order reverses.Source: Product
🎯For singular A with rank n-1, adj has rank 1.Source: Rank

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

FeatureThis CalculatorNumPyManual
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

adj=(cof)ᵀ
Definition
A⁻¹=adj/det
Inverse
O(n⁴)
Complexity
n² cofactors
Elements

Sources

Disclaimer: For educational purposes. Uses JavaScript floating-point. Verify critical calculations independently.

👈 START HERE
⬅️Jump in and explore the concept!
AI