Section 5: Graph colouring Flashcards

1
Q

We are interested in assigning colours to the vertices of a graph, so that no two adjacent vertices can receive the same colour. A colouring of the vertices of a graph G that satisfies this rule is called
a

A

proper colouring of G

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

If there exists a proper
k-colouring of G, we say that G is

A

k-colourable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The _______ of G is the smallest natural number k such that G is k-colourable

A

chromatic number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If H is a subgraph of G, and H has chromatic number at least k, then G ________.

A

also has chromatic number at least k

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The complete graph on n vertices, Kn, has chromatic number _________.

A

n (every vertex must receive a different colour)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

the _______ _______ of G is the largest natural number t such that K_t
is a subgraph of G

A

clique number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

t the chromatic number of a graph G is at least the _______ _______ of G

A

clique number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In general, if C_t
is a cycle on t vertices, where t is odd, we need ____ colours to properly colour C_t

A

three

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If we have a proper
colouring of a graph G, and all the vertices of U ⊆ G receive the same colour, then there cannot be an edge between any two vertices of U.
A set like this, which does not induce any edges in G, is called an _____ ____

A

independent set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

the number of vertices in the largest independent
set in G is called the ______ ______ of G

A

independence number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The number of vertices that receives any one colour in a proper colouring of G is at most the ____ _____ of G

A

independence number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

independence number of G × chromatic number of G ≥ _____.

A

|G|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Theorem 5.1. Let G be a graph with n vertices and independence number α. Then the chromatic number of G is at least ____.

A

n/α

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

a _____ _______ is one which makes the best short-term decision, without considering the long-term consequences of this decision

A

greedy algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The greedy
algorithm for colouring a graph is as follows:
a) ______
b) Colour the vertices in this order, each time choosing the
first colour that has not already been used on a neighbour of the vertex being considered.

A

List the vertices of G in some order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The greedy
algorithm for colouring a graph is as follows:
a) List the vertices of G in some order.
b) __________

A

Colour the vertices in this order, each time choosing the first colour that has not already been used on a neighbour of the vertex being considered.

17
Q

Lemma 5.2. Let G be a graph with maximum degree d. Then the chromatic number of G is at most _____

A

d + 1

18
Q
A