1

It's obvious that $x=0$ is one of the roots. According to the graphs of $e^x$ and $kx + 1$, there's another root $x_1 > 0$ when $k > 1$. Is there a way to represent it numerically.

2 Answers2

2

If $t = -x - 1/k$, we have $$t e^t = (-x - 1/k) e^{-x} e^{-1/k} = - e^{-1/k}/k $$ The solutions of this are $t = W(-e^{-1/k}/k)$, i.e. $$x = - W(-e^{-1/k}/k) - 1/k$$ where $W$ is one of the branches of the Lambert W function. If $k > 1$, $-e^{-1/k}/k \in (-1/e,0)$, and there are two real branches: the $0$ branch (which gives you $x=0$), and the $-1$ branch, which gives you the solution you want.

Robert Israel
  • 448,999
1

$$e^x=kx+1$$ $$x=\log(1+kx)$$ so $$x=\log(1+k\log(1+k\log(1+k\log(1+....))))$$

E.H.E
  • 23,280
  • 2
    Assuming that converges, of course. And it might not converge to anything other than $0$. – Thomas Andrews Oct 14 '15 at 15:39
  • @ThomasAndrews I have checked it for many values of $x,k$ when they greater than 1, all the cases were converge – E.H.E Oct 14 '15 at 15:45
  • 1
    Sorry, but what is your starting value for $x_0$? "I have checked it for many values" is not what we call proof in mathematics, although it is likely true. – Thomas Andrews Oct 14 '15 at 15:46