Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 19 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,17 +353,17 @@ $\(x_1\)$ and $\(x_2\)$

<br>

$\max/\min \quad Z$ = $c_1x_1 + c_2x_2$
$\max/\min \quad Z$ = $c_1x_1 + c_2x_2$

<br>

```latex
Max/Min \quad Z = c_1x_1 + c_2x_2
```
```latex
Max/Min \quad Z = c_1x_1 + c_2x_2
```

<br><br>

### **[Constraints]():**
### - **[Constraints]():**

These are linear inequalities or equalities that restrict the values the decision variables can take.

Expand All @@ -375,32 +375,36 @@ These are linear inequalities or equalities that restrict the values the decisio

$a_{i1}x_1 + a_{i2}x_2$ = $b_i$

<br>

<br>
```latex
\a_{i1}x_1 + a_{i2}x_2\ = b_i
```

```latex
a_{i1}x_1 + a_{i2}x_2 = b_i
```

<br><br>
<br><br>


- **[Less than or equal to constraint]():**

$a_{i1}x_1$$ + $a_{i2}x_2 \leq b_i$
<br>

$a_{i1}x_1$$ + $a_{i2}x_2 \leq b_i$

<br>

```latex
a_{i1}x_1 + a_{i2}x_2 \leq b_i
```
```latex
a_{i1}x_1 + a_{i2}x_2 \leq b_i
```

<br><br>


- [Greater than or equal to constraint]():

$a_{i1}x_1$ + $a_{i2}x_2 \geq b_i$
<br>

$a_{i1}x_1$ + $a_{i2}x_2 \geq b_i$

<br>

Expand Down