I came across this question on Facebook (as a puzzler): $\begin{align}\\ 2^x + x = 11\\ \end{align}$
I solved this by using the following:
Since $2^x$ is even, therefore $x$ must be odd. So $\exists k \in \Bbb{Z}$ such that $x = 2k + 1$.
So $2^x + x = 11 \implies 2^{2k + 1} + (2k + 1) = 11$
Then $2^{2k + 1} + 2k = 10$, $\implies$ $2^{2k} + k = 5$ Repeating the process, $\exists r \in \Bbb{Z}$ such that $k = 2r + 1$.
So $2^{2k} + k = 5$ $\implies$ $2^{2(2r + 1)} + (2r + 1) = 5$
Then $2^{4r + 2} + 2r + 1 = 5$
So $2^{4r + 2} + 2r = 4$,
Then $2^{4r + 1} + r = 2$ Now, this means r is even. so $r = 2m$
$\implies$ $2^{8m + 1} + 2m = 2$, $\implies$ $2^{8m} + m = 1$.
At this point, this is only valid only if $m = 0$.
$\therefore$ $r= 0$ and so $k = 1$ and finally, $x = 3$ I even did a graph on Excel, and that pretty much was the answer.
Then I thought about $3^x + x = 11$. (Answer is $x = 2$, though I had a bit of a problem figuring this one out.)
Now, I came up with the next item. $4^x + x = 11$.
At this point, I know it isn't going to have an integer solution since if $x = 1$, $4^x + x = 4 + 1 = 5 \not= 11$
Numerically, using python, I got the value to $1.614999 < x < 1.615999$. However, I was hoping to prove this.
So I came up with the following (but fell short).
$\begin{align} \\
4^x + x = 11 \\
\implies 2^{2x} + x = 11\\
\end{align}$
And if $x = 2$, $4^x + x = 16 + 2 = 18 \not= 11$
$\begin{align}\\ 2^{2x} + x = 11 \\ \implies 2^{2x} + x - 11 = 0 \end{align}$
My first thought was to try using substitution:
$\begin{align} let\ u = 2^x, so\ x = \frac{\ln{u}}{\ln{2}}\\ Then\ u^2 + \frac{\ln{u}}{\ln{2}} - 11 = 0\\ \end{align}$
But this is not a quadratic equation, so I can't use the quadratic formula.
So I tried using the 'find the a,b of $(a - b)^2 = a^2 - 2ab + b^2$
$\begin{align} let\ a^2=2^{2x},\ b^2 = x,\ -2ab = -11, \implies ab = \frac{11}{2}\\ Then\ b = \frac{11}{2a},\implies b^2 = \frac{11^2}{2^2a^2} \\ But\ b^2 = x, \\ \therefore, x = \frac{11^2}{2^2a^2}\\ and\ so\ x = \frac{11^2}{2^22^{2x}} \\ or\ x2^{2x} = \frac{11^2}{2^2} [1]\\ \end{align}$
At this point, things are losing sense; but for fun(and to see what happens), I came up with this mess [I feel that $x2^{2x} = \frac{11^2}{2^2}$ is suspiciously wrong]:
Since $2^{2x} + x - 11 = 0$ Multiply both sides by x, $\implies x2^{2x} + x^2 - 11x = 0$ But with [1], we get $\frac{11^2}{2^2} + x^2 - 11x = 0$
Using the quadratic equation,
I get $\frac{11 \pm \sqrt{(-11)^2 - 4\frac{11^2}{2^2}}}{2}$
Which comes to an answer ($\frac{11}{2}$) which makes no sense(naturally, since I know I screwed up earlier).
But I did lose track of setting up the $(a - b)^2 = a^2 - 2ab + b^2$.
Since $a^2 = 2^{2x}$ and $b^2 = x$,
Then $a = 2^{x}$ and $b = \sqrt{x}$.
So $ab = 2^x\sqrt{x}$ and $ab = \frac{11}{2}$,
Then $2^x\sqrt{x} = \frac{11}{2}$
At this point, I'm lost. But just for fun, I took the $\ln$ of both sides:
$x\ln{2} + \frac{1}{2}\ln{x} = \ln{\frac{11}{2}}$
And finally (without really any reasons to):
$x + \frac{\ln{x}}{2\ln{2}} = \frac{\ln{\frac{11}{2}}}{\ln{2}}$
or
$x + \frac{\ln{x}}{2\ln{2}} = \frac{\ln{11} - \ln{2}}{\ln{2}}$
And so
$x + \frac{\ln{x}}{2\ln{2}} = \frac{\ln{11}}{\ln{2}} - 1$
With no where else to go, I figured I'd ask here. Mind you, I came across a 'similar' question here How to solve the equation:$(2x)^{x}=14+x^{x}$?
It isn't the same, but seeing it uses techniques I don't understand (never learnt the Lambert function), I'm guessing $4^x + x = 11$ probably needs the same methods.