File tree Expand file tree Collapse file tree 1 file changed +0
-55
lines changed Expand file tree Collapse file tree 1 file changed +0
-55
lines changed Original file line number Diff line number Diff line change @@ -552,61 +552,6 @@ After running Solver:
552
552
553
553
554
554
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
-
610
555
611
556
612
557
You can’t perform that action at this time.
0 commit comments