# Nakafa Framework: LLM URL: /en/subject/high-school/10/mathematics/linear-equation-inequality/system-linear-inequality Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/10/mathematics/linear-equation-inequality/system-linear-inequality/en.mdx Output docs content for large language models. --- import { Inequality } from "@repo/design-system/components/contents/inequality"; import { condition1, condition2 } from "./inequality-functions"; import { getColor } from "@repo/design-system/lib/color"; export const metadata = { title: "Linear Inequality Systems", description: "Learn to solve linear inequality systems using graphical methods. Explore constraint modeling, optimization problems, and interactive visualizations.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "04/18/2025", subject: "Systems of Linear Equations and Inequalities", }; ## 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: 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 () ### Linear Inequality Systems with Two Variables A linear inequality system with two variables consists of two or more inequalities with two variables (usually and ): **Example**: 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: Draw the lines: ### Determine the Solution Regions To determine the solution region for each inequality: 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 , check point (0,0): _(true)_ The solution region is the area containing point (0,0), which is below the line . For , check point (0,0): _(false)_ The solution region is the area not containing point (0,0), 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 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 Rp500,000.00 available. For organizing competitions, it costs Rp20,000.00 per child. Prizes for winners are budgeted at Rp40,000.00 for each type of competition. It's expected that more than 13 children will participate. Let's define: - = number of participants - = number of competitions The mathematical model is: If we simplify: 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 () | | **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: 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 (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. Visualization of the system of inequalities{" "} and{" "} . } data={[ { is2D: true, boundaryLine2D: [1, 1, -10], condition: condition1, 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], condition: condition2, 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., 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.