Skip to content

Commit f45aff7

Browse files
Merge pull request #578 from Quantum-Software-Development/FabianaCampanari-patch-1
Update README.md
2 parents 9739da5 + 01aa78a commit f45aff7

File tree

1 file changed

+9
-15
lines changed

1 file changed

+9
-15
lines changed

README.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -596,24 +596,18 @@ This example presents a complete, step-by-step solution to a **Linear Programmin
596596

597597
## 🧮 Problem Statement
598598

599+
### **Maximize:**
599600

601+
$Z = 4x_1 + 3x_2$
600602

603+
### **Subject to:**
604+
605+
$x_1 + 3x_2 \leq 7$
606+
$2x_1 + 2x_2 \leq 8$
607+
$x_1 + x_2 \leq 3$
608+
$x_2 \leq 2$
609+
$x_1 \geq 0,\ x_2 \geq 0$
601610

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-
$$
617611

618612
<br>
619613

0 commit comments

Comments
 (0)