Constraint System Math Example 1

Follow the full solution, then compare it with the other examples linked below.

Example 1

medium
Find all values of (x,y)(x, y) satisfying x+y=10x + y = 10, xโ‰ฅ0x \geq 0, and yโ‰ฅ0y \geq 0.

Solution

  1. 1
    From x+y=10x + y = 10: y=10โˆ’xy = 10 - x.
  2. 2
    Apply xโ‰ฅ0x \geq 0: this gives a lower bound on xx.
  3. 3
    Apply yโ‰ฅ0y \geq 0: 10โˆ’xโ‰ฅ010 - x \geq 0, so xโ‰ค10x \leq 10.
  4. 4
    The feasible set is all (x,10โˆ’x)(x, 10-x) with 0โ‰คxโ‰ค100 \leq x \leq 10.

Answer

All (x,10โˆ’x)(x, 10-x) where 0โ‰คxโ‰ค100 \leq x \leq 10.
A constraint system combines equations and inequalities that must all be satisfied simultaneously. The solution is the set of points meeting every constraint.

About Constraint System

A collection of equations and inequalities that must ALL be satisfied simultaneously by the same set of variable values.

Learn more about Constraint System โ†’

More Constraint System Examples