Presentation is loading. Please wait.

Presentation is loading. Please wait.

Graph Theory Hamilton Paths and Hamilton Circuits.

Similar presentations


Presentation on theme: "Graph Theory Hamilton Paths and Hamilton Circuits."— Presentation transcript:

1 Graph Theory Hamilton Paths and Hamilton Circuits

2 WHAT YOU WILL LEARN Hamilton paths and Hamilton circuits Traveling salesman problem Brute force method Nearest neighbor method

3 Definitions A Hamilton path is a path that contains each vertex of a graph exactly once. A Hamilton circuit is a path that begins and ends at the same vertex and passes through all other vertices of the graph exactly one time.

4 Example: Hamilton Path Graph (a) shown has Hamilton path A, B, C, E, D. The graph also has Hamilton path C, B, A, D, E. Can you find some others? Graph (b) shown has Hamilton path A, B, C, F, H, E, G, D. The graph also has Hamilton path G, D, E, H, F, C, B, A. Can you find some others?

5 Example: Hamilton Circuit Graph (a) shown has Hamilton circuit A, B, D, G, E, H, F, C, A. Graph (b) shown has Hamilton circuit A, B, C, E, D, A. Can you find another?

6 Definition A complete graph is a graph that has an edge between each pair of its vertices.

7 Example: Finding Hamilton Circuits Determine a Hamilton circuit for the graph shown. One solution is A, G, F, E, C, D, B, A A B C E F G D

8 Number of Unique Hamilton Circuits in a Complete Graph The number of unique Hamilton circuits in a complete graph with n vertices is (n  1)!, where (n  1)! = (n  1)(n  2)(n  3)…(3)(2)(1)

9 Example: Number of Hamilton Circuits How many unique Hamilton circuits are there in a complete graph with the following number of vertices? a) 4b) 9 a) 4 = (4  1)! = 321 = 6 b) 9 = (9  1)! = 87654321 = 40,320

10 The Brute Force Method of Solving Traveling Salesman Problems To determine the optimal solution: 1.Represent the problem with a complete, weighted graph. 2.List all possible Hamilton circuits for this graph. 3.Determine the cost (or distance) associated with each of these Hamilton circuits. 4.The Hamilton circuit with the lowest cost (or shortest distance) is the optimal solution.

11 Example: Brute Force Method Find a minimum Hamilton circuit for the complete, weighted graph shown. List all the Hamilton circuits. Since there are 4 vertices there are (4  1)! = 3! = 6 possible circuits. AB CD 6 12 8 2 2 6

12 Example: Brute Force Method continued 2661262A, D, C, B, A 2421282A, D, B, C, A 226862A, C, D, B, A 2 2 2 Fourth Leg 248122A, C, B, D, A 22686A, B, D, C, A 266126A, B, C, D, A TotalThird Leg Second Leg First Leg Circuit The minimum amount for the graph would be 22. AB CD 6 12 8 2 2 6

13 Nearest Neighbor Method of Determining an Approximate Solution to a Traveling Salesman Problem To approximate a optimal solution: 1. Represent the problem with a complete, weighted graph. 2.Identify the starting vertex. 3.Of all the edges attached to the starting vertex, choose the edge that has the smallest weight. This edge is generally either the shortest distance or the lowest cost. Travel along this edge to the second vertex.

14 Nearest Neighbor Method of Determining an Approximate Solution to a Traveling Salesman Problem (continued) 4.At the second vertex, choose the edge that has the smallest weight that does not lead to a vertex already visited. Travel along this edge to the third vertex. 5.Continue this process, each time moving along the edge with the smallest weight until all vertices are visited. 6.Travel back to the original vertex.

15 Example: Nearest Neighbor An appliance repair man must repair four appliances at the locations shown in the graph on the next slide. The estimated travel time (in minutes) is shown between the four locations. The repair man wants to visit the four locations in an order that takes the least amount of time. Use the nearest neighbor algorithm to find an approximate solution to the problem.

16 Example: Nearest Neighbor (continued) Choose a starting vertex. Let’s choose vertex A. Choose the edge that has the smallest weight. Either AD or AB, lets choose AD (8). At D choose the edge that has the smallest weight DE (4). E start here 2 nd vertex C B A D 188 13 4 7 6 9 7 3 8

17 Example: Nearest Neighbor (continued) Continue moving along the edge with the smallest weight. Circuit would be: A, D, E, B, C, A 8 + 4 + 3 + 9 + 13 = 37 This route would take about 37 minutes. start here 2 nd vertex C B A E D 188 13 4 7 6 9 7 3 8

18 Example: Nearest Neighbor (continued) Other circuits and weights. 3 + 7 + 6 + 13 + 18 = 47E, B, D, C, A, EE 4 + 3 + 8 + 13 + 6 = 34 D, E, B, A, C, D D 6 + 4 + 3 + 8 + 13 = 34 C, D, E, B, A, C C 3 + 4 + 6 + 13 + 8 = 34B, E, D, C, A, BB Total WeightCircuitStarting Vertex

19 In the following graph, determine a Hamilton path. a.HGEDABCFBE b.GEDABCFH c.HGEDABCF d.FBADEGH

20 In the following graph, determine a Hamilton path. a.HGEDABCFBE b.GEDABCFH c.HGEDABCF d.FBADEGH

21 Alicia lives in Washington, D.C. and wants to take a road trip to visit her friends from college who live in the following cities: New York, Boston, Philadelphia, Dover, and Baltimore. How many ways can Alicia visit each city and return home to Washington, D.C.? a.120b.60 c.25d.24

22 Alicia lives in Washington, D.C. and wants to take a road trip to visit her friends from college who live in the following cities: New York, Boston, Philadelphia, Dover, and Baltimore. How many ways can Alicia visit each city and return home to Washington, D.C.? a.120b.60 c.25d.24

23 Robert decides to take a walk to run his errands. He needs to walk to the drug store, the post office, and the dry cleaners. The distances between these four locations are as follows: home (H) to the drug store (D) is 0.6 miles, home to the post office (P) is 0.5 miles, home to the dry cleaners (C) is 0.7 miles, the drug store to the post office is 0.2 miles, the drug store to the dry cleaner is 0.5 miles, and the dry cleaner to the post office is 0.2 miles. H to D: 0.6H to P: 0.5H to C: 0.7 D to P: 0.2D to C: 0.5C to P: 0.2

24 Represent this traveling salesman problem with a complete, weighted graph. H to D: 0.6H to P: 0.5H to C: 0.7 D to P: 0.2D to C: 0.5C to P: 0.2 a. c. b. d. 0.5 0.2 0.6 0.7 0.2 0.6 0.5 0.2 0.6 0.7 0.2

25 Represent this traveling salesman problem with a complete, weighted graph. H to D: 0.6H to P: 0.5H to C: 0.7 D to P: 0.2D to C: 0.5C to P: 0.2 a. c. b. d. 0.5 0.2 0.6 0.7 0.2 0.5 0.2 0.6 0.7 0.2 0.6

26 Use the brute force method to determine the shortest route for Robert to visit each location once and return home. What is the distance when using this route? a.HDPCH; 1. 7 miles b.HPDCH; 1.7 miles c.HPCD; 1.2 miles d.HCDPH; 1.7 miles

27 Use the brute force method to determine the shortest route for Robert to visit each location once and return home. What is the distance when using this route? a.HDPCH; 1. 7 miles b.HPDCH; 1.7 miles c.HPCD; 1.2 miles d.HCDPH; 1.7 miles

28 Use the nearest neighbor method to approximate the optimal route for Robert to visit each location once and return home. What is the distance when using this route? a.HDPCH; 1. 7 miles b.HPDCH; 1.7 miles c.HPCD; 1.2 miles d.HCDPH; 1.7 miles

29 Use the nearest neighbor method to approximate the optimal route for Robert to visit each location once and return home. What is the distance when using this route? a.HDPCH; 1. 7 miles b.HPDCH; 1.7 miles c.HPCD; 1.2 miles d.HCDPH; 1.7 miles


Download ppt "Graph Theory Hamilton Paths and Hamilton Circuits."

Similar presentations


Ads by Google