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

Online Help

All Products    Maple    MapleSim


RegularChains

  

Initial

  

initial of a nonconstant polynomial

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Initial(p, R)

Parameters

R

-

polynomial ring

p

-

polynomial of R

Description

• 

The function call Initial(p,R) returns the initial of p with respect to the variable ordering of R, that is, the leading coefficient of p regarded as a univariate polynomial in its main variable.

• 

It is assumed that p is a nonconstant polynomial.

• 

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

Examples

withRegularChains:

RPolynomialRingx,y,z

Rpolynomial_ring

(1)

py+1x3+z+4x+3

py+1x3+z+4x+3

(2)

MainVariablep,R

x

(3)

Initialp,R

y+1

(4)

MainDegreep,R

3

(5)

Rankp,R

x3

(6)

Tailp,R

xz+4x+3

(7)

Separantp,R

3x2y+3x2+z+4

(8)

Change the ordering of the variable.

RPolynomialRingz,y,x

Rpolynomial_ring

(9)

pexpandy+1x3+z+4x+3

px3y+x3+xz+4x+3

(10)

MainVariablep,R

z

(11)

Initialp,R

x

(12)

MainDegreep,R

1

(13)

Rankp,R

z

(14)

Tailp,R

x3y+x3+4x+3

(15)

Separantp,R

x

(16)

Set the characteristic to 3.

RPolynomialRingz,y,x,3

Rpolynomial_ring

(17)

px+y3z3+3z2+2z+y+4

px+y3z3+3z2+2z+y+4

(18)

MainVariablep,R

z

(19)

Initialp,R

x3+y3

(20)

MainDegreep,R

3

(21)

Rankp,R

z3

(22)

Tailp,R

y+2z+1

(23)

See Also

MainDegree

MainVariable

PolynomialRing

Rank

RegularChains

Separant

Tail