Ask Your Question
1

Solve in real parameters

asked 3 years ago

Cyrille gravatar image

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 ?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 3 years ago

Emmanuel Charpentier gravatar image

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

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: 3 years ago

Seen: 266 times

Last updated: Aug 30 '21