1 / 46

Computational Methods for Management and Economics Carla Gomes

Computational Methods for Management and Economics Carla Gomes. Module 8a The transportation model. The transportation and assignment problems. Special types of linear programming problems.

wood
Download Presentation

Computational Methods for Management and Economics Carla Gomes

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. Computational Methods forManagement and EconomicsCarla Gomes Module 8a The transportation model

  2. The transportation and assignment problems • Special types of linear programming problems. • The structure of these problems leads to algorithms – streamlined versions of the simplex method - more efficient than the standard simplex method.

  3. The transportation problem

  4. Prototype example : P&T Company • Main product of P&T Company – canned peas • 3 canneries • 4 distribution centers • Shipping costs – major expense in management • GOAL – minimize shipping costs

  5. P&T Company Distribution Problem

  6. Shipping Data

  7. Current Shipping Plan

  8. Shipping Cost per Truckload Total shipping cost = 75($464) + 5($352) + 65($416) + 55($690) + 15($388) + 85($685) = $165,595

  9. Terminology for a Transportation Problem

  10. Characteristics of Transportation Problems • The Requirements Assumption • Each source has a fixed supply of units, where this entire supply must be distributed to the destinations. • Each destination has a fixed demand for units, where this entire demand must be received from the sources. • The Feasible Solutions Property • A transportation problem will have feasible solutions if and only if the sum of its supplies equals the sum of its demands. • The Cost Assumption • The cost of distributing units from any particular source to any particular destination is directly proportional to the number of units distributed. • This cost is just the unit cost of distribution times the number of units distributed.

  11. The Transportation Model Any problem (whether involving transportation or not) fits the model for a transportation problem if: • It can be described completely in terms of a table that identifies all the sources, destinations, supplies, demands, and unit costs, and • satisfies both the requirements assumption and the cost assumption. The objective is to minimize the total cost of distributing the units.

  12. The P&T Co. Transportation ProblemTransportation Tableau

  13. Network Representation This graph is “bipartite.” That is, the nodes are partitioned into two parts and arcs have one endpoint in each part.

  14. The Transportation Problem is an LP Decision Variable: Since we have to determine how much electricity is sent from each plant to each city; xij = Amount of commodity produced at source i and sent to destination j x13 = truckloads produced at cannery 1 and sent to warehouse 3

  15. Network Representation x11 x21 x31 x12 x22 x32 x13 x23 x33 x24 x14 x34 Shipping cost – source i destination j This graph is “bipartite.” That is, the nodes are partitioned into two parts and arcs have one endpoint in each part.

  16. Objective function Since we want to minimize the total cost of shipping from canneries to wharehouses; Minimize Z = $464x11 + $513x12 + $654x13 + $867x14 + $352x21 + $416x22 + $690x23 + $791x24 + $995x31 + $682x32 + $388x33 + $685x34

  17. Supply Constraints Since each supply point has a limited production capacity; Cannery 1: x11 + x12 + x13 + x14 = 75Cannery 2: x21 + x22 + x23 + x24 = 125 Cannery 3: x31 + x32 + x33 + x34 = 100

  18. Demand Constraints Since each supply point has a limited production capacity; Warehouse 1: x11 + x21 + x31 = 80Warehouse 2: x12 + x22 + x32 = 65Warehouse 3: x13 + x23 + x33 = 70Warehouse 4: x14 + x24 + x34 = 85

  19. Sign Constraints Since a negative amount of truckloads can not be shipped all Xij’s must be non negative; Xij >= 0 (i= 1,2,3; j= 1,2,3,4)

  20. The Transportation Problem is an LP Let xij = the number of truckloads to ship from cannery i to warehouse j (i = 1, 2, 3; j = 1, 2, 3, 4)Minimize Cost = $464x11 + $513x12 + $654x13 + $867x14 + $352x21 + $416x22 + $690x23 + $791x24 + $995x31 + $682x32 + $388x33 + $685x34subject to Cannery 1: x11 + x12 + x13 + x14 = 75 Cannery 2: x21 + x22 + x23 + x24 = 125 Cannery 3: x31 + x32 + x33 + x34 = 100 Warehouse 1: x11 + x21 + x31 = 80 Warehouse 2: x12 + x22 + x32 = 65 Warehouse 3: x13 + x23 + x33 = 70 Warehouse 4: x14 + x24 + x34 = 85andxij ≥ 0 (i = 1, 2, 3; j = 1, 2, 3, 4)

  21. The Transportation Problem is an LP with special matrix A structure Let xij = the number of truckloads to ship from cannery i to warehouse j (i = 1, 2, 3; j = 1, 2, 3, 4)Minimize Cost = c11x11 + c12x12 + c13x13 + c14x14 + c21x21 + c22x22 + c23x23 + c24x24 + c31x31 + c32x32 + c33x33 + c34x34subject to Source1: x11 + x12 + x13 + x14 = supply1 Source 2: x21 + x22 + x23 + x24 = supply2 Source 3: x31 + x32 + x33 + x34 = supply3 Destination 1: x11 + x21 + x31 = demand1 Destination 2: x12 + x22 + x32 = demand2 Destination 3: x13 + x23 + x33 = demand3 Destination 4: x14 + x24 + x34 = demand4andxij ≥ 0 (i = 1, 2, 3; j = 1, 2, 3, 4)

  22. b 1 2 c a e 4 3 d A Directed Graph The Node-Arc Incidence Matrix (for directed graphs) a b c d e 1234 • Have a row for each node • Have a column for each arc • Put a 1 in row i- column j if arc j starts at node i. • Put a -1 in row i- column j if arc j ends at node i. What would happen if arc (4,2) became arc (2,4)?

  23. On Incidence Matrices • If the constraint matrix for a linear program is a node-arc incidence matrix (at most one 1 and at most one –1 per column), then the linear program solves in integer optima. • Node arc incidence matrix shows up in Linear Programs. The constraint matrix of a transportation problem is a node-arc incidence matrix in disguise.

  24. The Transportation Problem is an LP Let xij = the number of truckloads to ship from cannery i to warehouse j (i = 1, 2, 3; j = 1, 2, 3, 4)Minimize Cost = $464x11 + $513x12 + $654x13 + $867x14 + $352x21 + $416x22 + $690x23 + $791x24 + $995x31 + $682x32 + $388x33 + $685x34subject to Cannery 1: x11 + x12 + x13 + x14 = 75 Cannery 2: x21 + x22 + x23 + x24 = 125 Cannery 3: x31 + x32 + x33 + x34 = 100 Warehouse 1: -x11 - x21 - x31 = -80 Warehouse 2: - x12 - x22 -x32 = -65 Warehouse 3: -x13 - x23 - x33 = -70 Warehouse 4: -x14 - x24 - x34 = -85andxij ≥ 0 (i = 1, 2, 3; j = 1, 2, 3, 4)

  25. The Node-Arc Incidence Matrix:Transportation Problem is an LP 1 1 1 1 1 1 1 1 1 1 1 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1

  26. Spreadsheet Formulation Note: excel does not have a specialized simplex algorithm to solve transportation problems.

  27. Integer Solutions Property As long as all its supplies and demands have integer values, any transportation problem with feasible solutions is guaranteed to have an optimal solution with integer values for all its decision variables. Therefore, it is not necessary to add constraints to the model that restrict these variables to only have integer values.

  28. On the integrality Property • The fact that solutions to the transportation problem are integral is an amazing property. • In general, solutions to IP are fractional. • But solutions to the transportation problem are integral. • Structure of the matrix of technological coefficients (A matrix) and the fact that the RHS are integral – in general, if there is at most one 1 and at most one –1 in any column of the constraint matrix, then every basic feasible solution is integer (so long as RHS is integral.) • For many applications, we want to restrict variables to be integer valued.

  29. General Description of a Transportation Problem A set of m supply points from which a good is shipped. Supply point i can supply at most si units. A set of n demand points to which the good is shipped. Demand point j must receive at least di units of the shipped good. Each unit produced at supply point i and shipped to demand point j incurs a variable cost of cij.

  30. Features of this transportation problem • The constraint matrix is (or can be made to be) the node arc incidence matrix of the network • If supplies/demands are integral, then the flows are also integral. • If the total supply is equal to the total demand, then all supply and demand constraints hold with equality • Very efficient special purpose solution techniques exist • Applications to shipment of goods

  31. Features of this transportation problem • The constraint matrix is (or can be made to be) the node arc incidence matrix of the network • If supplies/demands are integral, then the flows are also integral. • If the total supply is equal to the total demand, then all supply and demand constraints hold with equality • Very efficient special purpose solution techniques exist • Applications to shipment of goods

  32. xij = number of units shipped from supply point i to demand point j

  33. Balanced Transportation Problem If Total supply equals to total demand, the problem is said to be a balanced transportation problem:

  34. Balancing a TP if total supply exceeds total demand If total supply exceeds total demand, we can balance the problem by adding dummy demand point. Since shipments to the dummy demand point are not real, they are assigned a cost of zero.

  35. Balancing a transportation problem if total supply is less than total demand If a transportation problem has a total supply that is strictly less than total demand the problem has no feasible solution. There is no doubt that in such a case one or more of the demand will be left unmet. Generally in such situations a penalty cost is often associated with unmet demand and as one can guess this time the total penalty cost is desired to be minimum

  36. Distribution System at Proctor and Gamble • Proctor and Gamble needed to consolidate and re-design their North American distribution system in the early 1990’s. • 50 product categories • 60 plants • 15 distribution centers • 1000 customer zones • Solved many transportation problems (one for each product category). • Goal: find best distribution plan, which plants to keep open, etc. • Closed many plants and distribution centers, and optimized their product sourcing and distribution location. • Implemented in 1996. Saved $200 million per year. For more details, see 1997 Jan-Feb Interfaces article, “Blending OR/MS, Judgement, and GIS: Restructuring P&G’s Supply Chain”, downloadable from course web site.

  37. Balancing a TP if total supply exceeds total demand Dummy Destination

  38. Northern Airplane (Production Scheduling) Northern Airplane Company produces commercial airplanes. The last stage in production is to produce the jet engines and install them. • The company must meet the delivery deadline indicated in column 2. An option is to produce some engines one month or more before they are scheduled for installation and store them. • Production and storage costs vary from month to month. Question: How many engines should be produced in each of the four months so that the total of the production and storage costs will be minimized? (*) storage cost is incurred at the end of the month for just those engines that are being held over to the next month;

  39. Source i - production of jet engines in month i (i = 1,2 ,3 4); • Destination j – installation of jet engines in month j (j = 1,2 ,3 4) • xij = number of engines produce in month i to be installed in month j • cij = cost associated with each unit of xij Cost per unit for production + storage i < j i >j ???

  40. Northern Airplane (Production Scheduling) Cost per unit distributed Question: How many engines should be produced in each of the four months so that the total of the production and storage costs will be minimized? (*) storage cost is incurred at the end of the month for just those engines that are being held over to the next month;

  41. Transportation Tableau Cost per unit distributed (*) the dummy destination can be seen as a slack variable that represents the unused production capacity. Cost is zero because it is the cost of distributing to a fictional destination. Note that it would be inappropriate to assign M since we do not want to force the corresponding values to be zero. In fact these values need to sum 30.

  42. Balancing a transportation problem if total supply is less than total demand Dummy Source

  43. Metro Water (Distributing Natural Resources) Metro Water District is an agency that administers water distribution in a large goegraphic region. The region is arid, so water must be brought in from outside the region. • Sources of imported water: Colombo, Sacron, and Calorie rivers. • Main customers: Cities of Berdoo, Los Devils, San Go, and Hollyglass. Question: How much water should Metro take from each river, and how much should they send from each river to each city?

  44. What’s the problem with the previous table to look like a transportation tableau? • It is not clear what the demands are at the destinations The amount to be received at each destination is a decision variable, with an upper bound and a lower bound – in the transportation model it should be a constant. • Also, here we have excess demand  dummy source

  45. What’s the problem with the previous table to look like a transportation tableau? Hollyglass  upper-bound = Total supply – min requested = (50 + 60 +50) – (30 + 70 + 0) = 60 How do we solve the problem of having constant demands?

  46. Metro Water Transportation Tableau

More Related