Analyzing the Setup
Welcome, JEE aspirants! Today, we are going to dissect a problem that looks intimidating at first glance but reveals a beautiful, elegant structure once we peel back the layers.
We are dealing with a function defined as:
fn(x)=j=1∑ntan−1(1+(x+j)(x+j−1)1)
At first, this summation might seem like a nightmare to compute. But in the world of JEE Advanced, whenever you see a complex expression inside a summation, there is almost always a hidden pattern waiting to be discovered.
The Anatomy of the Term
Let us focus on the general term of our series,
Tj:
Tj=tan−1(1+(x+j)(x+j−1)1)
The denominator is the key. We have 1 plus the product of two terms: (x+j) and (x+j−1).
Now, consider the difference between these two factors:
(x+j)−(x+j−1)=1
This is not a coincidence; it is a deliberate design. We can rewrite the numerator, which is
1, as the difference of these two factors. So, our term becomes:
Tj=tan−1(1+(x+j)(x+j−1)(x+j)−(x+j−1))
The Identity of Elegance
This structure is a perfect match for the inverse trigonometric identity:
tan−1(1+ABA−B)=tan−1A−tan−1B
By identifying
A=x+j and
B=x+j−1, we can transform our complex term into a simple difference:
Tj=tan−1(x+j)−tan−1(x+j−1)
This is the "Aha!" moment. We have turned a product-based fraction into a simple subtraction.
The Telescoping Magic
Now, let us expand the summation fn(x)=∑j=1n(tan−1(x+j)−tan−1(x+j−1)). When we write out the terms, we get:
For j=1: tan−1(x+1)−tan−1(x)
For j=2: tan−1(x+2)−tan−1(x+1)
...
For j=n: tan−1(x+n)−tan−1(x+n−1)
Notice the beautiful chain reaction: the positive part of the first term cancels the negative part of the second, the positive part of the second cancels the negative part of the third, and this continues until only the very last positive term and the very first negative term remain.
Thus, the simplified function is:
fn(x)=tan−1(x+n)−tan−1(x)
The Domain Trap
Before we rush to evaluate the options, we must pause. Options A and B ask us to calculate values at x=0.
However, the problem defines the domain as x∈(0,∞). Since x=0 is not in the domain, any expression involving fj(0) is mathematically invalid. Do not fall into the trap of blindly substituting values!
The Limit at Infinity
Finally, for Options C and D, we need the limit as
x→∞. We have:
x→∞limfn(x)=x→∞lim(tan−1(x+n)−tan−1(x))
As
x grows without bound, both
tan−1(x+n) and
tan−1(x) approach
2π. Therefore, the limit is:
2π−2π=0
Now, checking the options: Option C claims the limit of tan(fn(x)) is n1, but tan(0)=0, so this is false.
Option D claims the limit of sec2(fn(x)) is 1, and since sec2(0)=1, this is perfectly true. Through careful observation and the power of telescoping, we have arrived at the correct conclusion.