The Matrix of Mystery
Welcome, fellow traveler on the path to JEE mastery. Today, we are going to dismantle a problem that, at first glance, looks like a fortress of complexity.
We are presented with a 2×2 matrix, let's call it A, where the elements are summations of binomial coefficients. The problem states that the determinant of this matrix is zero, and from that, we must extract the value of n and compute a final sum.
Decoding the Elements
Our first phase is to decode the matrix. We have four elements, and we must treat each one as a mini-challenge.
The top-left element is
a11=∑k=0nk. This is the sum of the first
n natural numbers:
a11=2n(n+1)
Next, the bottom-left element is
a21=∑k=0nnCkk. Using the identity
k⋅nCk=n⋅n−1Ck−1, we pull the constant
n out of the summation to get the sum of all binomial coefficients for index
n−1:
a21=n⋅2n−1
Now, the top-right element is
a12=∑k=0nnCkk2. We rewrite
k2 as
k(k−1)+k to split the sum into two parts:
∑nCkk(k−1)+∑nCkk.
a12=n(n−1)2n−2+n2n−1=n(n+1)2n−2
Finally, the bottom-right element is
a22=∑k=0nnCk3k. By the Binomial Theorem
(1+x)n=∑k=0nnCkxk, setting
x=3 yields:
a22=(1+3)n=4n
The Determinant Dance
Now that we have our four elements, the matrix A is defined as:
A=[2n(n+1)n2n−1n(n+1)2n−24n]
We are given det(A)=0. Setting the product of the principal diagonal minus the product of the off-diagonal to zero:
(2n(n+1))(4n)−(n(n+1)2n−2)(n2n−1)=0
Simplifying the powers of 2, where 4n=22n and 2n−2⋅2n−1=22n−3, the equation becomes:
2n(n+1)22n−n2(n+1)22n−3=0
Factoring out n(n+1)22n−3 (which is non-zero for positive integers n), we obtain:
The Final Flourish
With n=4, we evaluate S=∑k=04k+14Ck. Using the identity k+1nCk=n+1n+1Ck+1, we substitute n=4:
As k ranges from 0 to 4, the index k+1 ranges from 1 to 5. The sum is 5C1+5C2+5C3+5C4+5C5. Since the sum of all binomial coefficients for n=5 is 25=32, and 5C0=1 is missing: