| Home | Trees | Indices | Help |
|---|
|
|
Signed Compositions
|
|||
| SignedCompositions_n | |||
|
|||
|
|||
|
|||
Returns the combinatorial class of signed compositions of
n.
EXAMPLES:
sage: SC3 = SignedCompositions(3); SC3
Signed compositions of 3
sage: SC3.count()
18
sage: len(SC3.list())
18
sage: SC3.first()
[1, 1, 1]
sage: SC3.last()
[-3]
sage: SC3.random_element()
[1, -1, 1]
sage: SC3.list()
[[1, 1, 1],
[1, 1, -1],
[1, -1, 1],
[1, -1, -1],
[-1, 1, 1],
[-1, 1, -1],
[-1, -1, 1],
[-1, -1, -1],
[1, 2],
[1, -2],
[-1, 2],
[-1, -2],
[2, 1],
[2, -1],
[-2, 1],
[-2, -1],
[3],
[-3]]
|
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0beta1 on Thu Jul 17 04:23:25 2008 | http://epydoc.sourceforge.net |