Anna Powolny

- coloring using at most k colors

- graph having k-coloring (chromatic number χ(G)<=k)
- χ(G) - the smallest number of colors needed to color a graph G.
- chromatic number χ(G) = k
Empty graph - isolated nodes with no edges.


Two-colorable graph.
a subset of verticies assigned to the same color, every such a class forms an independent set.


coloring using at most k colors

(edge chromatic number)
χ'(G) - the smallest number of colors needed for an edge coloring of a graph G.


χ'(G) = Δ(G)
χ'(G) - the smallest number of colors needed for an edge coloring of a graph G.
Δ(G) - maximum vertex degree
(maximum number of edges that vertex in graph G has.)

χ(G) - the smallest number of colors needed to color a graph. G.
Δ(G) - maximum vertex degree
(maximum number of edges that vertex in graph G has.)


for a connected, simple graph G, unless G is a complete graph or an odd cycle.
is an unweighted, undirected graph containing no graph loops or multiple edges

is a simple undirected graph in which every pair of distinct vertices is connected by a unique edge

a cycle graph with an odd number of vertices.


3. In order, color each vertex using the first available color on the list, making sure that no two adjacent vertices have the same coloring


4. Continue in this way until each vertex is colored





The chromatic number of the graph is the optimal time to finish all jobs without conflicts
completing a 9-coloring on given specific graph with 81 vertices.
The End