0

I am trying to solve the following equation for $k$: \begin{equation*} -e^{-i2k\ell}=\frac{k-1}{k+1}\, , \end{equation*} where $\ell$ is a positive number (constant).

I would like to know how the solutions of $k$ look like. I expect it to be an infinite number of solutions. Does anyone have any ideas how to prove or show this?

putti.123
  • 339
  • I suspect this will not have a "nice" closed form solution if one exists at all (Lambert W function "solutions" not withstanding). What makes you think this will have a nice solution and where did this come from? – Cameron Williams Mar 19 '21 at 12:15
  • This equation is part of my bachelor thesis and my supervisor is interested in it. I just want to get more familiar with it and I am not sure what to look for. I want to solve it numerically later on, just curious about any nice analytical properties I might miss. – putti.123 Mar 19 '21 at 12:30

2 Answers2

1

This would be an interesting extension of the generalized Lambert function in the complex domain.

Let $c=2i \ell$ and write the equation as $$e^{-c k}=\frac{k-1}{k+1}$$

Now, have a look at equation $(4)$ in the linked paper.

  • Thank you very much, that looks very interesting! In this paper it seems to me that it is not quite clear if $c$ can be complex (which would be the case in my equation)? – putti.123 Mar 20 '21 at 15:48
  • @putti.123. This is why I wrote that it would be an interesting extension ! – Claude Leibovici Mar 20 '21 at 15:53
0

Let's define :

$e^{-c k}=\frac{k-1}{k+1}$

we can write :

\begin{align} -ce^{-c k}=-\frac{k-1}{k+1}c & \iff -c(k+1)e^{-c(k+1)}=-(\sqrt k - 1)(\sqrt k + 1)ce^{-c} \\ \\ & \iff -c(k+1)e^{-c(k+1)}= -(\sqrt k - 1)(\sqrt k + 1)ce^{-c} \\ \\ & \iff \ln(-c(k+1)) - c(k+1)=- (\sqrt k - 1)(\sqrt k + 1)ce^c \\ \\ & \iff W(-(\sqrt k - 1)(\sqrt k + 1)ce^c) - c(k+1)= \ln(- (\sqrt k - 1)(\sqrt k + 1)ce^c) \\ \\ & \iff k = -\frac{c + \ln(- (\sqrt k - 1)(\sqrt k + 1)c) - W(-(\sqrt k - 1)(\sqrt k + 1)ce^c) + c }{c} \\ \\ & \iff k = -(2 + \ln(- (\sqrt k - 1)(\sqrt k + 1)c) - W(-(\sqrt k - 1)(\sqrt k + 1)ce^c)) \\ \\ & \iff k = -2 - \ln(- (\sqrt k - 1)(\sqrt k + 1)c) + W(-(\sqrt k - 1)(\sqrt k + 1)ce^c)) \\ \end{align}

This express the multiple solutions using the $W(-(\sqrt k - 1)(\sqrt k + 1)ce^c)$ Lambert function with $c=2i \ell$.

lays
  • 176