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 95f7c4f + 0346649 commit 0505c8fCopy full SHA for 0505c8f
README.md
@@ -549,6 +549,35 @@ After running Solver:
549
- **Z = 40×10 + 30×20 = 1000**
550
551
552
+## Extras Excercise
553
+
554
555
556
557
558
559
560
+<br>
561
562
563
+### **2.** Solve graphically the LP presented below:
564
565
566
+$$
567
+\[
568
+\begin{aligned}
569
+\textbf{Max.} \quad & Z = 4x_1 + 3x_2 \\
570
+\textbf{S.a.} \quad &
571
+\begin{cases}
572
+x_1 + 3x_2 \leq 7 \\
573
+2x_1 + 2x_2 \leq 8 \\
574
+x_1 + x_2 \leq 3 \\
575
+x_2 \leq 2 \\
576
+x_1 \geq 0 \text{ e } x_2 \geq 0
577
+\end{cases}
578
+\end{aligned}
579
+\]
580
581
582
583
0 commit comments