Modelling with graphs and networks 1: Working with graphs Flashcards

1
Q

What is a graph?

A

A graph is a set of nodes (or vertices) together with a set of arcs (or edges).

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

What is a loop?

A

A loop is an edge with the same vertex at both ends.

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

What is the order of a vertex?

A

The order (or degree) of a vertex is the number of edges incident on it.

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

What is an incidence matrix?

A
A matrix that represents a graph/network:
(0 1 2 0 0)
(1 2 1 0 0)
(2 1 0 0 0)
 (0 0 0 0 1)
 (0 0 0 1 0)

e.g. first point is how many connections from A to A

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

What is a connected graph?

A

A connected graph is one in which every vertex is joined, directly or indirectly to each of the other vertices

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

What is a simple graph?

A

A simple graph is a graph with no loops and no ‘repeated’ edges.

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

What is a simply connected graph?

A

A simply connected graph is a graph that is both simple and connected.

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

What is a tree?

A

A tree is a simply connected graph with the minimum possible number of arcs

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

How many edges does a tree on n vertices have?

A

A tree on n vertices has n-1 edges

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

What is a complete graph

A

A complete graph is a simply connected graph with the maximum possible number of arcs

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

How many edges does a complete graph on n vertices have?

A

A complete graph on n vertices has (n(n -1))/2 edges.

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

What is a digraph?

A

A digraph is a graph where some of the arcs are directed. The incidence matrix for a digraph will usually not be symmetric about the leading diagonal.

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

What is a bipartite graph?

A

A bipartite graph is one where the vertices partition into two sets and edges cannot join vertices that are in the same set.

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

What is a network?

A

A network is a graph with weighted arcs.

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