Ask Your Question
1

why sagemath returns 2 solution instead of one

asked 4 years ago

lolora gravatar image

when I run the expression

solve([x>=3, x >=5, x < 8],x)

It returns

[[5 < x, x < 8], [x == 5]]

But I'm hoping that it would return

[[5 <= x, x < 8]]

How do I get my expected value?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 4 years ago

Emmanuel Charpentier gravatar image

A possible alternative :

sage: solve([x>=3, x >=5, x < 8],x, algorithm="sympy")
[[5 <= x, x < 8]]

HTH,

Preview: (hide)
link
1

answered 4 years ago

Cyrille gravatar image

updated 4 years ago

Sage gives the hand to Maxima to solve a Fourier-Motzkin list of inequalities. And if there is an explicit solution in equality terms Maxima gives it. Because if x=5 necessarily x<8. There is no more to say. Try successively

solve([x <= 5, x<8],x)

solve([x < 5, x<8],x)
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: 4 years ago

Seen: 471 times

Last updated: Jul 05 '20