Welcome, future engineer! Today, we are going to tackle a problem that looks intimidating at first glance but hides a beautiful, elegant secret.
We are given two matrices, A=[31−4−1] and B=[−29−134918], and we are asked to solve:
The moment you see A15, I want you to take a deep breath. Do not reach for your pen to multiply matrix A fifteen times; that is the trap. In the world of JEE Advanced, whenever you see a high power of a matrix, it is a signal to pause and look for a pattern.
The Pattern Hunt
Our first mission is to find the soul of matrix A. We start by calculating A2=A⋅A:
A2=[31−4−1][31−4−1]=[52−8−3]
Now, let us find A3=A2⋅A:
A3=[52−8−3][31−4−1]=[73−12−5]
Now, look at the sequence of matrices: A1=[31−4−1], A2=[52−8−3], and A3=[73−12−5].
Do you see it? The bottom-left element follows 1,2,3... which is simply n. The top-right element follows −4,−8,−12... which is −4n.
The top-left element follows 3,5,7... which is 2n+1. The bottom-right element follows −1,−3,−5... which is −2n+1.
We have cracked the code! The general form is:
The Final Assembly
With our master key An in hand, finding A15 is trivial. We substitute n=15:
A15=[2(15)+115−4(15)−2(15)+1]=[3115−60−29]
Now, we add matrix B to this result:
(A15+B)=[3115−60−29]+[−29−134918]=[22−11−11]
This result is stunningly symmetric. When we multiply this by the column vector [xy], we get the system:
This simplifies to 2x=11y, or x=211y.
Testing our options, we find that x=11 and y=2 satisfies this perfectly. You see? By looking for the pattern, we turned a nightmare calculation into a simple, logical flow. Keep this mindset, and you will conquer any problem the exam throws at you!