Skip to content

Commit 7e560df

Browse files
Merge pull request #367 from Quantum-Software-Development/main
up
2 parents a23ed77 + 12e7e65 commit 7e560df

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

README.md

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -548,27 +548,43 @@ After running Solver:
548548
- **y = 20**
549549
- **Z = 40×10 + 30×20 = 1000**
550550

551+
<br>
552+
553+
## Extras Excercise:
551554

552-
## Extras Excercise
555+
<br>
553556

557+
### 1. [Develop a Mathematical Model – Linear Programming (LP)]():
558+
559+
📘 Problem Statement in English
560+
561+
A company, after a production rationalization process, has 3 available productive resources: R1, R2, and R3. A study indicated the feasibility of manufacturing two products: P1 and P2. After analyzing costs and consulting the sales department, it was found that P1 yields a profit of 120 u.m. per unit and P2 yields 150 u.m. per unit. The production department provided the following resource usage table:
562+
563+
| Product | R1/unit | R2/unit | R3/unit |
564+
|---------|---------|---------|---------|
565+
| P1 | 2 | 3 | 5 |
566+
| P2 | 4 | 0 | 3 |
567+
568+
| Resource Availability per month | R1 = 100 | R2 = 90 | R3 = 120 |
554569

555570

556571

557572

558573

559574

560-
<br>
575+
576+
<br><br>
561577

562578

563-
### **2.** Solve graphically the LP presented below:
579+
### **2.** [Solve graphically the LP presented below]():
564580

581+
<br>
565582

566583
$$
567584
\
568585
\begin{aligned}
569586
\textbf{Max.} \quad & Z = 4x_1 + 3x_2 \\
570587
\textbf{S.a.} \quad &
571-
572588
\begin{cases}
573589
x_1 + 3x_2 \leq 7 \\
574590
2x_1 + 2x_2 \leq 8 \\
@@ -582,17 +598,19 @@ $$
582598

583599

584600

601+
585602
<br><br>
586603

587604

588-
### **3.** Solve the following linear programming problem using the Simplex method.:
605+
### **3.** [Solve the following linear programming problem using the Simplex method]():
606+
607+
<br>
589608

590609
$$
591610
\
592611
\begin{aligned}
593612
\text{Max.} \quad & Z = 4x_1 + 3x_2 \\
594613
\text{S.a.} \quad &
595-
596614
\begin{cases}
597615
x_1 + 3x_2 \leq 7 \\
598616
2x_1 + 2x_2 \leq 8 \\

0 commit comments

Comments
 (0)