Solving Implicit Function of Catenary in Mathematica

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
Nusc
Messages
752
Reaction score
2
I need to solve this implicit function of the catenary

k=cosh(k/sqrt(k^2-1))

how do i Do this in mathematica?
 
Physics news on Phys.org
If you do a :
Plot[{k, Cosh[k/Sqrt[(k^2 - 1)]]}, {k, 0, 4}]

You can get an approximate guess to use lurflurf's suggestion, for the two roots.
FindRoot[Cosh[k/Sqrt[k^2 - 1]] - k, {k, 0.6}]
FindRoot[Cosh[k/Sqrt[k^2 - 1]] - k, {k, 2}]