Mycielski - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

Mycielski

  

construct Mycielski graph from graph

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Mycielski(G)

Parameters

G

-

undirected graph

Description

• 

Mycielski is a graph construction which, given a graph G on n vertices, returns a graph on 2⁢n+1 vertices. If G is triangle-free with chromatic number k, then the returned graph is triangle-free with chromatic number k+1.

Examples

> 

with⁡GraphTheory:

> 

with⁡SpecialGraphs:

> 

P≔PetersenGraph⁡

P≔Graph 1: an undirected graph with 10 vertices and 15 edges

(1)
> 

G≔Mycielski⁡P

G≔Graph 2: an undirected graph with 21 vertices and 55 edges

(2)
> 

ChromaticNumber⁡G,bound

3..4

(3)
> 

ChromaticNumber⁡G

4

(4)

See Also

ChromaticNumber