Jump to content

Graph enumeration

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Rjwilmsi (talk | contribs) at 16:00, 24 May 2014 (Added 1 doi to a journal cite using AWB (10213)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
The complete list of all free trees on 2,3,4 labeled vertices: tree with 2 vertices, trees with 3 vertices and trees with 4 vertices.

In combinatorics, an area of mathematics, graph enumeration describes a class of combinatorial enumeration problems in which one must count undirected or directed graphs of certain types, typically as a function of the number of vertices of the graph.[1] The pioneers in this area of mathematics were Pólya,[2] Cayley [3] and Redfield.[4]

In some graphical enumeration problems, the vertices of the graph are considered to be labeled in such a way as to be distinguishable from each other, while in other problems any permutation of the vertices is considered to form the same graph. In general, labeled problems tend to be easier to solve than unlabeled problems.[5] As with combinatorial enumeration more generally, the Pólya enumeration theorem is an important tool for dealing with symmetries such as this.

Some important results in this area include the following.

  • The number of labeled n-vertex undirected graphs is 2n(n − 1)/2.[6]
  • The number of labeled n-vertex directed graphs is 2n(n − 1).[7]
  • The number Cn of connected labeled n-vertex undirected graphs satisfies the recurrence relation[8]
from which one may easily calculate, for n = 1, 2, 3, ..., that the values for Cn are
1, 1, 4, 38, 728, 26704, 1866256, ...(sequence A001187 in the OEIS)

Enumerating Graphs on A Degree Sequence

Given a degree sequence d one can enumerate all the graphs with degree sequence d using an algorithm. One such algorithm given by Blitzstein and Diaconis [10] is as follows;

INPUT: a graphical sequence d=(d1d2, ..., dn).

  1. Let E be an empty list of edges.
  2. If d = 0, terminate with output E.
  3. Choose the least i with di a minimal positive entry.
  4. Compute the candidate list J={j≠i : {i,j} ∉ E and (d1d2, ...,di − 1,..., dj − 1, ..., dn)  is graphical.}
  5. Pick j ∈ J with probability proportional to its degree in d.
  6. Add edge {i,j} to E and update d to (d1d2, ...,di − 1,..., dj − 1, ..., dn
  7. Repeat steps 4-6 until the degree of i is 0.
  8. Return to step 2.

OUTPUT: E

This algorithm generates a random graph with the given degree sequence. Running the algorithm repeatedly will generate all graphs with degree sequence d.

References

  1. ^ Harary, Frank; Palmer, Edgar M. (1973). Graphical Enumeration. Academic Press. ISBN 0-12-324245-2.
  2. ^ Kombinatorische Anzahlbestimmungen für Gruppen, Graphen und chemische Verbindungen. Acta Math. 68 (1937), 145-254
  3. ^ "Cayley, Arthur (CLY838A)". A Cambridge Alumni Database. University of Cambridge.
  4. ^ The theory of group-reduced distributions. American J. Math. 49 (1927), 433-455.
  5. ^ Harary and Palmer, p. 1.
  6. ^ Harary and Palmer, p. 3.
  7. ^ Harary and Palmer, p. 5.
  8. ^ Harary and Palmer, p. 7.
  9. ^ Harary, Frank; Schwenk, Allen J. (1973), "The number of caterpillars", Discrete Mathematics, 6 (4): 359–365, doi:10.1016/0012-365x(73)90067-8.
  10. ^ http://www.people.fas.harvard.edu/~blitz/BlitzsteinDiaconisGraphAlgorithm.pdf