RepresentingInequations - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


RegularChains[ConstructibleSetTools]

  

RepresentingInequations

  

return the list of inequations in a regular system

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

RepresentingInequations(rs, R)

Parameters

rs

-

regular system

R

-

polynomial ring

Description

• 

The command RepresentingInequations(rs, R) returns the inequations of the regular system rs, assuming that the polynomials of rs belong to R

• 

This command is part of the RegularChains[ConstructibleSetTools] package, so it can be used in the form RepresentingInequations(..) only after executing the command with(RegularChains[ConstructibleSetTools]). However, it can always be accessed through the long form of the command by using RegularChains[ConstructibleSetTools][RepresentingInequations](..).

• 

See ConstructibleSetTools and RegularChains for the related mathematical concepts, in particular for the ideas of a constructible set, a regular system and, a regular chain.

Examples

withRegularChains:

withChainTools:

withConstructibleSetTools:

Define a polynomial ring.

RPolynomialRingx,y,z

Rpolynomial_ring

(1)

Define a set of polynomials of R.

syszx2+y+z,y2+z

syszx2+y+z,y2+z

(2)

The command Triangularize (with lazard option) will decompose the common solutions of the polynomials system sys by means of regular chains.

decTriangularizesys,R,output=lazard

decregular_chain,regular_chain

(3)

Let rc be the first regular chain and h be a polynomial regarded as an inequation.

rcdec1;hx+z

rcregular_chain

hx+z

(4)

To obtain a regular system, check whether h is regular with respect to rc.

IsRegularh,rc,R

true

(5)

Since h is regular, you can build a regular system.

rsRegularSystemrc,h,R

rsregular_system

(6)

Notice that the inequation h is returned by the command RepresentingInequations.

ineqsRepresentingInequationsrs,R

ineqsx+z

(7)

See Also

ConstructibleSet

ConstructibleSetTools

QuasiComponent

RegularChains

RegularSystem

RegularSystemDifference

RepresentingChain

RepresentingRegularSystems