Solving equations for the parmaters
xe−1/y=0.6 and xye−1=1.2
I am trying to solve this equations for approximate value of the parameters x and y using SageMath. any help would be appreciated.
xe−1/y=0.6 and xye−1=1.2
I am trying to solve this equations for approximate value of the parameters x and y using SageMath. any help would be appreciated.
The two equations allow a quick elimination of x>0. We can than numerically solve the remaining one equation in the remaining single variable y. The following code may help to get the relevant information, adapted to my taste:
sage: f(y) = log(y) +1/y -1 - log(2)
sage: f
y |--> 1/y - log(2) + log(y) - 1
sage: plot( f, 0.2, 0.5 )
Launched png viewer for Graphics object consisting of 1 graphics primitive
sage: find_root( f, 0.2, 0.4 )
0.3733646177016173
sage: gp( "solve( y=0.2, 0.4, %s )" %f(y) )
0.37336461770167408424844843667927059501
(The value for x is easily found from the second equation.)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 7 years ago
Seen: 766 times
Last updated: Apr 07 '17
What did you try?