If a complicated expression appears more than once in an equation or an inequality, we can give it a name (a new variable), solve in the new variable, and then return to the original variable. It is the first of our unifying methods: many apparently different equations reduce, with a well-chosen substitution, to a trivial quadratic equation.

In brief — Typical cases

  • (x2)25x2+4=0(x^2)^2 - 5x^2 + 4 = 0: set t=x2t = x^2 (with t0t\ge 0), solve t25t+4=0t^2 - 5t + 4 = 0, find t=1t = 1 or t=4t = 4, return to xx: x=±1x = \pm 1 or x=±2x = \pm 2.
  • 4x32x+2=04^x - 3\cdot 2^x + 2 = 0: set t=2xt = 2^x (with t>0t>0), solve t23t+2=0t^2 - 3t + 2 = 0.
  • (log3x)23log3x+2=0(\log_3 x)^2 - 3\log_3 x + 2 = 0: set t=log3xt = \log_3 x, solve t23t+2=0t^2 - 3t + 2 = 0.
  • x(x2)=3\sqrt{x} \cdot (\sqrt{x} - 2) = 3: set t=xt = \sqrt{x} (with t0t\ge 0), solve t(t2)=3t(t-2)=3, that is t22t3=0t^2 - 2t - 3 = 0.

Caution — Constraints on the new variable

The substituted variable inherits positivity constraints (or of another kind) from the nature of the expression it represents. Do not forget them, otherwise you introduce spurious solutions.

The scheme of the method, in four steps, is always the same: start from the complicated equation in xx, substitute, solve in the new variable, return to xx discarding the values that violate the constraints.

The scheme of the substitution: from the complicated form in xx to the new variable tt, and back.

Topics: Unifying methods
Concepts: Existence conditions · Quadratic equation · Substitution
Skills: Reasoning by cases · Solving inequalities · Solving equations