gfsolve - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


combstruct

  

gfsolve

  

solve the system of generating functions associated with a grammar

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

gfsolve(spec, typ, var, tags)

Parameters

spec

-

combinatorial specification

typ

-

labeling type; 'labeled' or 'unlabeled'

var

-

variable to use in the generating functions

tags

-

(optional) list of lists; each list contains a variable tag followed by the Epsilon nonterminal name(s) associated with that tag

Description

• 

The gfsolve function returns a set containing the generating functions which count the objects described in the specification.

  

Each nonterminal A, has an associated generating function Az, found by solving the system of generating function equations associated with the specification. If it cannot solve the system, it returns FAIL.

  

For more information, see combstruct[gfeqns].

• 

If the objects are labeled, exponential generating functions are produced. If the objects are unlabeled, ordinary generating functions are used.

• 

Objects can be marked (tagged) by forming the product of that object with a named Epsilon and associating a tag with that Epsilon. If the tag is a variable name, the resulting generating function has an extra variable that marks that object. The same tag can be associated with more than one Epsilon name. The tag does not need to be a variable.

• 

For information on how to write specifications, see combstruct and combstruct[specification].

Examples

withcombstruct:

An example of a labeled binary tree.

treeL=Atom,N=Atom,T=UnionL,ProdN,T,T:

gfsolvetree,labeled,z

Lz=z,Nz=z,Tz=1+4z2+12z

(1)

Nonplane ternary trees.  Mark the leaf nodes of an unlabeled general tree.

ternary_treeG=UnionZ,ProdZ,SetG,card=3,labeled:

gfsolveternary_tree,x

Gx=3x+9x38xx2132x13x+9x38xx213I33x+9x38xx213x23x+9x38xx2132,Zx=x

(2)

Mark the leaf nodes of an labeled general tree.

tree1L=Prodleaf,Atom,N=Atom,T=UnionL,ProdN,SetT,leaf=Ε:

gfsolvetree1,labeled,z,u,leaf

Lz,u=uz,Nz,u=z,Tz,u=uzLambertWzⅇuz,leafz,u=u

(3)

See Also

combstruct

combstruct[gfeqns]

combstruct[gfseries]

combstruct[specification]