The Hidden Geometry of Matrices
Welcome, fellow traveler on the JEE journey! Today, we are going to peel back the layers of a matrix problem that might look intimidating at first glance but is actually a beautiful exercise in structural symmetry.
We are given a matrix
and the condition
AAT=9I.
This isn't just a random equation; it's a statement about the very nature of the matrix A. When we see AAT=9I, we should immediately think of orthogonality and scaling. It tells us that the rows of A are not just vectors; they are vectors that, when dotted with themselves, yield 9, and when dotted with each other, yield 0.
Phase 1
The Mirror Image
Before we can dance with the matrix, we need its partner: the transpose AT. The transpose is like a mirror image where we take the rows of A and turn them into columns.
The first row [1,2,2] becomes the first column. The second row [2,1,−2] becomes the second column. The third row, which holds our mysterious variables a and b, becomes the third column.
Phase 2
The Dot Product Insight
Many students make the mistake of trying to multiply the entire matrix. Don't fall into that trap! We only care about the third row of A.
The element in the third row, first column of the resulting matrix
AAT is the dot product of the third row of
A and the first column of
AT:
a(1)+2(2)+b(2)=a+4+2b
Since
9I has a
0 at this position, we have our first equation:
a+2b=−4
Similarly, the third row, second column of the product is the dot product of the third row of
A and the second column of
AT:
a(2)+2(1)+b(−2)=2a+2−2b
This must also be
0, giving us:
2a−2b=−2
Phase 3
The Algebraic Dance
Now, we have a system of two linear equations:
1) a+2b=−4
2) 2a−2b=−2
Let's simplify the second equation by dividing by 2, which gives a−b=−1. Now, look at how elegantly they align!
If we add the two equations, the
b terms vanish:
(a+2b)+(a−b)=−4+(−1)
2a+b=−5
Actually, let us subtract the simplified second equation from the first:
(a+2b)−(a−b)=−4−(−1)
3b=−3⇒b=−1
Substituting b=−1 back into a−b=−1, we get a−(−1)=−1, which means a+1=−1, so a=−2. We have found our pair: (a,b)=(−2,−1).
Phase 4
The Final Verification
In the high-stakes environment of the JEE, never leave without checking your work. Let's verify the third diagonal element, which is the dot product of the third row with itself:
a2+22+b2
Substituting
a=−2 and
b=−1:
(−2)2+22+(−1)2=4+4+1=9
It matches perfectly! The condition AAT=9I is satisfied. You have successfully navigated the matrix, solved the system, and verified the result.