If
a graph doesn't have an Euler path or circuit, how can we modify the graph so that it
does?
EULERIZATION and SEMI-EULERIZATION
| EULERIZATION If a graph does not have an Euler Circuit, we still might be interested in knowing how it could be traveled with as few retraced edges as possible (starting and ending at the same vertex). These retraced edges can be indicated by adding duplicate edges between two vertices to indicate that an edge between those two vertices was retraced. Although these duplicate edges just represent a retracing of an edge rather than an actual new edge, mathematically it doesn't matter whether they are real or not. This process is called EULERIZATION. Eulerizing a Graph Example: Eulerize this graph.
Notes about Eulerization of a graph
Try this one yourself:
We might also be interested in knowing how a graph that does not have an Euler Path could be traveled with as few retraced edges as possible (starting and ending at different vertices). These retraced edges can be indicated by adding duplicate edges between two vertices to indicate that an edge between those two vertices was retraced (just as in the Eulerization process). Although these duplicate edges just represent a retracing of an edge rather than an actual new edge, mathematically it doesn't matter whether they are real or not. This process is called SEMI-EULERIZATION. Semi-Eulerizing a Graph Example: Semi-Eulerize this graph.
|