RegularChains
Separant
separant of a nonconstant polynomial
Calling Sequence
Parameters
Description
Examples
Separant(p, R)
R
-
polynomial ring
p
polynomial of R
The function call Separant(p,R) returns the separant of p with respect to the variable ordering of R, that is, the derivative of p with respect to its main variable.
It is assumed that p is nonconstant polynomial, and that the characteristic of R is zero.
This command is part of the RegularChains package, so it can be used in the form Separant(..) only after executing the command with(RegularChains). However, it can always be accessed through the long form of the command by using RegularChains[Separant](..).
with⁡RegularChains:
R≔PolynomialRing⁡x,y,z
R≔polynomial_ring
p≔y+1⁢x3+z+4⁢x+3
MainVariable⁡p,R
x
Separant⁡p,R
3⁢x2⁢y+3⁢x2+z+4
Change the ordering of the variable.
R≔PolynomialRing⁡z,y,x
p≔expand⁡y+1⁢x3+z+4⁢x+3
p≔x3⁢y+x3+x⁢z+4⁢x+3
z
See Also
Initial
MainDegree
MainVariable
PolynomialRing
Rank
Tail
Download Help Document