Step 1: Understanding the Concept:
This question asks for the difference in total cost between two initial feasible solutions for a transportation problem: the North-West Corner Method and the Least-Cost Method. First, we must ensure the problem is balanced (Total Supply = Total Demand).
Total Supply = 20 + 10 + 50 + 30 + 40 = 150.
Total Demand = 60 + 10 + 20 + 60 = 150.
Since Total Supply equals Total Demand, the problem is balanced.
Step 2: Key Formula or Approach:
North-West Corner (NWC) Method: Start allocating from the top-left cell (North-West corner) of the table. Allocate the minimum of the supply for that row and the demand for that column. Move to the next cell to the right if the supply is exhausted, or to the cell below if the demand is met. Repeat until all supply and demand are satisfied.
Least-Cost Method (LCM): Find the cell with the minimum cost in the entire table. Allocate the maximum possible amount (minimum of supply and demand). Cross out the satisfied row or column. Repeat the process for the remaining cells until all allocations are made.
Step 3: Detailed Explanation or Calculation:
Calculation of \(C_N\) (North-West Corner Method):
Cell (1,P): min(20, 60) = 20. Supply for row 1 is exhausted. Remaining demand for P is 40.
Cell (2,P): min(10, 40) = 10. Supply for row 2 is exhausted. Remaining demand for P is 30.
Cell (3,P): min(50, 30) = 30. Demand for column P is met. Remaining supply for row 3 is 20.
Cell (3,Q): min(20, 10) = 10. Demand for column Q is met. Remaining supply for row 3 is 10.
Cell (3,R): min(10, 20) = 10. Supply for row 3 is exhausted. Remaining demand for R is 10.
Cell (4,R): min(30, 10) = 10. Demand for column R is met. Remaining supply for row 4 is 20.
Cell (4,S): min(20, 60) = 20. Supply for row 4 is exhausted. Remaining demand for S is 40.
Cell (5,S): min(40, 40) = 40. Supply for row 5 is exhausted. Demand for S is met.
The total cost \(C_N\) is:
\[ C_N = (20 \times 13) + (10 \times 10) + (30 \times 3) + (10 \times 19) + (10 \times 5) + (10 \times 7) + (20 \times 15) + (40 \times 7) \]
\[ C_N = 260 + 100 + 90 + 190 + 50 + 70 + 300 + 280 = 1340 \]
Calculation of \(C_L\) (Least-Cost Method):
Min cost is 0 at cell (5,Q). Allocate min(40, 10) = 10. Demand for Q is met. Remaining supply for row 5 is 30.
Min cost is 1 at cell (5,R). Allocate min(30, 20) = 20. Demand for R is met. Remaining supply for row 5 is 10.
Min cost is 3 at cell (3,P). Allocate min(50, 60) = 50. Supply for row 3 is exhausted. Remaining demand for P is 10.
Min cost is 4 at cell (4,P). Allocate min(30, 10) = 10. Demand for P is met. Remaining supply for row 4 is 20.
Now the remaining costs are in rows 1, 2, 4, 5 and columns S.
Min cost is 7 at cell (5,S). Allocate min(10, 60) = 10. Supply for row 5 is exhausted. Remaining demand for S is 50.
Min cost is 9 at cell (1,S). Allocate min(20, 50) = 20. Supply for row 1 is exhausted. Remaining demand for S is 30.
Min cost is 15 at cell (4,S). Allocate min(20, 30) = 20. Supply for row 4 is exhausted. Remaining demand for S is 10.
Last cell is (2,S). Allocate the remaining 10. Supply for row 2 is exhausted. Demand for S is met.
The total cost \(C_L\) is:
\[ C_L = (10 \times 0) + (20 \times 1) + (50 \times 3) + (10 \times 4) + (10 \times 7) + (20 \times 9) + (20 \times 15) + (10 \times 20) \]
\[ C_L = 0 + 20 + 150 + 40 + 70 + 180 + 300 + 200 = 960 \]
Step 4: Final Answer:
We need to find the value of \(C_N - C_L\).
\[ C_N - C_L = 1340 - 960 = 380 \]
Step 5: Why This is Correct:
The calculations for both the North-West Corner Method and the Least-Cost Method are performed systematically according to their respective algorithms. The resulting total costs are \(C_N = 1340\) and \(C_L = 960\). The difference is correctly calculated as 380, which matches the provided answer key.