I have the following equation. Why aren't Solve and Reduce able to find the solution?
Reduce[2 n - Tanh[z] Tanh[2 n z] == 0, z]
|
I have the following equation. Why aren't
|
||||
|
Use this to see numerically what the solution space looks like:
To get an analytic solution (approximation) you can series expand in powers of Anyway, the following code generates a result that is both analytic (but messy) and it closely matches the above solution space (compare the plot above with the plot below):
|
||||
|
|
What's $n$? If it's an integer (or even not) you can solve the system for specific values of $n$.
|
|||||||||
|
Manipulate[ ContourPlot[2 n - Tanh[z] Tanh[2 n z] == 0, {z, -z0, z0}, {n, -n0, n0}, ContourStyle -> {Thick, Red}, FrameLabel -> {"z", "n"}], {{n0, 0.66, "n half-range"}, 0.001, 5}, {{z0, 4.3, "z half-range"}, 0.001, 5}]– Stephen Luttrell Sep 27 '12 at 15:00