You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-53Lines changed: 56 additions & 53 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -599,6 +599,58 @@ This example presents a complete, step-by-step solution to a **Linear Programmin
599
599
600
600
601
601
602
+
$$
603
+
\
604
+
\begin{aligned}
605
+
\text{Max.} \quad & Z = 4x_1 + 3x_2 \\
606
+
\text{S.a.} \quad &
607
+
\begin{cases}
608
+
x_1 + 3x_2 \leq 7 \\
609
+
2x_1 + 2x_2 \leq 8 \\
610
+
x_1 + x_2 \leq 3 \\
611
+
x_2 \leq 2 \\
612
+
x_1 \geq 0 \text{ e } x_2 \geq 0
613
+
\end{cases}
614
+
\end{aligned}
615
+
\
616
+
$$
617
+
618
+
<br>
619
+
620
+
```latex
621
+
\
622
+
\begin{aligned}
623
+
\text{Max.} \quad & Z = 4x_1 + 3x_2 \\
624
+
\text{S.a.} \quad &
625
+
\begin{cases}
626
+
x_1 + 3x_2 \leq 7 \\
627
+
2x_1 + 2x_2 \leq 8 \\
628
+
x_1 + x_2 \leq 3 \\
629
+
x_2 \leq 2 \\
630
+
x_1 \geq 0 \text{ e } x_2 \geq 0
631
+
\end{cases}
632
+
\end{aligned}
633
+
\
634
+
```
635
+
636
+
637
+
638
+
639
+
640
+
641
+
642
+
643
+
644
+
645
+
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
602
654
603
655
604
656
@@ -609,7 +661,7 @@ This example presents a complete, step-by-step solution to a **Linear Programmin
609
661
<br> -\\\\\\\k\
610
662
611
663
612
-
# VIII - [Extras Excercise]():
664
+
# IX - [Extras Excercise]():
613
665
614
666
<br>
615
667
@@ -1024,57 +1076,8 @@ Intersection of x_1 + 3x_2 = 7 and 2x_1 + 2x_2 = 8:
1024
1076
1025
1077
<br><br>
1026
1078
1027
-
## **3.**[Solve the following linear programming problem using the Simplex method]():
1028
-
1029
-
<br>
1030
-
1031
-
$$
1032
-
\
1033
-
\begin{aligned}
1034
-
\text{Max.} \quad & Z = 4x_1 + 3x_2 \\
1035
-
\text{S.a.} \quad &
1036
-
\begin{cases}
1037
-
x_1 + 3x_2 \leq 7 \\
1038
-
2x_1 + 2x_2 \leq 8 \\
1039
-
x_1 + x_2 \leq 3 \\
1040
-
x_2 \leq 2 \\
1041
-
x_1 \geq 0 \text{ e } x_2 \geq 0
1042
-
\end{cases}
1043
-
\end{aligned}
1044
-
\
1045
-
$$
1046
-
1047
-
<br>
1048
-
1049
-
```latex
1050
-
\
1051
-
\begin{aligned}
1052
-
\text{Max.} \quad & Z = 4x_1 + 3x_2 \\
1053
-
\text{S.a.} \quad &
1054
-
\begin{cases}
1055
-
x_1 + 3x_2 \leq 7 \\
1056
-
2x_1 + 2x_2 \leq 8 \\
1057
-
x_1 + x_2 \leq 3 \\
1058
-
x_2 \leq 2 \\
1059
-
x_1 \geq 0 \text{ e } x_2 \geq 0
1060
-
\end{cases}
1061
-
\end{aligned}
1062
-
\
1063
-
```
1064
-
1065
-
<br>
1066
-
1067
-
## 🚜 UNDER CONSTRUTION -----
1068
-
1069
-
1070
-
1071
-
1072
-
1073
-
1074
-
1075
-
<br><br><br><br><br><br>
1076
1079
1077
-
# IX - [Transportation Problem (Linear Programming)]()
1080
+
# X - [Transportation Problem (Linear Programming)]()
1078
1081
1079
1082
<br>
1080
1083
@@ -1239,7 +1242,7 @@ These specialized algorithms are **faster** and **simpler** due to the regular s
1239
1242
1240
1243
The transportation algorithm follows the **same logic as the Simplex method**, but with **simplifications** tailored to the structure of transportation problems:
0 commit comments