1.5.3 Formulating Linear Inequalities from Constraints¶
Convert real-world constraints and limitations into linear inequality models using appropriate inequality symbols.
定义¶
Formulating linear inequalities from constraints is the process of translating real-world limitations, restrictions, or conditions into mathematical inequality statements. A linear inequality is a mathematical statement that compares two linear expressions using inequality symbols: less than (\(<\)), greater than (\(>\)), less than or equal to (\(\leq\)), or greater than or equal to (\(\geq\)). When converting word problems or real-world scenarios into linear inequalities, we identify the variable(s) representing unknown quantities, determine the constraint relationship, and express it using the appropriate inequality symbol. For example, if a budget constraint states "the total cost cannot exceed $500," this translates to the inequality \(C \leq 500\), where \(C\) represents the total cost. Linear inequalities can involve one or multiple variables and form the foundation for linear programming and optimization problems in real-world applications such as business, economics, engineering, and resource allocation.
核心公式¶
- \(ax + b < c\) or \(ax + b > c\) or \(ax + b \leq c\) or \(ax + b \geq c\) (Standard form of a linear inequality in one variable)
- \(ax + by < c\) or \(ax + by > c\) or \(ax + by \leq c\) or \(ax + by \geq c\) (Standard form of a linear inequality in two variables)
- \(x \geq a\) (Lower bound constraint: variable must be at least \(a\))
- \(x \leq b\) (Upper bound constraint: variable must be at most \(b\))
- \(a \leq x \leq b\) (Compound inequality: variable is between \(a\) and \(b\), inclusive)
易错点¶
- ⚠️ ["Reversing the inequality symbol when translating from words to symbols. For example, misinterpreting 'at least 10' as \(x < 10\) instead of \(x \geq 10\), or 'no more than 50' as \(x > 50\) instead of \(x \leq 50\).", "Confusing the direction of inequality symbols in context. Students often mix up 'greater than' (\(>\)) with 'less than' (\(<\)), especially when dealing with negative numbers or when the variable appears on the right side of the inequality.", "Forgetting to include the equality component when the constraint uses phrases like 'at least,' 'at most,' 'no more than,' or 'no less than,' which require \(\leq\) or \(\geq\) rather than strict inequalities \(<\) or \(>\).", "Incorrectly identifying which quantity should be compared to which value. For instance, when a problem states 'the number of items must not exceed the inventory limit,' students may reverse the relationship and write the inequality backwards, comparing the limit to the items instead of items to the limit."]