ognik
- 626
- 2
Anyone know a way to calculate x=tan(x)cosh2(x) ? I think I should know - but just blank at the moment.
The discussion revolves around solving the equation x = tan(x)cosh²(x) and its variant x = tanh(x)cosh²(x). Participants explore numerical methods, graphing tools, and series expansions to find solutions, while also addressing typographical errors and clarifying the nature of the functions involved.
There is no consensus on the solutions to the equations discussed, with multiple competing views on the existence and nature of solutions. Participants express differing opinions on the validity of approximations and the methods used to find solutions.
Limitations include the dependence on numerical methods for higher-degree equations and the potential inaccuracies introduced by truncating series expansions.
Not quite. When you truncated the infinite series, you lost some accuracy.ognik said:Sorry, yes, I want to solve x= ½sinh(x). IE 2x = x + x3/3! + x5/5!. Dividing by x gives 2 = 1 + x2/6 + v4/120 + ...
Letting u = x2, I have a quadratic of u2 + 20u - 120 = 0 and the positive root of this is 4.8324, giving x=2.2098 ?
In general, there is no formula for solving polynomial equations of degree 5 and greater. Unless you stumble on some fortuitous factorization, you're basically left with numerical techniques, like iteration or applying Newton's method. Applying things like the Rational Root Theorem and Descartes Rule of Signs may indicate how many real roots exist and which trial values to try, but it's basically trial and error.ognik said:I confess I dropped the x7 and subsequent terms because I don't know how to solve the more complex equation that would result :-( So if I had (say) x8/9! + x6/7! + x4/5! + x3/3! - 1 =0, how would I approach solving that equation without using something like mathematica?