Questions: Graph Coloring and Chromatic Numbers

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Graph G contains a triangle (three mutually adjacent vertices) as a subgraph. What can you conclude about χ(G)?

Aχ(G) = 2, since most graphs are bipartite and 2-colorable
Bχ(G) = n, where n is the number of vertices in G
Cχ(G) ≥ 3, since the three mutually adjacent vertices of the triangle each require a different color
Dχ(G) ≤ 3, since the four-color theorem guarantees any graph needs at most 4 colors
Question 2 Multiple Choice

You run a greedy coloring algorithm on graph G and use 5 colors. Your friend claims to have found a valid coloring of G using only 4 colors. Is this a contradiction?

AYes — greedy coloring always finds the minimum number of colors, so χ(G) = 5
BNo — greedy coloring gives an upper bound but doesn't guarantee optimality; χ(G) could be 4 or even fewer
CYes — if a 4-coloring existed, the greedy algorithm would have found it
DNo — but χ(G) must be exactly the average of 4 and 5, since both are valid
Question 3 True / False

Every bipartite graph has a chromatic number of exactly 2.

TTrue
FFalse
Question 4 True / False

The four-color theorem guarantees that any graph, regardless of structure, can be properly colored with at most 4 colors.

TTrue
FFalse
Question 5 Short Answer

Why is computing the chromatic number χ(G) of an arbitrary graph computationally hard, even though verifying whether a given coloring is proper is easy?

Think about your answer, then reveal below.