Solving Exponential Equations- Methods and Examples

What Is an Exponential Equation?

An exponential equation has a variable in the exponent. That's it. The base can be any number, but the defining feature is that x sits up top where exponents live.

Examples:

If you see a variable in the exponent, you're dealing with an exponential equation. Now let's solve them.

Method 1: Match the Bases

This is the easiest method when it works. Rewrite both sides so they have the same base, then set the exponents equal.

Example

Solve: 2x = 8

8 is 23. Rewrite:

2x = 23

Now x = 3. Done.

Example

Solve: 53x-2 = 125

125 is 53. Rewrite:

53x-2 = 53

3x - 2 = 3

3x = 5

x = 5/3

This method works great when you can quickly identify the base. Not always possible, though. That's where logarithms come in.

Method 2: Use Logarithms

When bases won't match, take the log of both sides. Any base works—common log (log), natural log (ln), it doesn't matter.

Example

Solve: 3x = 20

Take log of both sides:

log(3x) = log(20)

Use the power rule: x · log(3) = log(20)

x = log(20) / log(3)

x ≈ 2.73

Example

Solve: ex = 10

Use ln since the base is e:

ln(ex) = ln(10)

x · ln(e) = ln(10)

x = ln(10)

x ≈ 2.303

Method 3: Take the Log of Both Sides Directly

For equations like ax = by where bases differ, take log of both sides immediately.

Example

Solve: 2x = 35

log(2x) = log(35)

x · log(2) = 5 · log(3)

x = 5 · log(3) / log(2)

x ≈ 7.92

Method 4: Substitution

When you have the same base raised to different expressions, substitution helps isolate things first.

Example

Solve: 4x - 5 · 2x + 4 = 0

Notice 4x = (22)x = 22x = (2x)2

Let u = 2x

Then: u2 - 5u + 4 = 0

Factor: (u - 1)(u - 4) = 0

u = 1 or u = 4

Back-substitute:

2x = 1 → x = 0

2x = 4 → x = 2

Solutions: x = 0, x = 2

Comparing the Methods

MethodBest WhenDifficulty
Match BasesBases are small, recognizable powersEasy
Log Both SidesOne variable exponent, bases won't matchMedium
Direct Log MethodDifferent bases on each sideMedium
SubstitutionPolynomial-like form with same baseHarder

How to Get Started: Step-by-Step

When you see an exponential equation, follow this decision path:

  1. Can you rewrite the non-variable side as a power of the base? → If yes, match bases.
  2. Is the variable in the exponent only? → Take log of both sides.
  3. Are there multiple terms with the same base? → Try substitution (factor into a quadratic).
  4. Still stuck? → Take log of both sides first, then isolate using algebra.

Common Mistakes to Avoid

Practice Problems

1. Solve: 7x = 343

Answer: x = 3 (343 = 73)

2. Solve: 42x+1 = 64

Answer: x = 1 (64 = 43, so 2x+1 = 3)

3. Solve: 2x = 50

Answer: x = log(50)/log(2) ≈ 5.64

4. Solve: 9x - 6 · 3x - 27 = 0

Answer: x = 3 (use u = 3x, get u2 - 6u - 27 = 0)

Bottom Line

Exponential equations aren't hard once you know your options. Match bases when it's easy. Use logs when it isn't. Substitute when things look quadratic. That's the whole game.