RegularChains
ConstructibleSetTools[IsEmpty]
check whether a constructible set is empty or not
SemiAlgebraicSetTools[IsEmpty]
check whether a semi-algebraic set is empty or not
Calling Sequence
Parameters
Description
Examples
Compatibility
IsEmpty(cs, R)
IsEmpty(sys, R)
IsEmpty(F,N,P,H, R)
cs
-
constructible set structure
sys
list of polynomial constraints
F
list of polynomials
N
P
H
R
polynomial ring
The command IsEmpty(cs, R) decides whether the constructible set cs is empty or not. The polynomial ring may have characteristic zero or a prime characteristic.
The command IsEmpty(sys, R) checks whether the zero set of the set of constraints sys is empty or not. The constraints in sys can be any polynomial equations, inequations or inequalities given by polynomials of R. The zero set of sys is regarded as the set of the real solutions of the polynomial system defined by sys. This assumes that R has characteristic zero.
The command IsEmpty(F, N, P, H, R) checks whether the zero set of the semi-algebraic system represented by [F, N, P, H] (see RealTriangularize) is empty or not. This assumes that R has characteristic zero.
This command is available once either the RegularChains[ConstructibleSetTools] submodule or the RegularChains[SemiAlgebraicSetTools] submodule have been loaded. It can always be accessed through one of the following long forms: RegularChains:-ConstructibleSetTools:-IsEmpty or RegularChains:-SemiAlgebraicSetTools:-IsEmpty.
with⁡RegularChains:
with⁡ConstructibleSetTools:
with⁡SemiAlgebraicSetTools:
Define a polynomial ring R first.
R≔PolynomialRing⁡x,y
R≔polynomial_ring
Then construct a constructible set cs as follows.
cs≔GeneralConstruct⁡x2,x⁢y−1,1,R
cs≔constructible_set
IsEmpty⁡cs,R
true
Semi-algebraic case:
IsEmpty⁡x2+y2+1=0,R
IsEmpty⁡x2+y2−1=0,R
false
The RegularChains[SemiAlgebraicSetTools][IsEmpty] command was introduced in Maple 16.
The sys, F, N, P, H and R parameters were introduced in Maple 16.
For more information on Maple 16 changes, see Updates in Maple 16.
See Also
ConstructibleSet
ConstructibleSetTools
EmptyConstructibleSet
EmptySemiAlgebraicSet
GeneralConstruct
IsContained
RealTriangularize
SemiAlgebraicSetTools
Download Help Document