A walk describes the process of starting at a vertex and moving along an edge (in the direction of the arrow) to a new vertex. Continue the walk by following another edge to a second vertex, a third edge to a third vertex, and so on. In a simple network a walk is represented by a sequence of vertices. Here is a simple, undirected network, with the green arrows representing a walk around the network:
A walk that starts and ends at the same vertex is closed, and if it starts and ends at different vertices it is open. The walk above is open - below is a different walk on the same network:
This walk has sequence $ABADFCGDEA$ABADFCGDEA. Since it starts and ends at the same vertex, it is closed. We can also tell by looking at the sequence (and not the diagram) that’s the walk is closed, since the sequence starts and ends with the same letter.
A walk is the most general definition of how we can move around a network. Sometimes we want to impose a stricter condition - if we say that the walk cannot use the same vertex more than once, we call it a path (we can reuse the start/end vertex only). If the path is closed, we call it a cycle. Here are two different paths, one open and one closed, on the same network:
If a walk cannot use the same edge more than once, it is a trail if it’s open and a circuit if it’s closed. Here is one of each on the same network:
Note:
Which of the following graphs is connected? Select all the correct options.
Which of the following is a circuit in the network shown? Select all the correct options.
$C,B,A,E,D,C$C,B,A,E,D,C
$B,A,E,C,D,B$B,A,E,C,D,B
$B,C,A,E,D,C$B,C,A,E,D,C
$D,C,B,A,E,D$D,C,B,A,E,D
If a network has a trail or circuit that uses every edge, it is described as traversable (sometimes semi-Eulerian). This special walk is then called an Euler trail* if it’s open or an Euler circuit if it’s closed, named after the same Euler that gave us Euler’s formula. If a network has an Euler circuit we call it an Euler network (sometimes Eulerian).
Some texts refer to such a trail as an Euler path, but this special walk is a trail (since vertices can be repeated), not a path!
You can think about a traversable networks as ones where you can start at a vertex and draw in all the edges without taking your pen (or finger or stylus) off the page (or screen). Here are two traversable networks, the one on the right is an Euler network:
Is the network below traversable?
No
Yes
Is the network below traversable?
No
Yes
Consider the networks below:
Which one of the networks is traversable?
The traversable network from part (a) has been labelled below:
Which vertices can you start at in order to traverse the network?
Select the most correct answer only.
$A$A, $C$C and $G$G.
$D$D and $F$F.
Just $C$C.
$B$B and $E$E.
Any of the vertices.
Just $D$D.