Grammar Specification of a Combinatorial Class
Description
Examples
A combinatorial class is either an elementary class, or is built from simpler classes with "constructors." The elementary classes are Epsilon, which represents an object of size zero, and Atom, which represents an object of size one. The available constructors are listed in the following table.
Epsilon
object of size 0
Atom
object of size 1 (Z is a predefined atom)
Union(A,B,...)
disjointunion of the classes A,B, ...
Prod(A,B,...)
partitional product of the classes A, B, ...
Set(A)
all sets with repetitions whose elements are in A
PowerSet(A)
all sets without repetitions whose elements are in A
Sequence(A)
all sequences of elements of A
Cycle(A)
all directed cycles of elements of A
Subst(A,B)
B-objects whose atoms are replaced by A-objects
For the constructors Set, PowerSet, Sequence, and Cycle, it is possible to add restrictions on the cardinality. For example, Set⁡A,1≤card means all nonempty sets whose elements are in A, Sequence⁡A,card≤3 means all sequences of at most three elements of A, and Cycle⁡A,card=5 means all directed cycles of five elements from A.
None of these constructors accept an object that generates Epsilon as an argument. In some cases, no cardinality restriction or k≤card with any constructor but PowerSet, such a grammar generates an infinite number of objects of size 0, whereas this system is for classes with a finite number of members of each size.
In the others, PowerSet or card≤k or card=k, while there are only a finite number of objects of size 0, the current system does not handle grammars with such Epsilon productions.
In Subst⁡A,B, neither A nor B may produce objects of size 0.
A specification is a set of productions of the form A=rhs, where A is the name of the class being defined, and rhs is an expression involving elementary classes, constructors, and other classes. For example, the following table lists specifications of some well-known combinatorial classes.
When the labeling type is 'labeled'.
A=Prod⁡Z,Set⁡A
nonplane trees
B=Union⁡Z,Prod⁡B,B
plane binary trees
C=Prod⁡Z,Sequence⁡C
plane general trees
D=Set⁡Cycle⁡Z
permutations
F=Set⁡Set⁡Z,1≤card
set partitions
G=Union⁡Z,Prod⁡Z,Set⁡G,card=3
nonplane ternary trees
H=Union⁡Z,Set⁡H,2≤card
hierarchies
L=Set⁡Set⁡Set⁡Z,1≤card,1≤card
3-balanced hierarchies
M=Sequence⁡Set⁡Z,1≤card
surjections
N=Set⁡Cycle⁡A,A=Prod⁡Z,Set⁡A
functional graphs
When the labeling type is 'unlabeled'.
A=Set⁡Sequence⁡Z,1≤card
integer partition
B=Sequence⁡Union⁡Z,Z
binary sequences
C=Cycle⁡Set⁡Z,1≤card
necklaces
D=Prod⁡Z,Set⁡D
rooted unlabeled trees
F=Union⁡Z,Set⁡F,card=2
nonplane binary trees
G=Union⁡Z,Set⁡G,card=3
unlabeled hierarchies
J=Set⁡Cycle⁡D,D=Prod⁡Z,Set⁡D
random mappings patterns
K=Union⁡Z,Subst⁡Union⁡Prod⁡Z,Z,Prod⁡Z,Z,Z,K
2-3 trees
L=PowerSet⁡Sequence⁡Z,1≤card
integer partitions without
repetition
It is possible to use Epsilon as a way of marking certain objects without affecting their size.
There are also predefined structures, for example, combinations, built into the system. For more information, see combstruct[structures].
with⁡combstruct:
Generate words on two letters of the form C=a⁢C⁢b^`⁢`.
sys≔C=Sequence⁡Prod⁡a,C,b,a=Atom,b=Atom:
word≔draw⁡C,sys,size=6
word≔Sequence⁡Prod⁡a,Sequence⁡Prod⁡a,Ε,b,b,Prod⁡a,Ε,b
If you do not need the derivation structure, remove it.
eval⁡subs⁡`=`⁡Prod,↦args,`=`⁡Sequence,↦args,Ε=NULL,word
a,a,b,b,a,b
To model series and parallel circuits of resistors, a parallel circuit is made up of two or more resistors in series, and a series circuit is made up of two or more parallel circuits.
circuit≔C=Union⁡P,S,R,P=Set⁡Union⁡S,R,2≤card,R=Atom,S=Set⁡Union⁡P,R,2≤card:
draw⁡C,circuit,labeled,size=5
Set⁡R4,Set⁡Set⁡R5,Set⁡R1,R2,R3
However, you cannot tell from this answer which resistors are in series and which are in parallel. In this case, you obtain more information about the derivation by using Epsilon tags.
circuit2≔C=Union⁡P,S,R,P=Prod⁡par,Set⁡Union⁡S,R,2≤card,R=Atom,S=Prod⁡ser,Set⁡Union⁡P,R,2≤card,par=Ε,ser=Ε:
draw⁡C,circuit2,labeled,size=5
Prod⁡ser,Set⁡R2,Prod⁡par,Set⁡R3,R4,Prod⁡par,Set⁡R5,R1
Since Epsilon has size 0, taking the product with Epsilon does not change the number of objects of each size.
See Also
combstruct
combstruct[structures]
Download Help Document