Ask Your Question
2

How to interpret Solve_ineq() result ?

asked 3 years ago

Cyrille gravatar image

For this code

R = PolynomialRing(QQ, 'x', 2)
X = vector(R.gens())
show(X)
A=matrix(QQ,[[1, 2], [-3, 4]])
b=vector(QQ,[[2], [-4]])
show(A,"....",  b)
Z=A*X+b
ZZ=[SR(y) for y in Z]
ZZZ=[eq<=0 for eq in ZZ]
Y=[SR(X[i]).variables()[0] for i in range(len(X))]
show(Y)
show(ZZZ)
sol=solve_ineq(ZZZ,[x[0]])
sol

sol[0] gives [x0 == -2*x1 - 2, 5*x1 + 1]. And here is the question what means 5*x1 + 1 (no equality, inequality ...)

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 3 years ago

rburing gravatar image

This seems to be a bug in Maxima, now reported as #3799 fourier_elim returns non-(in)equations.

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: 248 times

Last updated: Jun 09 '21