The Art of Taming the Logarithmic Base
Welcome, fellow traveler on the JEE journey. Today, we are going to tackle a problem that looks intimidating at first glance but reveals a beautiful, symmetrical structure once we peel back the layers.
We are looking at the equation:
2logxa+logaxa+3loga2xa=0
The first thing that should catch your eye is the variable x sitting in the base of every single term. In the world of logarithms, having a variable in the base is like trying to build a house on shifting sand. It is unstable, and it makes direct manipulation nearly impossible.
But look closer at the arguments—they are all just a. This is our golden ticket.
The Base-Change Strategy
To solve this, we need to get
x out of the basement. We invoke the powerful base-change property:
logbc=logcb1
By taking the reciprocal, we can flip the base and the argument. This transforms our equation into:
logax2+loga(ax)1+loga(a2x)3=0
Suddenly, the variable x is in the argument, and the base is a constant a. The problem has shifted from a chaotic mess to a structured, solvable form. This is the hallmark of a great JEE problem—it tests your ability to recognize when to change your perspective.
Expanding the Arguments
Now, we have denominators like loga(ax) and loga(a2x). We need to break these apart.
Using the product property, loga(mn)=logam+logan, we can expand these. loga(ax) becomes logaa+logax, which simplifies to 1+logax.
Similarly,
loga(a2x) becomes
logaa2+logax, which is
2+logax. Our equation now looks like this:
logax2+1+logax1+2+logax3=0
The Power of Substitution
Writing logax repeatedly is not just tedious; it is an invitation for a silly mistake. Let's introduce a dummy variable, t=logax.
The equation becomes a clean, rational algebraic equation:
t2+1+t1+2+t3=0
To clear the fractions, we multiply the entire equation by the lowest common multiple,
t(1+t)(2+t). This gives us:
2(1+t)(2+t)+t(2+t)+3t(1+t)=0
Expanding this carefully, we get
2(t2+3t+2)+(t2+2t)+(3t2+3t)=0. Combining like terms, we arrive at the quadratic:
6t2+11t+4=0
The Final Resolution
We solve this quadratic by splitting the middle term. We need two numbers that multiply to 6×4=24 and add to 11. Those numbers are 8 and 3.
So,
6t2+8t+3t+4=0, which factors into
(2t+1)(3t+4)=0. This gives us two values for
t:
t=−21andt=−34
Finally, we substitute back t=logax. This means x=at.
Thus, our solutions are x=a−1/2 and x=a−4/3. Take a moment to appreciate the elegance of this result. We started with a complex logarithmic equation and, through systematic simplification, reduced it to a simple quadratic.