I know how to solve an algebraic Equations : x^4-1=0 as below
from sympy import solve, symbols
x = symbols('x')
solve(x**4 - 1, x)
But I got a problem cuz I have tanh() in my equation today like below:
tanh(C1+x*C2) + tanh(C1-x*C2) = C3
Where C1,C2,C3
are pre-specified then how to solve for x
?
As I understood from your question you need just something like