0
2.0kviews
Find the basic feasible solution

Find the basic feasible solution of the following transportation problem by north-west corner rule. Also find the optimal transportation plan. -

  1 2 3 4 5 Available
A 7 6 4 5 9 40
B 8 5 6 7 8 30
C 6 8 9 6 5 20
D 5 7 7 8 6 10
Required 30 30 15 20 5 100 (total)
1 Answer
0
12views

To find the basic feasible solution by north-west corner rule, we start by allocating in the top left corner:

enter image description here

Checking for optimality (UV rule):

enter image description here

So presence of so many negative numbers indicate that the solution is not optimal at all. Let’s consider the smallest number (-6) first in order to start optimizing the solution.

enter image description here

θ = 5, new allocation:

enter image description here

However, we now have a degenerate solution (no. of allocations < m + n – 1). UV rule cannot be applied; so we have to first introduce an infinitesimal value (ε) in an unallocated cell, with the lowest cost.

Cell u1v3 has the lowest cost of 4; but we cannot put ‘ε’ here since it would form a closed loop with the three cells having an allocation of 15 each. So we choose the next minimum cost, i.e. 5. There are two cells with cost of 5, u1v4, and u3v5. Either can be used.

Putting ‘ε’ in u1v4, and checking for optimality:

enter image description here

Solution is not optimal since negative numbers are present. Starting the loop at the ‘-4’ cell:

enter image description here

θ = 5, new allocation& checking for optimality again

enter image description here

Solution is not optimal since negative numbers are present. Starting the loop from the ‘-3’:

enter image description here

θ = 15, new allocation & checking for optimality again:

enter image description here

However, we now have a degenerate solution (no. of allocations < m + n – 1).

Putting ‘ε’ in the cell that has least cost of 6, i.e. u1v2, and checking for optimality:

enter image description here

Solution is not optimal since negative numbers are present. Starting the loop from the ‘-2’:

enter image description here

θ = 15, new allocation, and checking for optimality again (ε is added because of degeneracy):

enter image description here

No negative numbers are present. Hence the optimal solution has been obtained.

enter image description here

Minimum cost = 5×7 + 15×6 + 10×5 + 30×5 +15×4 + 20×5 + 5×5 = Rs. 510

Please log in to add an answer.