Skip to content

Commit b71c2b8

Browse files
Merge pull request #352 from Quantum-Software-Development/FabianaCampanari-patch-1
Update README.md
2 parents f717845 + ccec9a6 commit b71c2b8

File tree

1 file changed

+0
-55
lines changed

1 file changed

+0
-55
lines changed

README.md

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -552,61 +552,6 @@ After running Solver:
552552

553553

554554

555-
<br>
556-
557-
## [Simplex Method using Excel Solver]()
558-
559-
### ➢ This example shows how to solve a Linear Programming (LP) problem using the **Simplex Method** via **Excel Solver**.
560-
561-
### [Problem]():
562-
563-
Maximize the objective function:
564-
565-
Z = 3x + 5y
566-
567-
Subject to the constraints:
568-
569-
x + 2y ≤ 100
570-
2x + y ≤ 80
571-
x, y ≥ 0
572-
573-
<br>
574-
575-
### [Excel Spreadsheet Setup]():
576-
577-
Fill the spreadsheet with the following structure:
578-
579-
#### Variables and Objective
580-
581-
| Cell | Description | Formula / Value |
582-
|------|------------------------|----------------------|
583-
| B1 | x (Decision Variable) | *(leave blank)* |
584-
| B2 | y (Decision Variable) | *(leave blank)* |
585-
| B3 | Objective Function Z | `=3*B1 + 5*B2` |
586-
587-
<br>
588-
589-
#### Constraints Left-Hand Side (LHS)
590-
591-
| Cell | Description | Formula |
592-
|------|----------------------------|---------------------|
593-
| B5 | Constraint 1 LHS | `=1*B1 + 2*B2` |
594-
| B6 | Constraint 2 LHS | `=2*B1 + 1*B2` |
595-
596-
597-
<br>
598-
599-
#### Constraints Right-Hand Side (RHS)
600-
601-
| Cell | Description | Value |
602-
|------|----------------------------|---------------------|
603-
| C5 | Constraint 1 RHS | `100` |
604-
| C6 | Constraint 2 RHS | `80` |
605-
606-
607-
608-
609-
610555

611556

612557

0 commit comments

Comments
 (0)