GraphTheory
CliquePolynomial
compute clique polynomial
Calling Sequence
Parameters
Description
Definition
Examples
Compatibility
CliquePolynomial(G, x)
G
-
undirected graph
x
variable or value
CliquePolynomial returns the clique polynomial for the graph G in the variable x.
For an undirected graph G, the clique polynomial of G is defined to be
1+∑k=1ωGckxk
where ωG is the clique number of G and ck is the number of cliques in G of size k.
The coefficients c1 and c2 are equal to the number of vertices and the number of edges of G, respectively.
The clique polynomial of G is equal to the independence polynomial of the graph complement of G.
withGraphTheory:
withSpecialGraphs:
P≔Graph1,2,2,3,3,4
P≔Graph 1: an undirected graph with 4 vertices and 3 edge(s)
CliquePolynomialP,x
x+11+3x
C≔CycleGraph5
C≔Graph 2: an undirected graph with 5 vertices and 5 edge(s)
CliquePolynomialC,x
5x2+5x+1
The GraphTheory[CliquePolynomial] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
CliqueNumber
IndependencePolynomial
Download Help Document