Analyzing the Setup
Welcome, future engineer! Today, we are going to unravel a beautiful problem that tests not just your ability to calculate, but your ability to see the hidden structure within matrices.
We are given a matrix A=[5a3−b2] and a fascinating equation: A adj A=AAT. Our mission is to find the value of 5a+b.
At first glance, this might look like a standard matrix problem, but there is a trap here: if you try to calculate the adjoint of A directly, you are walking into a long, tedious path. Let us take a smarter route.
The Secret Key
In the world of JEE mathematics, there is a golden rule for adjoint matrices: A adj A=∣A∣I. This property is a lifesaver.
It tells us that A multiplied by its adjoint is simply the determinant of A multiplied by the identity matrix. For our two-by-two matrix, the determinant is:
∣A∣=(5a)(2)−(−b)(3)=10a+3b
Now, our left-hand side becomes a simple diagonal matrix:
The Right-Hand Side
Now, let us look at the right-hand side: AAT. We know AT=[5a−b32].
When we perform the multiplication AAT, we get:
[5a3−b2][5a−b32]=[25a2+b215a−2b15a−2b13]
The Final Connection
Now, we equate the two matrices. For them to be equal, every corresponding element must match.
Looking at the off-diagonal elements, we get 15a−2b=0, which means:
Looking at the bottom-right element, we get 10a+3b=13. Substituting b into this equation, we get:
This simplifies to 65a=26, or a=52. With a=52, we find b=215⋅52=3.
Finally, the expression 5a+b becomes 5(52)+3=2+3=5.
And there it is—a perfect, clean result. The final answer is 5.