Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
combstruct[agfmomentsolve] - solve the system of generating function equations associated with an attribute grammar
Calling Sequence
agfmomentsolve(eqns, num, neweqns)
Parameters
eqns
-
set of multivariate generating function equations
num
number of times to differentiate; non-negative integer
neweqns
(optional) set of equations that Maple attempts to solve
Description
The agfmomentsolve function accepts a set of multivariate generating functions. It attempts to solve the system of generating functions where the equations are differentiated num times with respect to each variable aside from size. It then evaluates the equations with each nonsize variable set to 1.
The functions are returned as univariate functions. Thus, it is important that the first variable marks size. The agfmomentsolve function is useful for finding averages and higher moments.
The modified equations are returned by using the third argument, neweqns. If it is specified, it is assigned to the system of equations.
If the solving computation is intensive, you can interrupt it and recover the equations. This allows you to intervene with some manual manipulation or specialized solving methods.
The agfmomentsolve function relies on solutions obtained by agfmomentsolve(eqns, num-j) where . Thus, if these cannot be solved, fail is returned.
For information on how to write combstruct grammar specifications, see combstruct and combstruct[specification].
Examples
First, obtain a system of equations by using gfeqns or agfeqns.
The following two examples use the variable to mark the number of internal nodes in a nonplane tree.
Given the equations, it is possible to solve the generating function for the number of trees. This can be obtained from the univariate system which is obtained from the multivariate system with set to 1. Further, cumulative generating functions for the number of internal nodes in a binary tree is determined by differentiating the multivariate generating function with respect to , and setting this variable to 1. That is, the value of the system that agfmomentsolve(eqns, 1) attempts to solve.
The coefficient of of , , is the number of trees with nodes, and is the total sum of all trees with nodes for the number of internal nodes. The average number of internal nodes for a tree on nodes is .
This agfmomentsolve function yields information that can be used to compute the variance.
See Also
combstruct, combstruct[agfeqns], combstruct[gfsolve], combstruct[specification]
Download Help Document