1 / 24

5 The Mathematics of Getting Around

5 The Mathematics of Getting Around. 5.1 Euler Circuit Problems 5.2 What Is a Graph? 5.3 Graph Concepts and Terminology 5.4 Graph Models 5.5 Euler’s Theorems 5.6 Fleury’s Algorithm 5.7 Eulerizing Graphs. Terminology.

meli
Download Presentation

5 The Mathematics of Getting Around

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 5 The Mathematics of Getting Around 5.1 Euler Circuit Problems 5.2 What Is a Graph? 5.3 Graph Concepts and Terminology 5.4 Graph Models 5.5 Euler’s Theorems 5.6 Fleury’s Algorithm 5.7 Eulerizing Graphs

  2. Terminology Every branch of mathematics has its own peculiar jargon, and graph theory hasmore than its share. In this section we will introduce some important conceptsand terminology that we will need in the next three chapters.

  3. Example 5.10 Adjacency We say that two vertices in a graph are adjacent if they are joined by an edge. In thegraph shown in Fig. 5-10, vertices A and B are adjacent and so are vertices B and C.Vertices C and D are not adjacent, and neither are vertices A and E. Because of theloop EE, we say that vertex E is adjacent to itself.

  4. Example 5.10 Adjacency We can also speak of edges being adjacent. Two edges are said to be adjacent ifthey share a common vertex. In the graph shown in Fig. 5-10, AB and BF are adjacentedges and so are AB and AD. On the other hand, AB and DE are not adjacent.

  5. Example 5.11 Degree of a Vertex The degree of a vertex is the number of edges meeting at that vertex. A loop countstwice toward the degree. We will use the notation deg(V) to denote the degree of vertex V. In Fig. 5-10 the degrees of the vertices are as follows: deg(A) = 3, deg(B) = 5,deg(C) = 3, deg(D) = 2, deg(E) = 4, deg(F) = 3, deg(G) = 1, and deg(H) = 1.

  6. Example 5.11 Degree of a Vertex Because distinguishing vertices with an even degree from vertices with anodd degree is going to be critical later on, we will often refer to vertices as evenvertices or odd vertices, depending on their degree. The graph in Fig. 5-10 has twoeven vertices (D and E) and six odd vertices (all the others).

  7. Example 5.12 Paths and Circuits Paths and circuits both describe “trips” along the edges of a graph. The only real difference between a path and a circuit is that a circuit is a “closed” trip (the trip ends backat the starting point), whereas a path is an “open” trip (the starting and ending pointsare different). In this context, by a “trip”(be it a path or a circuit), we mean a sequenceof adjacent edges with the property that an edge can be traveled just once.

  8. Example 5.12 Paths and Circuits The standard way to describe a path or a circuit is by listing the vertices in orderof travel. Here are a few examples of paths and circuits using the graph in Fig.5-10: ■A, B, E, D is a path from vertex A to vertex D. The edges of this path in orderof travel are AB,BE, and ED. The length of the path (i.e., the number ofedges in the path) is 3.

  9. Example 5.12 Paths and Circuits ■A,B,C, A,D,E is a path of length 5 from A to E. This path visits vertex Atwice (that’s fine), but no edge is repeated. ■A,B,C,B,E is another path from A to E. This path is only possible becausethere are two edges connecting B and C.

  10. Example 5.12 Paths and Circuits ■A,C,B,E,E,D is a path of length 5 from A to D. One of the edges in thispath is the loop EE. ■A, B, C, B, A, D is not a path because the edge AB is traveled twice.

  11. Example 5.12 Paths and Circuits ■A, B, C, B, E, E, D, A, C, B is not a path because the edge BC is traveled threetimes. (The first two passes are fine, since there are two edges connecting Band C, but a third pass requires that we travel through one of those edges asecond time.)

  12. Example 5.12 Paths and Circuits ■B, C, B is a circuit of length 2. Circuits of length 2 are possible when there aremultiple edges. ■The EE loop is considered to be a circuit of length 1.

  13. Example 5.13 Connectedness and Bridges A graph is connected if you can get from any vertex to any other vertex along apath. Essentially, this means that the graph is all in one piece. The graph shown inFig. 5-11(a) is a connected graph.

  14. Example 5.13 Connectedness and Bridges Whereas the graphs shown in Fig. 5-11(b) and(c) are disconnected graphs.

  15. Example 5.13 Connectedness and Bridges A disconnected graph is made up of separate connected components. Figure 5-11(b) shows a disconnected graph with two components,

  16. Example 5.13 Connectedness and Bridges and Fig. 5-11(c) shows a disconnected graph with three components (anisolated vertex is a component in and of itself).

  17. Example 5.13 Connectedness and Bridges Notice that Fig. 5-11(b) is the graph we get when we remove the edge BF from thegraph in Fig. 5-11(a).

  18. Example 5.13 Connectedness and Bridges This illustrates how the removal of just one edge from a connected graph can sometimes make the graph disconnected. An edge whose removalmakes a connected graph disconnected is called a bridge. Thus, we say that BF is abridge in the graph in Fig. 5-11(a). The graph has two other bridges–FG and FH.

  19. Example 5.14 Euler Paths and Euler Circuits An Euler path in a connected graph is a path that travels through all the edgesof the graph. Being a path, edges can only be traveled once, so in an Euler pathevery edge of the graph is traveled once and only once. By definition, only aconnected graph can have Euler paths, but, of course, just being connected isnot enough.

  20. Example 5.14 Euler Paths and Euler Circuits Much like Euler paths, we can also define Euler circuits. An Euler circuit is a circuit that travels through every edge of a connected graph. Being a circuit, the trip mustend where it started and travel along every edge of the graph once and only once. A connected graph cannot have both an Euler path and an Euler circuit–itcan have one or the other or neither.

  21. Example 5.14 Euler Paths and Euler Circuits In the graph shown in Fig. 5-12(a), the pathC, A, B, E, A, D, B, C, D travels along each of the eight edges of the graph and istherefore an Euler path. This graph has several other Euler paths–you may wantto try to find one that does not start at C.

  22. Example 5.14 Euler Paths and Euler Circuits In the graph shown in Fig. 5-12(b), the circuit C, A,B,E, A,D,B,C,D,F,Cis an Euler circuit (one of many). You may want to find a different one. (Remember that traveling the edges in the same sequence but using a different startingpoint is cheating–you are rewriting the same circuit.)

  23. Example 5.14 Euler Paths and Euler Circuits The graph shown in Fig. 5-12(c) has neither an Euler path nor an Euler circuit.(We will learn how to tell in Section 5.5.)

More Related