The table given below provides the shipping costs and supply available at each source. Find the minimum-cost shipping solution for the transportation problem. Provide a table of shipping quantities and the minimum value for the objective function for the following methods:

* The northwest-corner rule
* The intuitive lowest-cost method

What is the difference in costs for the two methods? Which solution do you believe is better?

If the cost per unit from Source 2 to Destination 2 is increased from $3 per unit to $6 per unit, does the solution change? If so, how?
Costs(in$)Destination1 Destination2 Supply
Source 1

6

10

20
Source 2

8

3

30
Source 3

4

6

15
Source 4

12

11

20
Source 5

7

9

25
Demand

70

40

110\110

To find the minimum-cost shipping solution for the transportation problem, we can use two methods: the northwest-corner rule and the intuitive lowest-cost method.

1. Northwest-corner rule:
- Start in the northwest corner of the table and allocate as much as possible to the lowest-cost cell.
- Repeat the process, moving to the next row or column with available supply or demand, and allocate to the lowest-cost cell.
- Continue until all supply and demand are satisfied.

For the given problem, the initial table looks like this:

D1 D2 Supply
S1 6 10 20
S2 8 3 30
S3 4 6 15
S4 12 11 20
S5 7 9 25
Demand 70 40 110

Using the northwest-corner rule, we start by allocating 20 units from Source 1 to Destination 1, 30 units from Source 2 to Destination 1, and 20 units from Source 2 to Destination 2. The table then becomes:

D1 D2 Supply
S1 0 10 0
S2 18 3 10
S3 4 6 15
S4 12 11 20
S5 7 9 25
Demand 30 30 60

Next, we allocate 30 units from Source 1 to Destination 2. The table becomes:

D1 D2 Supply
S1 0 10 0
S2 18 0 10
S3 4 6 15
S4 12 11 20
S5 7 9 25
Demand 30 0 30

We now allocate the remaining supply and demand using the lowest-cost method.

2. Intuitive lowest-cost method:
- Start with the lowest-cost cell and allocate as many units as possible, considering the supply and demand constraints.
- Repeat the process, moving to the next lowest-cost cell, until all supply and demand is satisfied.

Using the intuitive lowest-cost method, we start by allocating 10 units from Source 2 to Destination 1. The table becomes:

D1 D2 Supply
S1 0 10 0
S2 8 0 0
S3 4 6 15
S4 12 11 20
S5 7 9 25
Demand 30 0 30

Next, we allocate 20 units from Source 3 to Destination 1. The table becomes:

D1 D2 Supply
S1 0 10 0
S2 8 0 0
S3 0 6 0
S4 12 11 20
S5 7 9 25
Demand 10 0 30

We continue allocating units until all supply and demand are satisfied.

The final shipping quantities and the minimum value for the objective function for each method are as follows:

Northwest-corner rule:
D1 D2
S1 20 10
S2 10 0
S3 0 5
S4 0 30
S5 30 0

Objective function value: $990

Intuitive lowest-cost method:
D1 D2
S1 20 10
S2 0 0
S3 10 0
S4 20 10
S5 20 20

Objective function value: $800

The difference in costs for the two methods is $990 - $800 = $190. The intuitive lowest-cost method yields a lower cost solution.

If the cost per unit from Source 2 to Destination 2 is increased from $3 per unit to $6 per unit, the solution may change. This change will increase the cost for all allocations from Source 2 to Destination 2, making it less favorable. The algorithm will likely allocate fewer units from Source 2 to Destination 2, possibly utilizing other sources instead to minimize overall cost. The specific changes to the solution will depend on the new costs and constraints of supply and demand.