Analyzing the Setup
When you see an expression like In=∫01ex(x−1)ndx, your first instinct might be panic. You might think about expanding the term or using complex substitutions.
However, in JEE Advanced, complexity is often a mask for a beautiful, underlying simplicity. We are looking for a positive integer n≤5 such that this integral equals 16−6e.
The Reduction Formula
We define our target as In. To solve this, we use the method of Integration by Parts, defined by the formula:
Let u=(x−1)n and dv=exdx. Differentiating u gives du=n(x−1)n−1dx, and integrating dv gives v=ex.
Substituting these into our formula, we obtain:
In=[(x−1)nex]01−∫01exn(x−1)n−1dx
Simplifying the Boundary Terms
Look at the boundary term! At x=1, (1−1)n=0. At x=0, we get −(0−1)ne0=−(−1)n=(−1)n+1.
This simplifies our expression significantly, leading to the recurrence relation:
Iterative Calculation
Now, we establish our foundation. For n=0:
With this base case, we iterate to find the value of n:
For
n=1:
I1=(−1)2−1(I0)=1−(e−1)=2−e
For
n=2:
I2=(−1)3−2(I1)=−1−2(2−e)=2e−5
For
n=3:
I3=(−1)4−3(I2)=1−3(2e−5)=1−6e+15=16−6e
Conclusion
We have arrived at the target value. The condition is satisfied when n=3.
This is the power of the reduction method—we did not brute force the integral; we built a mathematical ladder and climbed it to the solution.