Logistics and Transportation Management due in 72 hrs

profileaural1018
HW2-1.pdf

SCM447: Logistics and Transportation Management

Fall 2021 Homework 2

Due: November 14, 2021, 11:59pm Part a: (2.5 points)

Logistics is important not only for providers of goods, but also for providers of services. Transportation is often the primary concern for companies that provide on-site or in-person services. One such example is a traveling circus like Ringling Brothers and Barnum & Bailey, “The Greatest Show On Earth”.

The Ringling Brothers and Barnum & Bailey circus “cheats” by actually having two touring circuses, the “red” circus and the “blue” circus, which tour the country simultaneously and thus are able to cover more cities.

In this homework, we will be looking at the travels of a fictional circus with just a single touring unit. This Atlanta-based circus plans to visit 24 cities, listed in the table below. After visiting all of the cities, the circus will return to Atlanta.

As one might imagine, the travel costs associated with a circus are quite high. Special vehicles, equipment, foods, etc. are needed to transport the tigers, elephants and other circus animals. Other equipment, such as high-wire apparatus and set construction materials, are also expensive to transport. Therefore, the circus would like to minimize its transportation costs during its national tour. Of course, a benefit of minimizing travel time is that the circus will have more time to perform, and thus generate more revenue. Because the special circus vehicles can only travel on major highways, we can assume a constant speed for every highway. Therefore, minimizing travel time is equivalent to minimizing travel distance in this case.

The goal of the circus is to find a good tour of all the cities; that is, to find a path that visits each city and then returns to its starting point. Of course, some tours are shorter than others, and the optimal tour is the one which covers the least total distance.

Atlanta, GA Detroit, MI Lincoln, NE Phoenix, AZ Boston, MA Indianapolis, IN Minneapolis, MN Pittsburgh, PA Buffalo, NY Jacksonville, FL Nashville, TN Portland, OR Charlotte, NC Kansas City, MO New Orleans, LA Salt Lake City, UT Chicago, IL Las Vegas, NV Oakland, CA San Antonio, TX Cleveland, OH Lexington, KY Oklahoma City, OK San Diego, CA

The raw city-to-city distance data (HW2data.xls) can be found in an Excel spreadsheet on Canvas. All distances are symmetric; the distance from city A to city B is the same as the distance from city B to city A.

1. Use your own intuition to get the shortest-distance circus tour you can find. Do

not use any of the algorithms from class - don’t worry, you’ll have plenty of opportunity for that in the rest of the homework, and your grades will not depend on the quality of the solution you find in this part. For now, just try using your intuition and logic. Draw your best answer clearly on a copy of the map (HW1map.pdf), and give the total distance.

2. Using the distances provided on the website (do not just go by eye, as the graphical plot is not to scale), use the traditional Nearest Neighbor heuristic from class to find the best route for the circus to take. Draw your answer clearly on a copy of the map, provide a list of the edges in the order that you choose them, and give the total distance.

Part B: (4.5 points)

3. A truck stationed at the depot (location 0) is to serve the demand of sales points 1 through 7, depicted in Figure 1, using a single tour. The distances between the depot and the sales points are given in Table 1. The network is symmetric. (3 points)

0 1 2 3 4 5 6 7

0 - 27.9 54.6 42.0 56.5 37.0 30.9 34.1 1 - - 67.2 25.6 28.8 48.4 57.4 21.6 2 - - - 60.5 95.8 18.8 60.4 52.1 3 - - - - 39.4 43.1 70.2 12.2 4 - - - - - 77.2 84.5 44.4 5 - - - - - - 51.6 34.0 6 - - - - - - - 59.3 7 - - - - - - - -

Table 1: Distances between depot and sales points

Figure 1: Geographic Locations of Depot and Sales Points

2

3 5

1 0

4 6

7

2

4a) The first step of Christofides heuristic is to find the minimum spanning tree on the network. Use Kruskal’s algorithm to identify the MST on the network, and draw your solution on the copy of the network provided. Also, provide a list of the edges that you added to the MST, in the order that you added them.

Figure 2: Minimum spanning tree List of edges added:

4b) The second step of Christofides heuristic is to identify the set of nodes S with odd degree with respect to the minimum spanning tree, and then find the minimum cost perfect node matching, W∗, of the nodes in S. In the minimum spanning tree you identified in (a), there should be 6 nodes with odd degree with respect to the minimum spanning tree: S = {1, 2, 3, 4, 6, 7}. If this is not the case, go back and rework your solution before proceeding. One of the pairs in the minimum cost perfect matching W∗ is (1,4). Determine the two additional pairs included in W∗, and show your work.

2

3 5

1 0

4 6

7

3

4c) Draw the minimum spanning tree again on the network below, but this time, also include the arcs in W∗ as dotted lines. Then, specify a tour T C of the nodes that uses each arc in your diagram exactly once. Note that in order to use each arc exactly once, you will visit some nodes more than once in the tour T C .

Figure 3: Minimum spanning tree with perfect node matching Tour using each arc in this diagram:

4d) Complete Christofides heuristic by introducing shortcuts to avoid revisiting nodes in T C , such that a feasible solution to this instance of TSP results. Draw your TSP tour on the diagram provided. Indicate the cost of the TSP tour.

Figure 4: TSP tour Cost of TSP tour:

2

3 5

1 0

4 6

2

3 5

1 0

4 6

7

7

4

5

4. An online book retailer packs books into boxes, and the retailer has a contract with

a shipper specifying that any box weighing less than or equal to 20 pounds can be shipped for $8 per box. Because the boxes are relatively large, and books relatively small, it is safe to assume that the volume of the boxes is not a constraint for any order. Instead, assume that the 20- pound weight is the relevant constraint on each box. Obviously, one book cannot be split across separate boxes. An order is received from an avid reader in Fayetteville, AR, for the books specified in Table 3. (1.5 points)

Table 2: Book weights (lbs)

5a) What is lower bound on the shipment cost for this order?

5b) Use the best fit bin packing heuristic to pack the books into boxes, and process the books in the order they are indexed in Table 3 above. Specify the cost of the associated shipment.

6

6

5c) Theoretically, offline bin packing heuristics have better performance than online bin packing heuristics. In this case, we do have access to all item sizes when starting a heuristic, so it should be advantageous to use an offline heuristic. Use the first fit decreasing bin packing heuristic to pack the books into boxes, and specify the cost of the associated shipment.