Skip to content

Commit cb41978

Browse files
Merge pull request #576 from Quantum-Software-Development/FabianaCampanari-patch-1
Update README.md
2 parents ce3390e + 89884c7 commit cb41978

File tree

1 file changed

+56
-53
lines changed

1 file changed

+56
-53
lines changed

README.md

Lines changed: 56 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,58 @@ This example presents a complete, step-by-step solution to a **Linear Programmin
599599

600600

601601

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+
602654

603655

604656

@@ -609,7 +661,7 @@ This example presents a complete, step-by-step solution to a **Linear Programmin
609661
<br> -\\\\\\\k\
610662

611663

612-
# VIII - [Extras Excercise]():
664+
# IX - [Extras Excercise]():
613665

614666
<br>
615667

@@ -1024,57 +1076,8 @@ Intersection of x_1 + 3x_2 = 7 and 2x_1 + 2x_2 = 8:
10241076

10251077
<br><br>
10261078

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>
10761079

1077-
# IX - [Transportation Problem (Linear Programming)]()
1080+
# X - [Transportation Problem (Linear Programming)]()
10781081

10791082
<br>
10801083

@@ -1239,7 +1242,7 @@ These specialized algorithms are **faster** and **simpler** due to the regular s
12391242

12401243
The transportation algorithm follows the **same logic as the Simplex method**, but with **simplifications** tailored to the structure of transportation problems:
12411244

1242-
### 🔹 [1st Phase](): Initial Basic Feasible Solution
1245+
### [1st Phase](): Initial Basic Feasible Solution
12431246

12441247
We will use two methods to find a basic solution:
12451248

@@ -1250,7 +1253,7 @@ These provide starting points for optimization.
12501253

12511254
<br>
12521255

1253-
### 🔹 [2nd Phase](): Optimality Check:
1256+
### [2nd Phase](): Optimality Check:
12541257

12551258
After obtaining a feasible solution, we check for optimality using methods like:
12561259

0 commit comments

Comments
 (0)