4

Someone came to me recently with this seemingly simple equation to solve:

$$8 \log(x) - x = 0$$

So far, everything I have tried has been a dead end. Is there a symbolic solution to this kind of equation? If so, how do I get there?

Joe
  • 4,757
  • 5
  • 35
  • 55

1 Answers1

1

$$ 8\log(x)=x\Rightarrow -x/8\ e^{-x/8}=-1/8 $$ Therefore, $$ -x/8=\mathrm{W}(-1/8)\Rightarrow x=-8\mathrm{W}(-1/8) $$ where $\mathrm{W}$ is the Lambert W function, the inverse to $x=we^w$.

Mathematica yields $1.1553708251000778334$, and $26.093485476611910215$ as the two real solutions: N[-8 LambertW[0, -1/8], 20] and N[-8 LambertW[-1, -1/8], 20].

For those lacking a CAS like Mathematica, I have outlined an algorithm to compute Lambert W.

robjohn
  • 345,667