Skip to content

Commit dffd7f4

Browse files
Update README.md
Signed-off-by: Fabiana 🧬 Campanari <113218619+FabianaCampanari@users.noreply.github.com>
1 parent c123ea3 commit dffd7f4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ After running Solver:
713713

714714
<br>
715715

716-
# VIII 🐍[Linear Programming Problem – Simplex Method using Python]():
716+
# VIII 🐍 [Linear Programming Problem – Simplex Method using Python]():
717717

718718
This example presents a complete, step-by-step solution to a **Linear Programming (LP)** problem using the **Simplex Method**, along with a basic **Python implementation**.
719719

@@ -1217,7 +1217,8 @@ x_1 \geq 0$ and $x_2 \geq 0
12171217

12181218
<br>
12191219

1220-
### [1](). Intersection of $x_1 + 3x_2 = 7$ and $2x_1 + 2x_2 = 8$:
1220+
### [1](). [Intersection of]() $x_1 + 3x_2 = 7$ and $2x_1 + 2x_2 = 8$:
1221+
12211222
- Multiply first by 2: $2x_1 + 6x_2 = 14$
12221223
- Subtract: $4x_2 = 6 \Rightarrow x_2 = 1.5$, $x_1 = 2.5$
12231224
- Point: **(2.5, 1.5)**
@@ -1233,7 +1234,7 @@ Intersection of x_1 + 3x_2 = 7 and 2x_1 + 2x_2 = 8:
12331234

12341235
<br>
12351236

1236-
### [2](). [Intersection of](): $x_1 + 3x_2 = 7$ and $x_1 + x_2 = 3$:
1237+
### [2](). [Intersection of]() $x_1 + 3x_2 = 7$ and $x_1 + x_2 = 3$:
12371238

12381239
- Subtract: $2x_2 = 4 \Rightarrow x_2 = 2$, $x_1 = 1$
12391240
- Point: **(1, 2)**
@@ -1248,13 +1249,13 @@ Intersection of x_1 + 3x_2 = 7 and 2x_1 + 2x_2 = 8:
12481249

12491250
<br>
12501251

1251-
### [3](). Intersection of $x_1 + x_2 = 3$ and $x_2 = 2$:
1252+
### [3](). [Intersection of() $x_1 + x_2 = 3$ and $x_2 = 2$:
12521253
- $x_1 = 1$
12531254
- Point: **(1, 2)**
12541255

12551256
<br>
12561257

1257-
### [4](). Intersection of $2x_1 + 2x_2 = 8$ and $x_2 = 2$:
1258+
### [4](). [Intersection of() $2x_1 + 2x_2 = 8$ and $x_2 = 2$:
12581259
- $x_1 = 2$
12591260
- Point: **(2, 2)**
12601261

0 commit comments

Comments
 (0)