View source: R/skewFactorialSchurPol.R
SkewFactorialSchurPol | R Documentation |
Computes the skew factorial Schur polynomial associated to a given skew partition.
SkewFactorialSchurPol(n, lambda, mu, a, i0)
n |
number of variables |
lambda , mu |
integer partitions defining the skew partition:
|
a |
vector of |
i0 |
positive integer, the index of |
A qspray
polynomial.
I.G. Macdonald. Schur functions: theme and variations. Publ. IRMA Strasbourg, 1992.
# for a=c(0, 0, ...), the skew factorial Schur polynomial is the
# skew Schur polynomial; let's check
n <- 4
lambda <- c(3, 3, 2, 2); mu <- c(2, 2)
a <- rep(0, 9)
i0 <- 3
skewFactorialSchurPoly <- SkewFactorialSchurPol(n, lambda, mu, a, i0)
skewSchurPoly <- SkewSchurPol(n, lambda, mu)
skewFactorialSchurPoly == skewSchurPoly # should be TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.