Exam Revision Flashcards

1
Q

Planar graph

A

a graph that can be drawn in the plane in such a way that no edges cross each other, and no edge touches a vertex other than its endpoints

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

Relationship between n (vertices), m (edges) and r (regions) in planar graph

A

n - m + r = 2

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

Bipartite graph

A

a graph G = (V, E) with the property that V can be partitioned into two disjoint sets V1 and V2 such that V = V1 ∪ V2 and every edge has one endpoint in V1 and the other in V2.

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

Bipartite graph definition using colouring

A

A graph that has a proper colouring using two colours

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

Bipartite graph definition using cycles

A

A graph that does not contain any cycles of odd length

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

R(4,5)=R(5,4)=

A

25

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

Subgraph

A

A subgraph of a graph G is a graph obtained from G by deleting vertices and/or edges

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

Bipartite graph

A

a graph that does not contain any cycles of odd length

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

Hamiltonian cycle

A

a Hamilton cycle in a graph G is a cycle in the graph which contains every vertex (exactly once)

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

Proper k-colouring

A

A proper k-colouring of a graph G is a function f : V (G) → {1, . . . , k} such that f(u) =/= f(v) whenever uv ∈ E(G).

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

Clique number

A

The clique number of a graph G is the largest natural number t such that G contains Kt as a subgraph

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

Independent set

A

An independent set in a graph G is a set U ⊆ V (G) such that no edge in G has both endpoints in U.

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

Independence number

A

The independence number of G is the size of the largest independent set in G.

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

Ramsey number R(s, t) for integers s, t > 2. 4

A

The Ramsey number R(s, t) (for natural numbers s and t) is the smallest natural number n such that every colouring of the edges of Kn with red and blue contains either a copy of Ks with all edges red or a copy of Kt with all edges blue.

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

Using the fact that R(4, 4) = 18, show that the graph in part 2(ii)b must contain an independent set of size at least 4.

A

Since R(4, 4) = 18, any graph with 18 vertices must contain either a clique or independent set on 4 vertices. The graph in part (ii)(b) has 18 vertices and does not contain any clique on 4 vertices (since the clique number is 3), so it must contain an independent set of size at least 4.

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

Connected graph

A

A graph G is connected if, for every two distinct vertices u, v ∈ V (G), there is a path from u to v

17
Q

Spanning tree

A

A spanning tree for a connected graph G is a spanning subgraph of G that is a tree.

18
Q

Connected component

A

A connected component of G is a maximal connected induced subgraph of G

19
Q

Brute force algorithm

A

enumerates every possible solution and tests each one

20
Q

greedy algorithm

A

focuses on making the best short term decision without considering long term consequences

21
Q

P-problem

A

can be solved by an algorithm within a time bounded by a polynomial function of the problem size

22
Q

NP- problem

A

a potential solution can be checked in polynomial time

23
Q

Eulerian graph

A

contains a closed walk that includes every edge exactly once

24
Q

Hamiltonian graph

A

contains a cycle that includes every vertex once

25
Q

what two conditions must a flow satisfy to be valid?

A
  1. For every edge the flow across that edge must be less than or equal to its capacity
  2. For every vertex other than the source and the sink, the sum of the flow over the in-edges equals the sum of the flows over the out-edges
26
Q

Planar graph inequality

A

m less than or equal to 3n-6

27
Q

Kn has how many edges?

A

1/2*n(n-1)

28
Q

Strong induction vs standard induction

A

In a proof by strong induction, the inductive hypothesis says that the result is true for all natural numbers between the base case, up to a natural number k. In standard induction, the inductive hypothesis says that the result is true for some natural number k (without assuming it’s true for any values less than k).

29
Q

Independent set

A

a set U ⊆ V (G) with the property that no
edge in G has both incident vertices in U

30
Q

Hall’s Marriage Theorem

A

t a bipartite graph with bipartition
(U, W), where |U| = |W|, contains a perfect matching if and only for all U’ ⊆ U,
we have | NG(U’)|>| U’|.

31
Q

Augmenting path

A

An augmenting path in a basic flow network, with respect to a given flow, is an undirected path from the source to the sink such that no forward edge on the path is saturated, and every backward edge has non-zero flow

32
Q

Euler’s formula

A

n - m + r = 2 where n is the number of vertices, m is the number of edges, and r is the number of regions in the planar drawing

33
Q

Simple graph

A

the adjacency matrix must be symmetric about the main diagonal and have no loops

34
Q

Ramsey’s Theorem

A

For all s, t ⩾ 2, there is a natural number n such that every colouring of the edges of Kn with red and blue contains either a copy of Ks with all edges red or a copy of Kt with all edges blue

35
Q

Let G be a connected planar graph with n ≥ 3 vertices and m edges. Then

A

m ≤ 3n − 6.