The Art of Decomposition
Taming the Monster Limit
Welcome, future engineer. Today, we are going to dismantle a problem that looks like a nightmare but is actually a beautiful exercise in logical decomposition.
We are tasked with finding the limit:
L=x→0+lim[(sinx)1/x+(x1)sinx]
When you see a complex expression like this, the first instinct is often panic. But remember, in JEE Advanced, the most complex problems are often just several simple problems wearing a trench coat. Let's strip away the disguise.
Phase 1
Divide and Conquer
We have a sum of two distinct terms. The limit of a sum is the sum of the limits, provided those limits exist.
So, let us define:
L1=x→0+lim(sinx)1/x
L2=x→0+lim(x1)sinx
Our goal is simply to find L1 and L2 and add them together. By splitting the problem, we have already reduced our cognitive load by half.
Phase 2
The 0∞ Trap
Let's look at L1=limx→0+(sinx)1/x. As x approaches zero from the positive side, sinx approaches zero. Simultaneously, the exponent 1/x approaches infinity.
We are looking at the form 0∞. Now, pause. Is this indeterminate? No.
Think about it physically. You are taking a tiny fraction—say, 0.0001—and multiplying it by itself an infinite number of times. It doesn't fight back; it simply vanishes into zero. Thus, L1=0.
Phase 3
The Logarithmic Transformation
Now for the real challenge: L2=limx→0+(1/x)sinx. As x→0+, the base 1/x goes to infinity, and the exponent sinx goes to zero.
This is the classic ∞0 indeterminate form. We need a tool to bring that exponent down to earth. We use the identity ab=eblna.
Applying this, we get:
L2=x→0+limesinxln(1/x)
Because the exponential function is continuous, we can move the limit inside the exponent:
L2=elimx→0+sinxln(1/x)
Phase 4
The L'Hôpital Dance
Let's focus on the exponent limit, k=limx→0+sinxln(1/x). Using the property ln(1/x)=−lnx, we get k=−limx→0+sinxlnx.
This is a
0×∞ form. To use L'Hôpital's Rule, we need a fraction. Let's rewrite it as:
k=−x→0+limcscxlnx
Now we have the
∞/∞ form. Differentiating the numerator gives
1/x, and the denominator gives
−cscxcotx. The negative signs cancel, and we are left with:
k=x→0+limcscxcotx1/x
Phase 5
The Grand Finale
Let's simplify this expression. Converting to sines and cosines, we get:
(sinx1)⋅(sinxcosx)1/x=xcosxsin2x
We can split this into:
(xsinx)⋅(cosxsinx)
As x→0, the first part is a standard limit equal to 1, and the second part is tanx, which approaches 0. So, k=1⋅0=0.
Finally, substituting back into L2=ek, we get L2=e0=1. Adding our results, L=0+1=1. We have tamed the monster!