Eulerian Graphs Flashcards

1
Q

Definition: Eulerian Trail

A

A trail which visits every edge of a graph exactly once

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

Definition: Eulerian Circuit

A

A circuit which traverses all the edges of a graph ( begins and ends at the same place)

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

Definition: Eulerian Graph

A

A graph which contains a Eulerian circuit

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

Property: Eulerian Graph

A

A connected multigraph is a Eulerian if and only if the degree of each vertex in G is even

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

Property: Eulerian Trail

A

A connected multigraph possesses an Eulerian Trail if and only if the graph possesses exactly two odd vertices ( Where the trail begins at the one odd vertex and ends at the other)

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

Algorithm: Fleury’s Algorithm

A

Fleury’s algorithm outputs an Eulerian trail (If the graph isn’t Eulerian) or circuit (If the graph is Eulerian) given a connected multigraph with at most two odd vertices

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

Property: Directed Eulerian Circuit

A

A strongly connected multigraph is Eulerian if and only if the indegree and outdegree of each vertex is equal

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

Property: Directed Eulerian Trail

A

A strongly connected multigraph D possesses a Eulerian Trail if and only if D has two distinct vertices u and v such that:
id(u) = od(u) + 1 and id(v) = od(v) + 1
and the id(w) = od(w) for all other vertices of D where the trail begins at u and ends at v

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

Definition: Tour

A

A closed walk that traverses each edge at least once in a connected weighted graph

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

Definition: Optimal Tour

A

An optimal tour is a tour of minimal weight

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

Definition: Chinese Postman Problem

A

Find an optimal tour in G for a connected weighted graph G.

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