degree {weyl} | R Documentation |
The degree of a weyl
object
Description
The degree of a monomial weyl object
is defined as
. The degree
of a general weyl object expressed as a linear combination of
monomials is the maximum of the degrees of these monomials. Following
Coutinho we have:
Usage
deg(S)
Arguments
S |
Object of class |
Value
Nonnegative integer (or for the zero Weyl
object)
Note
The degree of the zero object is conventionally
.
Author(s)
Robin K. S. Hankin
Examples
(a <- rweyl())
deg(a)
d1 <- rweyl(n=2)
d2 <- rweyl(n=2)
deg(d1+d2) <= deg(d1) + deg(d2)
deg(d1*d2) == deg(d1) + deg(d2)
deg(d1*d2-d2*d1) <= deg(d1) + deg(d2) -2
[Package weyl version 0.0-5 Index]