Decision - Route Inspection Flashcards

1
Q

What is a Eulerian graph?

A

A graph which contains a trail that includes every edge and starts and finishes at the same vertex. This trail is called a Eulerian Circuit.

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

What determines whether a graph is Eulerian?

A

A graph is Eulerian if it is a connected graph whose vertices are all even

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

What is a semi-Eulerian graph?

A

A graph which contains a trail that includes every edge but starts and finishes at different vertices. (It must start at 1 odd vertex and finish at the other odd vertex)

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

What determines whether a graph is semi-Eulerian?

A

A graph is semi-Eulerian if it contains exactly 2 odd vertices

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

What is the weight of the shortest trail beggining and ending at the same vertex when there are 2 odd vertices (semi-eulerian graph)?

A

the length of the shortest route will be equal to the total weight of the network + length of shortest route between the 2 odd vertices

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

What is the route inspection algorithm to find the shortest trail beggining and ending at the same vertex when there are 4 odd vertices (non-eulerian graph)?

A
  1. Identify any vertices with odd degrees
  2. Consider all possible pairings of there 4 vertices (3 possible combinations)
  3. Select the complete pairing that has the lowest sum (of the weights)
  4. Add in (sketch) a repeat of the arcs indicated by this pairing to the network
  5. Find Route
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the weight of the shortest trail beggining and ending at the same vertex when there are 4 odd vertices (non-eulerain graph)?

A

the length of the shortest route will be equal to the total weight of the network + length of shortest pairing of the odd vertices

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

What is the weight of the shortest trail beggining and ending at the same vertex in a grpah containing no odd vertices (Eulerian graph)?

A

The weight of the graph

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