Reputation: 51
Let's denote chromatic number of graph G as k, clique number of graph G (so the size of the largest complete subgraph in graph G) as q, and n as number of vertices of G, I have a problem with showing that k<=(n+q)/2.
So what I know about any graph G is, that chromatic number of any graph is at least equal to clique number
Clique Number: The size of the largest complete subgraph in a graph.
Chromatic Number: The minimum number of colors s.t. vertices can be colored with no adjacent vertices sharing a color.
Upvotes: 5
Views: 230
Reputation: 59368
Given that a graph has no clique of size > q, here's how to color it with <= (q+n)/2 colors:
Upvotes: 2