We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 875543b + 30510eb commit 5f4bbfdCopy full SHA for 5f4bbfd
README.md
@@ -1133,6 +1133,21 @@ A & 20 & 1 & 5 & 6 \\
1133
1134
#
1135
1136
+## 🧠 Relation to Algorithms
1137
+
1138
+The transportation problem is a special type of **Linear Programming** that can be solved with:
1139
1140
+- **Simplex Method**: General LP solver; can handle transportation problems but not optimized for them.
1141
+- **Specialized Algorithms**:
1142
+ - Northwest Corner Rule
1143
+ - Least Cost Method
1144
+ - Vogel’s Approximation Method (VAM)
1145
+ - MODI (Modified Distribution Method)
1146
1147
+These specialized algorithms are **faster** and **simpler** due to the regular structure of the transportation tableau.
1148
1149
+#
1150
1151
1152
1153
0 commit comments