I want to solve an inequation composed of FractionFieldElement.
RF = RealField(300)
P.<x> = RF[]
solve(x ^ 2 / (x + 1) >= 0, x) # TypeError: x is not a valid variable.
I got a TypeError. What can I do?
1 | initial version |
I want to solve an inequation composed of FractionFieldElement.
RF = RealField(300)
P.<x> = RF[]
solve(x ^ 2 / (x + 1) >= 0, x) # TypeError: x is not a valid variable.
I got a TypeError. What can I do?
I want to solve an inequation composed of FractionFieldElement.
RF = RealField(300)
P.<x> = RF[]
solve(x ^ 2 / (x + 1) >= 0, x) # TypeError: x is not a valid variable.
I got a TypeError. What can I do?