Graph Theory Flashcards

(41 cards)

1
Q

How many edges are in the graph Kₙ,ₘ?

A

nm

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

How can edges be represented?

A

Tuples

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

Is the edge (1,2) ≡ (2,1)

A

Yes, the edges are unordered.

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

What is the degree of a vertex?

A

The number of edges conected to it

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

What is a degree sequence?

A

The number of vertices with a given degree.

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

What does the degree sequence q(1) = 1, q(2) = 3 mean?

A

There is 1 node with the degree 1, and 3 nodes with the degree 2

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

What is the degree distribution?

A

The probability for a vertex to have a given degree. eg. q(1) = 1/8, q(2) = 3/8 …

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

What is the neighbourhood?

A

The set of vertices adjacent it. eg. N(2) = {1,3,4,5}

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

What does N(v) denote?

A

The neighbourhood of a vertex v

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

How do you write a vertex and edge list?

A

List all vertices in the graph then list the edges as tuples. eg.
V = a,b,c,d,e
E = {(a,b), (a,c), (b,e), (c,d), (d,e)}

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

How do you write an adjacency list?

A

a | b,c
b | a,d,e
c | a,d
d | b,c,e
e | b,d

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

How do you write an incidence matrix?

A

Write the edges as tuples along the top, and the vertices down the right side. Then put 1s in the rows where the tuple above contains that vertex. eg.
(a,b) (a,c) (b,d)
1 1 0 a
1 0 1 b
0 1 0 c
0 0 1 d

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

Why are incidence matrices helful?

A

You can easily compute the degree of each vertex looking at the row

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

What is a complete graph?

A

When there is an edge between every pair of vertices.

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

How do you denote a complete graph on n vertices?

A

Kₙ

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

What is a cycle graph?

A

Where every node has exactly 2 edges so that the edges are {(v1,v2), (v2,v3), …, (vn,v1)}

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

What does Cₙ denote?

A

A cycle graph with n vertices

18
Q

How many vertices does the graph Sₙ have?

19
Q

What does Sₙ denote?

A

A star graph with n edges, n+1 vertices

20
Q

What is a biparite graph?

A

Where the vertices can ve split into two sets where there are no edges between vertices in a set, only between vertices in different sets. eg.
0 0 0
I \ I \ / \
0 0 0 0

21
Q

What is the handshaking leemma/degree sum formula?

A

The sum of the node degrees is twice the number of edges in the graph

22
Q

What is a k-regular graph?

A

A graph where every vertex has k neighbours

23
Q

What does it mean if a is incident to b?

A

There is an edge ab

24
Q

What does it mean if 2 graphs are isomorphic?

A

They have the same number of verticies and edges and the same degree sequence

25
How do you write the degree sequence?
In ascending order
26
What does it mean if a graph is connected?
There is a path between every pair of vertices, so it is not disconnected
27
What is an Eulerian path/circuit?
A path containing every edge in the graph with no backtracking
28
What is a Hamiltonian path/circuit?
A path visiting every vertex in the graph with no backtracking
29
What is the difference between a path and a circuit?
A circuit is a closed path
30
How do you know if a graph contains an Eulerian circuit?
A graph has an Eulerian circuit if and only if every vertex has even degree.
31
What is a tree?
A simple graph with no circuits
32
How many edges does a tree with n vertices have?
n-1
33
What is a binary tree?
A rooted tree where every node has at most 2 children
34
What is the height of a binary tree?
The height of a tree is the length of the longest path from the root to any vertex.
35
What is the most number of leaves you can have in a binary tree of height h?
36
What is the dual graph of map?
There is one vertex for every area and verticies are connected when corresponding areas share a border.
37
What is a planar graph?
A graph that can be drawn so no edges cross
38
What is the chromatic number of a graph?
The least number of colours needed for a colouring of the graph
39
What does χ(G) denote?
The chromatic number of the graph G
40
How many edges does a k-regular graph have?
(kn)/2
41
How many edges does a complete graph have?
n(n-1)/2