How do I solve for $x$:
$$\log\left(\frac{1.07^x}{1050-2.5x}\right)=\log\left(\frac{1.2}{828}\right)$$
If I raise both sides to the power of $10$, I get: $\dfrac{1.07^x}{1050-2.5x}=\frac{1}{690}$
Then I'm stuck. How do I solve this ?
As suggest by @Kevin, I have decided to add my take here:
One way I could solve this is using Linear Interpolation Approximation.
We have,
$\frac{1.07^x}{1050-2.5x}=\frac{1}{690}$
$1-690\frac{1.07^x}{1050-2.5x}=0$
We need to get the LHS as close to $0$ as possible.
At $x=5(A)$,
LHS $\simeq$ 0.067219 (a)
Since LHS at $x=5$ is greater than $0$, we try at $x=7(B)$
LHS $\simeq$ -0.07311 (b)
Since LHS at $x=7$ is less than $0$,
$5<x<7$
Thus by interpolation,
$x=[A+\frac{a}{a-b}(B-A)]=[5+\frac{0.067219}{0.067219-(-0.07311)}(7-5)]\simeq5.958$
As said in comments, the solution is given in terms of Lambert function.
If you plot the function $$f(x)=\frac{1.07^x}{1050-2.5x}-\frac{1}{690}$$ you should notice that the solution is very close to $x=6$; this means that you could start Newton method and converge quite fast as shown below $$\left( \begin{array}{cc} n & x_n \\ 0 & 6\\ 1 & 5.993055006 \\ 2 & 5.993053313 \\ 3 & 5.993053313 \end{array} \right)$$ Sooner or later, you will lear than any equation which can write or rewrite as $$A+B x+C \log(D+Ex)=0$$ has solution(s) in terms of Lambert function.