The North West Corner Method is a heuristic algorithm used in operations research and linear programming for solving transportation and distribution problems. These problems involve the optimal distribution of goods from several suppliers to several consumers, considering factors such as cost, distance, or time.
The method gets its name from the starting point in the allocation table, which is the northwest corner. The algorithm is relatively simple and intuitive, making it easy to understand and implement. Here's a step-by-step explanation of the North West Corner Method:
The North-West Corner Method is a simple approach for solving transportation problems.
Steps to apply the North West Corner Method
Steps to apply the North West Corner Method |
Setup:
Allocation:
Move to the Next Cell:
Continue Allocation:
Optimality Check:
Final Solution:
| C1 | C2 | C3 | Supply
--------------------------------
S1 | 3 | 1 | 4 | 30
S2 | 2 | 6 | 8 | 50
S3 | 5 | 7 | 2 | 20
--------------------------------
Demand | 20 | 60 | 30 |
Example of North West Corner Method
Using the North-West Corner Method
- Start at the northwest corner (S1, C1) and allocate 20 units (minimum of supply and demand).
- Move to the next cell (S1, C2) and allocate 10 units.
- Move to the next cell (S1, C3) and allocate 4 units.
- Move to the next row (S2, C3) and allocate 20 units.
- Move to the next row (S3, C3) and allocate 6 units.
Advantages Of North West Corner Method
Simplicity:
The North-West Corner Method is easy to understand and implement. It doesn't require complex computations, making it accessible for those new to transportation problem-solving.Quick Initial Solution:
The method provides a quick initial feasible solution. It efficiently distributes goods based on the basic principle of starting at the northwest corner and moving to the next available cell.Intuitive:
The allocation process is intuitive, involving a systematic movement through the tableau. This makes it easy for practitioners to follow and apply the method without extensive training.Basis for Further Optimization:
While the initial solution may not be optimal, the North-West Corner Method serves as a foundation for more advanced optimization methods. It provides a starting point that can be refined through techniques like the Modified Distribution Method or the stepping-stone method.Useful for Educational Purposes:
The simplicity of the North-West Corner Method makes it valuable for educational purposes. It is often introduced in operations research courses to help students grasp the basic concepts of transportation problems before moving on to more complex algorithms.For more visit KMBN 206