Graph Theory Flashcards

1
Q

What is a network?

A

A weighted graph (a graph with numbers or weights associated with the edges).

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

What is a subgraph?

A

A subgraph is a graph which is part of a larger graph.

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

What is the degree or valency or order of a vertex?

A

The number of arcs incident to that vertex.

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

What is a path?

A

A path is a sequence of edges, such that the end of one edge in the sequence is the start of the next edge, and in which no vertex appears more than once.

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

What is a walk?

A

A walk is a path where you are permitted to return to vertices more than once.

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

What is a cycle or circuit?

A

A path where the start and finish vertices are the same.

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

What is a connected graph?

A

A graph where there is a path between every pair of vertices.

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

What defines two vertices as being connected?

A

Two vertices are connected if there is a path between them.

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

What is a loop?

A

A loop is an edge that starts and ends at the same vertex.

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

What is a simple graph?

A

A simple graph is one in which there are no loops and no pair of vertices are joined by more than one edge.

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

What is a digraph?

A

A digraph is one where the edges of the graph have a direction associated with them.

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

What is a tree?

A

A tree is a connected graph with no cycles.

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

What is a spanning tree?

A

A spanning tree is a subgraph which includes all vertices of the original graph and is also a tree.

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

What is a bipartite graph?

A

A graph which consists of two set of vertices and where edges only connect vertices from the different sets.

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

What is a complete graph?

A

A complete graph is one where each vertex is directly connected by an edge to each other vertex in the graph.

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

What defines graphs as isomorphic?

A

Graphs are isomorphic with one another if they show the same information but are drawn differently.

17
Q

What defines something as being a graph?

A

It has vertices connected by edges.

18
Q

What defines a graph as Eulerian?

A

All valencies in the graph are even.

19
Q

What makes a graph semi-Eulerian?

A

Precisely 2 valencies are odd.

20
Q

When is a graph traversable?

A

A graph is traversable if all valencies are even and so you could travel along each arc in a path in one go.