expr=(y+Im[-2 (α + I β) -
Sqrt[2] (α + I β) Sech[
Sqrt[2] (α + I β)]^2 -
Tanh[Sqrt[2] (α + I β)]])/. Solve[Re[-2 (α + I β) -
Sqrt[2] (α + I β) Sech[
Sqrt[2] (α + I β)]^2 -
Tanh[Sqrt[2] (α + I β)]]==0,{α,Reals}]
Solve[expr==0,{β,Reals}]
I could not make Mathematica compute both $\alpha$ and $\beta$ in terms of $y.$ Besides , Solve command; I also tried to make it work through Reduce, and Solve always. If you were to complex expand after trigExpand that expression we have in $Re$ and $Im$ then, we have the following associated equation that I would use the solution of it to get $\beta$ in terms of $\alpha:$
Reduce[-α - ( 4 α Cos[Sqrt[2] β]^2 Cosh[
Sqrt[2] α]^2)/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α])^2 + ( 4 Sqrt[2] α Cos[Sqrt[2] β]^2 Cosh[
Sqrt[2] α]^2)/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α])^2 + (α Sin[2 Sqrt[2] β]^2)/(Cos[2 Sqrt[2] β] +
Cosh[2 Sqrt[2] α])^2 - (8 β Cos[Sqrt[2] β] Cosh[Sqrt[2] α] Sin[ Sqrt[2] β] Sinh[ Sqrt[2] α])/(Cos[2 Sqrt[2] [Beta]] + Cosh[2 Sqrt[2] α])^2 + ( 8 Sqrt[2] β Cos[Sqrt[2] β] Cosh[Sqrt[2] α] Sin[ Sqrt[2] β] Sinh[ Sqrt[2] α])/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α])^2 + (4 α Sin[Sqrt[2] β]^2 Sinh[ Sqrt[2] α]^2)/(Cos[2 Sqrt[2] β] +
Cosh[2 Sqrt[2] α])^2 - ( 4 Sqrt[2] α Sin[Sqrt[2] β]^2 Sinh[ Sqrt[2] α]^2)/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] [Alpha]])^2 - Sinh[2 Sqrt[2] α]/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α]) + ( 2 β Sin[2 Sqrt[2] β] Sinh[ 2 Sqrt[2] α])/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α])^2 - (α Sinh[ 2 Sqrt[2] α]^2)/(Cos[2 Sqrt[2] β] + Cosh[2 Sqrt[2] α])^2 == 0, α, Reals]
I also tried some other ways in order to visualize how the intersection of those contours change based on different values of $y.$ However, this does not make to much sense for my main goal.
Solveare replacement rules so what do you expect byα -> Solve[...]? – Artes Aug 10 '16 at 00:01