Mathematica Solving Implicit Function of Catenary in Mathematica

AI Thread Summary
To solve the implicit function of the catenary defined by the equation k = cosh(k/sqrt(k^2 - 1)), Mathematica's FindRoot function can be utilized. The approach involves plotting the functions k and Cosh[k/Sqrt[k^2 - 1]] over a specified range, such as from 0 to 4, to visually identify approximate roots. Two specific roots can be found using FindRoot with initial guesses: one at k = 0.6 and another at k = 2. This method effectively provides a numerical solution to the implicit equation.
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
FindRoot[k==Cosh[k/Sqrt[k^2-1]], {k,guess}]
Where guess is a guess of the answer.
 
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}]
 

Similar threads

Replies
5
Views
3K
Replies
1
Views
2K
Replies
13
Views
2K
Replies
4
Views
3K
Replies
19
Views
2K
Replies
2
Views
1K
Replies
1
Views
2K
Back
Top