File tree Expand file tree Collapse file tree 1 file changed +43
-1
lines changed
Expand file tree Collapse file tree 1 file changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -993,7 +993,7 @@ The transportation problem is a type of **linear programming** model where the o
993993
994994<br >
995995
996- ## [ The Case of Unbalanced Systems] ( ) :
996+ ### [ The Case of Unbalanced Systems] ( ) :
997997
998998The standard transportation model assumes total supply equals total demand. However, in real-world scenarios, systems can be ** unbalanced** .
999999
@@ -1004,6 +1004,48 @@ constraints.
10041004
10051005<br >
10061006
1007+ ### [ Example: Unbalanced Transportation Problem] ( ) :
1008+
1009+ ### Initial Unbalanced Model:
1010+
1011+ <br >
1012+
1013+ $$
1014+ \
1015+ \begin{array}{c|ccc|c}
1016+ & D1 & D2 & D3 & \text{Supply} \\
1017+ \hline
1018+ O1 & 10 & 12 & 9 & 20 \\
1019+ O2 & 4 & 9 & 8 & 30 \\
1020+ O3 & 6 & 12 & 10 & 10 \\
1021+ \hline
1022+ \text{Demand} & 25 & 36 & 5 & \text{Total: } 66 \\
1023+ \end{array}
1024+ \
1025+ $$
1026+
1027+ <br >
1028+
1029+ ``` latex
1030+ \[
1031+ \begin{array}{c|ccc|c}
1032+ & D1 & D2 & D3 & \text{Supply} \\
1033+ \hline
1034+ O1 & 10 & 12 & 9 & 20 \\
1035+ O2 & 4 & 9 & 8 & 30 \\
1036+ O3 & 6 & 12 & 10 & 10 \\
1037+ \hline
1038+ \text{Demand} & 25 & 36 & 5 & \text{Total: } 66 \\
1039+ \end{array}
1040+ \]
1041+ ```
1042+
1043+ <br >
1044+
1045+ Total supply = 60
1046+ Total demand = 66 → ⚠️ ** Unbalanced**
1047+
1048+ <br ><br >
10071049
10081050
10091051
You can’t perform that action at this time.
0 commit comments