Here is a pattern that appears on every Board paper and every JEE Mains question that involves exponents: the problem gives you something like 2^x = 32 or 3^{2x+1} = 81 or 4^x = 8^{x-1}, and it expects you to read off the answer. The pattern is so common that instructors barely comment on it — but students who haven't noticed it end up taking logarithms or guess-and-checking when the correct move takes one line.

This article is about seeing the pattern the instant it shows up.

The trigger

The trigger is simple:

If both sides of an exponential equation can be written with the same base, the exponents must be equal.

Formally: if a^P = a^Q and a > 0 with a \neq 1, then P = Q. The exponential function a^x is one-to-one, so the only way the outputs can match is if the inputs match.

That single fact converts an exponential equation into an algebraic equation — usually a linear one, occasionally a quadratic — which you can solve the normal way.

The classic case

2^x = 32.

Recognition step: you spot that 32 = 2^5. Both sides are now powers of the same base 2.

2^x = 2^5 \;\implies\; x = 5.

That is it. No logs, no calculator. The problem evaporated because you rewrote 32 as a power of 2.

The slightly harder case

3^{2x+1} = 81.

Recognition: 81 = 3^4. Rewrite:

3^{2x+1} = 3^4 \;\implies\; 2x+1 = 4 \;\implies\; x = \tfrac{3}{2}.

You have converted an exponential equation to a one-line linear equation. The exponent 2x+1 on the left is just a polynomial in x, and once you equate it to the exponent 4 on the right, the problem has nothing to do with exponents anymore.

The harder case where both bases need rewriting

4^x = 8^{x-1}.

Neither side is a power of the other directly, but both are powers of 2. Rewrite each:

4^x = (2^2)^x = 2^{2x}, \qquad 8^{x-1} = (2^3)^{x-1} = 2^{3(x-1)} = 2^{3x - 3}.

The equation becomes 2^{2x} = 2^{3x - 3}, so

2x = 3x - 3 \;\implies\; x = 3.

The key move was not the algebra — it was the recognition that 4 and 8 both live in the family of powers of 2. Once the common base appears, the rest is mechanical.

The decision tree

Here is how a trained eye looks at any exponential equation.

Decision tree for solving exponential equations by recognising common basesA flowchart starting from an exponential equation. First asks whether both sides can be written with the same base. If yes, equate exponents. If no, asks whether both bases are powers of a smaller common base. If yes, rewrite with that base and equate exponents. Otherwise, take logarithms. exponential equation a^P = b^Q are a and b the same, or both powers of a common base? (e.g. 4 and 8 are both powers of 2) yes rewrite both sides with common base then equate the exponents no take logs on both sides e.g. 2^x = 7 → x = log₂ 7 examples of common bases: 4, 8, 16 are all powers of 2; 9, 27, 81 are all powers of 3.
Recognition-first decision tree. The common-base path is fast and clean; the log path is the fallback when no common base exists. Trained students check the common-base question first, before reaching for logs.

The decision tree has exactly two branches. The green branch — common base exists — leads to a linear or quadratic equation solvable in one line. The red branch — no common base — leads to logarithms. The skill is in checking the green branch first.

Common base families to memorise

A student who has internalised these families solves most exponential questions in under a minute.

base family members
powers of 2 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024
powers of 3 3, 9, 27, 81, 243, 729
powers of 5 5, 25, 125, 625, 3125
powers of 10 10, 100, 1000, 10000, \ldots

When an exponential equation uses any of these numbers, there is almost certainly a common-base move waiting. The problem has been designed to yield to it.

Worked example from a JEE paper

Solve for x:

25^{2x+1} = 125^{x-1}.

Step 1 — recognise: 25 = 5^2 and 125 = 5^3. Common base is 5.

Step 2 — rewrite:

25^{2x+1} = (5^2)^{2x+1} = 5^{4x+2}, \qquad 125^{x-1} = (5^3)^{x-1} = 5^{3x-3}.

Step 3 — equate exponents (common base 5, both sides now powers of 5):

4x + 2 = 3x - 3.

Step 4 — solve:

x = -5.

Why this is safer than taking logs: logs give the same answer, but introduce a \log 5 that cancels cleanly only after two lines of work. The common-base move avoids ever writing \log 5 in the first place. Fewer steps = fewer sign and arithmetic mistakes.

The slightly trickier case: quadratic in the exponent

Sometimes the common-base move leaves a quadratic, not a linear, equation. 2^{x^2} = 16, for example. 16 = 2^4, so

2^{x^2} = 2^4 \implies x^2 = 4 \implies x = \pm 2.

The recognition step was the same. What changed is the algebra after equating exponents — you now have x^2 = 4 instead of x = 4. Watch for the sign: both x = 2 and x = -2 satisfy the original equation, and the mark scheme will expect both.

When the common-base move fails

Some problems have no common base and genuinely need logarithms. 2^x = 7 has no closed form — 7 is not a power of 2 — and you solve it by writing x = \log_2 7 \approx 2.807. Spotting this is its own skill; you look at the non-base side and ask "is this a power of 2, or of 3, or of 5, or of 10?" If the answer is no, switch to logs.

For problems like 2^x = 3^y or 5^x = 7 you are in the log world and there is no escape. The common-base shortcut exists only when the problem has been designed to yield to it — which, on Indian Board and JEE papers, is most of the time.

The reflex, in one line

When you see an exponential equation, your first thought should be: can I make both sides powers of the same base? If yes, you are almost done — the problem is a one-liner. If no, reach for logs. Spend five seconds checking the common-base family before starting any other attack.

Related: Exponents and Powers · Tile-View Proof of the Core Exponent Laws · Exponent Slider: 2^x Sweep · Grain of Rice on a Chessboard