Skip to content

Commit f16ad34

Browse files
Merge pull request #673 from Quantum-Software-Development/FabianaCampanari-patch-1
Update README.md
2 parents 739e913 + b5d8187 commit f16ad34

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

README.md

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -534,11 +534,34 @@ This example demonstrates how to use Excel Solver to solve a Linear Programming
534534

535535
Z = 40x + 30y
536536

537-
Subject to:
537+
$$
538+
\begin{cases}
539+
2x + y \leq 40 \\
540+
x + 2y \leq 50 \\
541+
x \geq 0 \\
542+
y \geq 0
543+
\end{cases}
544+
$$
538545

539-
2x + y ≤ 40
540-
x + 2y ≤ 50
541-
x, y ≥ 0
546+
547+
```latex
548+
\[
549+
\begin{aligned}
550+
&\text{Maximize:} \\
551+
&\quad Z = 40x + 30y \\
552+
&\text{Subject to:} \\
553+
&\quad
554+
\left\{
555+
\begin{array}{rl}
556+
2x + y &\leq 40 \\
557+
x + 2y &\leq 50 \\
558+
x &\geq 0 \\
559+
y &\geq 0 \\
560+
\end{array}
561+
\right.
562+
\end{aligned}
563+
\]
564+
```
542565

543566
<br>
544567

0 commit comments

Comments
 (0)