# Nakafa Learning Content

> For AI agents: use [llms.txt](https://nakafa.com/llms.txt) for the site index. Markdown versions are available by appending `.md` to content URLs or sending `Accept: text/markdown`.

URL: https://nakafa.com/en/subjects/mathematics/linear-equation-inequality/system-linear-inequality
Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/material/lesson/mathematics/linear-equation-inequality/system-linear-inequality/en.mdx

Learn to solve linear inequality systems using graphical methods. Explore constraint modeling, optimization problems, and interactive visualizations.

---

## Understanding Linear Inequality Systems

In everyday life, we often face situations with various constraints to consider. For example, when baking, we might be limited by the amount of available ingredients and our budget. These types of constraints can often be modeled using linear inequalities.

### What Is a Linear Inequality System?

A linear inequality system is a collection of two or more linear inequalities that must be satisfied simultaneously. Linear inequalities take the form:

```math
a_1x_1 + a_2x_2 + ... + a_nx_n \leq b \text{ or} a_1x_1 + a_2x_2 + ... + a_nx_n \geq b
```

Where $$a_1, a_2, ..., a_n$$ are coefficients, $$x_1, x_2, ..., x_n$$ are variables, $$b$$ is a constant, and the inequality sign can be $$\leq, \geq, <, >$$.

Visible text: Where are coefficients, are variables, is a constant, and the inequality sign can be .

The main difference between linear equations and linear inequalities is:

- Linear equations have exactly one equals sign ($$=$$)
- Linear inequalities have an inequality sign ($$\leq, \geq, <, >$$)

Visible text: - Linear equations have exactly one equals sign ()
- Linear inequalities have an inequality sign ()

### Linear Inequality Systems with Two Variables

A linear inequality system with two variables consists of two or more inequalities with two variables (usually $$x$$ and $$y$$):

Visible text: A linear inequality system with two variables consists of two or more inequalities with two variables (usually and ):

```math
\begin{cases} a_1x + b_1y \leq c_1 \\ a_2x + b_2y \leq c_2 \end{cases}
```

**Example**:

```math
\begin{cases} 2x + 5y < 10 \\ 6x + 2y > 10 \end{cases}
```

The solution to this system is the set of ordered pairs $$(x,y)$$ that satisfy all inequalities simultaneously.

Visible text: The solution to this system is the set of ordered pairs that satisfy all inequalities simultaneously.

## Solving Linear Inequality Systems

To solve a linear inequality system with two variables, we use the graphical method with the following steps:

### Draw the Boundary Lines

For each inequality, draw its boundary line by changing the inequality sign to an equals sign.

**Example**:

For the system:

```math
\begin{cases} 2x + 5y < 10 \\ 6x + 2y > 10 \end{cases}
```

Draw the lines:

```math
\begin{cases} 2x + 5y = 10 \\ 6x + 2y = 10 \end{cases}
```

### Determine the Solution Regions

To determine the solution region for each inequality:

1. Take a test point (e.g., the origin $$(0,0)$$ if it's not on the line)
2. Substitute it into the inequality
3. If the result is true, the region containing the test point is the solution region
4. If the result is false, the region not containing the test point is the solution region

Visible text: 1. Take a test point (e.g., the origin if it's not on the line)
2. Substitute it into the inequality
3. If the result is true, the region containing the test point is the solution region
4. If the result is false, the region not containing the test point is the solution region

**Example**:

For $$2x + 5y < 10$$, check point $$(0, 0)$$:

Visible text: For , check point :

```math
2(0) + 5(0) = 0 < 10
```

_(true)_

The solution region is the area containing point $$(0, 0)$$, which is below the line $$2x + 5y = 10$$.

Visible text: The solution region is the area containing point , which is below the line .

For $$6x + 2y > 10$$, check point $$(0, 0)$$:

Visible text: For , check point :

```math
6(0) + 2(0) = 0 > 10
```

_(false)_

The solution region is the area not containing point $$(0, 0)$$, which is above the line $$6x + 2y = 10$$.

Visible text: The solution region is the area not containing point , which is above the line .

### Determine the Intersection of Solution Regions

The solution to the linear inequality system is the intersection (the area satisfied by all constraints) of all the solution regions involved.

### Graphical Representation

When drawing inequality graphs:

- For $$\leq$$ or $$\geq$$: use a solid line (the solution region includes points on the line)
- For $$<$$ or $$>$$: use a dashed line (the solution region does not include points on the line)
- The solution region is shaded to show the solution

Visible text: - For or : use a solid line (the solution region includes points on the line)
- For or : use a dashed line (the solution region does not include points on the line)
- The solution region is shaded to show the solution

## Real-life Applications

### Mathematical Modeling

Linear inequality systems are very useful for modeling optimization problems, such as:

- Production problems with resource constraints
- Budget planning with cost constraints
- Nutrition planning with calorie constraints

### Activity Planning

Kiki is organizing an independence day celebration in her neighborhood. From the community fund, there is $$\text{Rp}500{,}000.00$$ available. For organizing competitions, it costs $$\text{Rp}20{,}000.00$$ per child. Prizes for winners are budgeted at $$\text{Rp}40{,}000.00$$ for each type of competition. It's expected that more than $$13$$ children will participate.

Visible text: Kiki is organizing an independence day celebration in her neighborhood. From the community fund, there is available. For organizing competitions, it costs per child. Prizes for winners are budgeted at for each type of competition. It's expected that more than children will participate.

Let's define:

- $$x$$ = number of participants
- $$y$$ = number of competitions

Visible text: - = number of participants
- = number of competitions

The mathematical model is:

```math
\begin{cases} 20.000x + 40.000y \leq 500.000 \\ x > 13 \end{cases}
```

If we simplify:

```math
\begin{cases} 20x + 40y \leq 500 \\ x > 13 \end{cases}
```

The solution to this system is the region that satisfies both inequalities. From the graph, we can see various combinations of participants and competitions that can be organized within budget constraints.

## Problem-Solving Strategy

To solve linear inequality system problems:

1. Identify the variables to use
2. Create a mathematical model based on the given constraints
3. Solve the system using the graphical method
4. Interpret the solution in the context of the original problem

## Differences Between Linear Equation Systems and Linear Inequality Systems

| Aspect                       | Linear Equation Systems                                   | Linear Inequality Systems                                                                        |
| ---------------------------- | --------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| **Operation Sign**           | Uses equals sign ($$=$$)                | Uses inequality signs ($$<, >, \leq, \geq$$)                                   |
| **Solution Form**            | Usually a point or set of points                          | A region on the coordinate plane                                                                 |
| **Graphical Representation** | Intersection of lines                                     | Intersection of shaded regions                                                                   |
| **Solution Methods**         | Substitution, elimination, determinants                   | Primarily graphical method                                                                       |
| **Number of Solutions**      | Can have one solution, infinite solutions, or no solution | Usually has infinite solutions (a region)                                                        |
| **Drawing**                  | Always uses solid lines                                   | Solid lines for $$\leq, \geq$$ and dashed lines for $$<, >$$ |

Visible text: | Aspect | Linear Equation Systems | Linear Inequality Systems |
| ---------------------------- | --------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| **Operation Sign** | Uses equals sign () | Uses inequality signs () |
| **Solution Form** | Usually a point or set of points | A region on the coordinate plane |
| **Graphical Representation** | Intersection of lines | Intersection of shaded regions |
| **Solution Methods** | Substitution, elimination, determinants | Primarily graphical method |
| **Number of Solutions** | Can have one solution, infinite solutions, or no solution | Usually has infinite solutions (a region) |
| **Drawing** | Always uses solid lines | Solid lines for and dashed lines for |

## Interactive Visualization of Linear Inequality Systems

Let's imagine a linear inequality system as boundary fences in a garden. Each inequality limits which areas we can enter. When there's more than one inequality, we can only be in areas that satisfy all constraints.

Here's an interactive visualization of a linear inequality system to help us understand this concept better:

### Example of an Inequality System

Consider the following linear inequality system:

```math
\begin{cases} x + y \leq 10 \\ 15x + 9y \geq 120 \end{cases}
```

In the visualization below, the blue region shows the solution to $$x + y \leq 10$$ (all points below or on the line $$x + y = 10$$).

Visible text: In the visualization below, the blue region shows the solution to (all points below or on the line ).

The red region shows the solution to $$15x + 9y \geq 120$$ (all points above or on the line $$15x + 9y = 120$$).

Visible text: The red region shows the solution to (all points above or on the line ).

The purple region (the intersection of the blue and red areas) is the solution to the linear inequality system.

Component: Inequality
Props:
- title: Linear Inequality System
- description: Visualization of the system of inequalities{" "}
$$x + y \leq 10$$ and{" "}
$$15x + 9y \geq 120$$.
  Visible text: Visualization of the system of inequalities{" "}
 and{" "}
.
- data: [
{
is2D: true,
boundaryLine2D: [1, 1, -10],
xRange: [-15, 15],
yRange: [-15, 15],
zRange: [-0.05, 0.05],
color: getColor("CYAN"),
boundaryColor: getColor("BLUE"),
label: {
text: "x + y ≤ 10",
position: [3, 3, 0.15],
},
},
{
is2D: true,
boundaryLine2D: [-15, -9, 120],
xRange: [-15, 15],
yRange: [-15, 15],
zRange: [-0.05, 0.05],
color: getColor("ROSE"),
boundaryColor: getColor("RED"),
label: {
text: "15x + 9y ≥ 120",
position: [6, 8, 0.15],
},
},
]

### How to Read the Visualization

In this interactive visualization:

1. **Boundary lines** show the equations (e.g., $$x + y = 10$$ and $$15x + 9y = 120$$)
2. **Colored regions** show the solution to each inequality
3. **Intersection region** (the area satisfying all inequalities) is the solution to the inequality system

Visible text: 1. **Boundary lines** show the equations (e.g., and )
2. **Colored regions** show the solution to each inequality
3. **Intersection region** (the area satisfying all inequalities) is the solution to the inequality system

You can clearly see that the solution to this inequality system forms a region bounded by both lines. From the visualization, we can also determine the intersection point of the two lines, which is an important point in the solution region.

By understanding this visualization, you'll find it easier to solve optimization problems in everyday life involving constraints that can be modeled with linear inequality systems.