How To Find Adjoint Of 3x3 Matrix
Finding the Adjoint of a 3×3 Matrix (Without Losing Your Mind)
Most students hit a wall the first time they're asked to find the adjoint of a 3×3 matrix. That's why not because it's hard, but because the textbook makes it sound like wizardry. "Take the cofactor matrix and transpose it" — sure, that sounds* simple until you're sitting in an exam staring at nine numbers and your brain goes blank.
Here's the thing — once you see the pattern, it's just repetition with a little bit of care. Let me walk you through it the way I wish someone had walked me through it back when I was learning linear algebra myself.
What the Adjoint Actually Is
Let's skip the textbook definition for a second. That's why in plain language, the adjoint of a matrix is what you get when you take all those little cofactors you've already calculated (more on that in a moment), arrange them into a new matrix, and then flip that matrix over its main diagonal. That last step — flipping over the diagonal — is the transpose.
Two operations stacked on top of each other:
- Build a cofactor matrix from the original.
- Transpose that cofactor matrix.
That's the whole game. The tricky part is step one, because each cofactor involves a tiny bit of determinant work. But with a 3×3, that work isn't bad — it's a 2×2 determinant each time, and those you can do in your head once you've done a few.
The notation is usually adj(A) or A* (depending on your textbook, country, and phase of the moon). They mean the same thing.
A Quick Note on Why It Matters
The adjoint isn't just busywork. It plays a starring role in finding the inverse of a matrix. The formula is:
inverse of A = (1 / det(A)) × adj(A)
So if you ever need to invert a 3×3 matrix by hand, you have to find the adjoint first. It's also useful in solving systems of linear equations using Cramer's rule, and it pops up in some physics and engineering applications where matrices describe rotations, stress, or transformations. Knowing how to build it is one of those foundational skills that pays off quietly for years.
Cofactors: The Building Blocks You Need First
Before you can build the adjoint, you need cofactors. So let's talk about those.
For each element in the matrix, you find its minor — the determinant of the 2×2 matrix that remains when you delete that element's row and column. Then you multiply that minor by either +1 or -1, depending on the element's position. The sign pattern is the classic checkerboard:
+ − +
− + −
+ − +
The sign you multiply by comes from the formula (-1)^(i+j), where i is the row and j is the column. But honestly, after a while you just memorize the checkerboard. It sticks.
So a cofactor Cᵢⱼ is just the signed minor at position (i,j).
Example: A 3×3 in the Wild
Let's say you've got this matrix:
A = | 2 1 3 |
| 0 4 5 |
| 1 2 6 |
Finding the cofactor for position (1,1): delete row 1 and column 1, and you're left with the 2×2 matrix |4 5| / |2 6|. On top of that, its determinant is (4×6) - (5×2) = 24 - 10 = 14. The sign at (1,1) is positive, so C₁₁ = 14.
Cofactor at (1,2): delete row 1, column 2. Remaining: |0 5| / |1 6|. Determinant: (0×6) - (5×1) = -5. Sign at (1,2) is negative, so C₁₂ = -(-5) = 5.
You can already see the rhythm. Repeat this for all nine positions. Let me do the rest quickly so you can see the full cofactor matrix:
- C₁₃: minor = (0×2) - (4×1) = -4, sign positive → -4
- C₂₁: minor = (1×6) - (3×2) = 0, sign negative → 0
- C₂₂: minor = (2×6) - (3×1) = 9, sign positive → 9
- C₂₃: minor = (2×2) - (1×1) = 3, sign negative → -3
- C₃₁: minor = (1×5) - (3×4) = -7, sign positive → -7
- C₃₂: minor = (2×5) - (3×0) = 10, sign negative → -10
- C₃₃: minor = (2×4) - (1×0) = 8, sign positive → 8
So the cofactor matrix is:
If you found this helpful, you might also enjoy where do you find dense irregular connective tissue or which is the major product of the following reaction.
| 14 5 -4 |
| 0 9 -3 |
| -7 -10 8 |
Now the Easy Part — Transposing It
Take that cofactor matrix and reflect it across the main diagonal (the one going from top-left to bottom-right). Row 1 becomes column 1, row 2 becomes column 2, and so on. Basically, swap the off-diagonal entries.
For our example, the adjoint is:
| 14 0 -7 |
| 5 9 -10 |
| -4 -3 8 |
Done. That's adj(A).
You can sanity-check it by computing A × adj(A) and confirming you get a scalar multiple of the identity matrix. But specifically, A × adj(A) should equal det(A) × I. If it doesn't, you made an arithmetic slip somewhere — go back and check signs and minors.
Common Mistakes That Trip People Up
This is the section I wish more tutorials had. Here's where things actually go wrong in practice.
Mixing up rows and columns when deleting for the minor. If you're finding C₂₃ (row 2, column 3), you delete row 2 and column 3, not row 3 and column 2. It's easy to flip these when you're rushing. Slow down on the first few until the pattern is automatic.
Forgetting the sign. The checkerboard is easy to remember, but it's also easy to forget after* you've calculated the minor. A classic trap: you get the minor right, then forget to flip the sign on the negative positions. Always double-check the sign before writing down the cofactor.
Confusing the adjoint with the inverse. They're related, not the same. The inverse is (1/det(A)) × adj(A). If you skip the division by the determinant, you don't have the inverse — you have the adjoint.
Skipping the transpose. A shocking number of people calculate the cofactor matrix and call it the adjoint. It's not. The adjoint is the transpose* of the cofactor matrix. These are the same only for symmetric matrices, which is a special case, not the rule.
Losing track of negative signs during the transpose. Transposing doesn't change signs, only positions. If you carry over a -4 and put it in the wrong spot, your adjoint is wrong. Highlight the negatives if you have to.
Practical Tips That Actually Help
A few things that made this click for me, and that I've seen work for students over the years:
Write out the full cofactor matrix in a 3×3 grid before* you calculate anything. Now, fill in the positions with the checkerboard signs first. That way you know exactly what sign each cofactor should have before you do the arithmetic, and you can't forget.
Use a different color or underline for the row and column you're deleting. It sounds silly. Here's the thing — it works. Your eye will want to grab the wrong numbers, especially on dense matrices with a lot of similar values.
When you're learning, do every single cofactor by hand. Don't jump to shortcuts. The shortcut for symmetric matrices is great, but only after* you've done enough raw cofactors to see why it works.
Check your work using the identity A × adj(A) = det(A) × I. You don't have to do a full inverse — just multiply A by your
adj(A) and see if you get a scalar times I. On top of that, if the off-diagonal entries are all zero and the diagonals match, you're good. If not, something's off, and now you can localize the error instead of hunting everywhere.
Work examples where the determinant is zero early on. A singular matrix gives an adjoint that's not the inverse, and computing it anyway is a great way to cement the distinction. Plus, you can verify that A × adj(A) still equals 0 × I = the zero matrix, which is a satisfying consistency check.
Finally, learn to recognize patterns. Which means if two rows are proportional, the determinant is zero, so the adjoint won't be an inverse. Even so, if a matrix is orthogonal, its adjoint equals its inverse, and the determinant is ±1. These shortcuts save time on exams and on later coursework in linear algebra.
Wrapping Up
The adjoint of a matrix looks intimidating at first because it asks you to do a lot of small things correctly in sequence — minors, signs, assembly, transposition. But each individual step is straightforward, and the whole process rewards careful, methodical work far more than cleverness. Build the cofactor matrix slowly, transcribe it carefully, transpose deliberately, and verify.
Once you've done a few by hand, the pattern becomes second nature, and you'll find yourself reading properties off matrices that used to look like walls of numbers. That's the real payoff — not just being able to compute the adjoint, but being able to see structure in matrices that other people miss.
Latest Posts
Newly Published
-
What Does Modulus Of Elasticity Mean
Aug 28, 2026
-
How To Find Where A Geometric Series Converges
Aug 28, 2026
-
What Is The Difference Between Nucleoside And Nucleotide
Aug 28, 2026
-
Use Substitution To Find The Indefinite Integral
Aug 28, 2026
-
Write 40 As A Product Of Prime Factors
Aug 28, 2026
Related Posts
Explore a Little More
-
How To Find Linear And Angular Speed
Aug 01, 2026
-
How To Find Average Velocity From Position Time Graph
Aug 01, 2026
-
How To Find The Exact Value Of Trig Functions
Aug 02, 2026
-
How To Find The Roots Of An Equation
Aug 03, 2026
-
How To Find Adjacent Of A Matrix
Aug 03, 2026