Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 2 years ago

Thrash gravatar image

Recursive combinatorial species

The combinatorial species of rooted trees can be defined recursively via A=XE(A), where X denoted the singleton species and E the set species. How can I make the following code work?

sage: X = species.SingletonSpecies()
sage: E = species.SetSpecies()
sage: A = CombinatorialSpecies()
sage: A.define(X*E(A))
sage: A.generating_series()

Recursive combinatorial species

The combinatorial species of rooted trees can be defined recursively via A=XE(A), where X denoted denotes the singleton species and E the set species. How can I make the following code work?

sage: X = species.SingletonSpecies()
sage: E = species.SetSpecies()
sage: A = CombinatorialSpecies()
sage: A.define(X*E(A))
sage: A.generating_series()

Recursive combinatorial species

The combinatorial species of rooted trees can be defined recursively via A=XE(A), where X denotes the singleton species and E the set species. How can I make the following code work?work? The last command yields an error.

sage: X = species.SingletonSpecies()
sage: E = species.SetSpecies()
sage: A = CombinatorialSpecies()
sage: A.define(X*E(A))
sage: A.generating_series()
click to hide/show revision 4
retagged

updated 2 years ago

FrédéricC gravatar image

Recursive combinatorial species

The combinatorial species of rooted trees can be defined recursively via A=XE(A), where X denotes the singleton species and E the set species. How can I make the following code work? The last command yields an error.

sage: X = species.SingletonSpecies()
sage: E = species.SetSpecies()
sage: A = CombinatorialSpecies()
sage: A.define(X*E(A))
sage: A.generating_series()