13

$e^{i\pi} = e^{z\ln2} + e^{z\ln3}$

How can I deal with this? I want to solve for z. Does this help?

$e^{z\ln2} + e^{z\ln3} = e^{z\ln2}(1 + e^{z(ln3-ln2)})$

If I write out z=x+iy then the expression becomes

$-1 = e^{x\ln2}e^{iy\ln2}+e^{x\ln3}e^{iy\ln3}$

  • 3
    Not hard to simplify it to $-1=2^z + 3^z$, but from there, I don't know. Edit: just to show that simplification: $$e^{i\pi} = e^{z\ln2} + e^{z\ln3}$$

    $$-1 = (e^{\ln2})^{z} + (e^{\ln3})^{z}$$

    $$-1= 2^{z} + 3^{z}$$

    – Sultan of Swing Dec 20 '14 at 01:30
  • Thanks. I'm trying to learn how to solve equations like these. Interesting it was not trivial. – Niklas Rosencrantz Dec 20 '14 at 01:36
  • 1
    Yeah, it looks nontrivial :) Just remember $e^{i\pi} = -1$ – Sultan of Swing Dec 20 '14 at 01:36
  • 2
    You could use Euler's formula to identify real and imaginary parts, but I still get stuck. $$-1 = 2^x(\cos y\ln2 + i\sin y\ln 2)+3^x(\cos y\ln3 + i\sin y\ln3)$$ Which means: $$-1 = 2^x\cos y\ln2 + 3^x\cos y\ln3 \qquad 0 = 2^x\sin y\ln2 + 3^x\sin y\ln3.$$ I don't see a continuation... – dietervdf Dec 20 '14 at 02:17
  • 1
    @dietervdf can I just suggest that you write $\sin(y \ln 3)$ instead of $\sin y \ln 3$ in your comment? This ambiguity messed me up earlier :) – Sultan of Swing Dec 20 '14 at 04:25
  • 1
    My answer is hardly exemplary...but I really appreciate the sentiments (the bounty). I don't feel I am worthy of the number of upvotes I got on my answer, let alone an additional bounty. If you check the edit history of my answer, you'll see I did some work to try and solve it, but that work was incorrect as I made the mistake of confusing $\sin y \ln 3$ with $\ln 3 (sin y)$, so everything turned out to be incorrect. Even if that work was correct, that wouldn't have been that fantastic of an answer :) – Sultan of Swing Dec 25 '14 at 20:08
  • 1
    I reward yo for clarity and find explaining the difficulty. I'm going to study if a transform can rewrite the equation as a solvable equation. – Niklas Rosencrantz Dec 26 '14 at 05:53
  • 1
    Well thank you my friend. I will be sure to pass it on someday. I'm still keeping your question in mind! – Sultan of Swing Dec 26 '14 at 10:56

2 Answers2

11

To the best of my knowledge, you can't solve for $z$ analytically. As in my comment above, the expression simplifies to $-1=2^z + 3^z$, but there isn't a way to find $z$ explicitly. Even separating into real and imaginary parts yields a system of nonlinear equations. So to answer: is it solvable? No, it is not. So you'd have to use numerical methods to solve $0=2^z + 3^z -1$. But in terms of interpreting it, I hope someone can provide more insight.

2

Write $log(2)=A+2\pi i n$ and $log(3)=B + 2\pi i m$ where $A$ and $B$ are the real logs of $2$ and $3$.

Write $z=x+iy$, write out the real and imaginary parts of your equation and you'll get two equations in the four unknowns (two real, two integers) $x,y,m,n$, and it won't be hard to characterize the solutions.

WillO
  • 3,141
  • Can you please elaborate how we make it two equations? – Niklas Rosencrantz Dec 20 '14 at 02:10
  • 1
    @NiklasRtz: The real part of the left-hand side is equal to the real part of the right-hand side and the imaginary part of the left-hand side is equal to the imaginary part of the right-hand side. – WillO Dec 20 '14 at 03:07
  • 2
    The problem is that you end up solving two nonlinear equations in two (or four, if you rewrite the logarithms) unknowns, which I see no method of solving. – Sultan of Swing Dec 20 '14 at 03:13