Y1 - Decision - C2 - Graphs & Networks Flashcards

1
Q

2 What is a graph?

A

A finite number of vertices (or nodes) connected by edges (or arcs)

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

2 What is a weighted graph? What is it also known as?

A

A graph that has numbers assigned to each edge, also called a network

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

2 What is a tree?

A

A connected graph with no cycle

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

2 What is a subgraph?

A

A graph whose vertices and edges belong to another graph but it is only part of the original

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

2 What is a walk?

A

A route through a graph along edges from one vertex to another

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

2 What is a path?

A

A walk in which no vertex is visited more than once

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

2 What is a trail?

A

A walk in which no edge is visited more than once

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

2 What is a cycle? What is it also known as?

A

A walk in which the end vertex is the same as the starting vertex (also a closed path)

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

2 What is a Hamiltonian Cycle?

A

A cycle in which all vertices are visited

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

2 What does it mean if a graph is connected?

A

If all the vertices are joined to the graph

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

2 What is a loop?

A

An edge that starts and finishes at the same vertex

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

2 What is a simple graph?

A

A graph with no loops and where there is at most one edge connecting any pairs of vertices

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

2 What is a digraph?

A

A graph where edges have a direction

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

2 What is a spanning tree?

A

A subgraph which includes all original vertices that is also a tree

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

2 What is the expression for the number of edges in a spanning tree for a connected graph of n vertices?

A

n-1

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

2 What is a complete graph?

A

Every vertex is connected to each other by a single edge (think k1, k2, k3, …)

17
Q

2 What is the expression for the number of Hamiltonian cycles in a complete graph with n vertices?

A

((n-1)!)/2

18
Q

2 What is an isomorphic graph?

A

A pair of graphs which shows the same information but are drawn differently

19
Q

2 What is an adjacency matrix?

A

A table describing the number of arcs joining the corresponding vertices

20
Q

2 What is a distance matrix?

A

A table in which the entries represent the weight of each arc, not the number of arcs

21
Q

2 What is the degree/valency/order of a vertex?

A

The number of edges coming out of the vertex

22
Q

2 What is the Handshake Lemma?

A

In any undirected graph, the sum of the degrees of vertices is equal to 2x the number of edges - therefore the number of odd vertices must be even