Solve in real parameters
I have a simple solve()
line
var('x y')
solve(.25*x + 1.75*y, y)
Sagemath gives the good result but with rational parameters. Is there a pararameter which can keep the reals ?
I have a simple solve()
line
var('x y')
solve(.25*x + 1.75*y, y)
Sagemath gives the good result but with rational parameters. Is there a pararameter which can keep the reals ?
This :
sage: var('x y')
(x, y)
sage: solve(.25*x + 1.75*y, y)[0].rhs().polynomial(base_ring=RR)
-0.142857142857143*x
may be what you want. But I fail to see the point...
Asked: 3 years ago
Seen: 266 times
Last updated: Aug 30 '21