Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Solving equations for the parmaters

asked 7 years ago

xe1/y=0.6 and xye1=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.

Preview: (hide)

Comments

What did you try?

vdelecroix gravatar imagevdelecroix ( 7 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 7 years ago

dan_fulea gravatar image

updated 7 years ago

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.)

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 766 times

Last updated: Apr 07 '17