Module 5: Practice Problems
Systems of Equations and Inequalities
This set contains 20 comprehensive problems covering all topics in Module 5. Work through each problem carefully, then check your solution. Each problem includes detailed step-by-step explanations.
y = 2x - 5
3x + y = 10
Solution:
The first equation is already solved for y: y = 2x - 5
3x + y = 10
3x + (2x - 5) = 10
3x + 2x - 5 = 10
5x - 5 = 10
5x = 15
x = 3
y = 2(3) - 5
y = 6 - 5
y = 1
First equation: y = 2x - 5 → 1 = 2(3) - 5 → 1 = 1 (Check)
Second equation: 3x + y = 10 → 3(3) + 1 = 10 → 10 = 10 (Check)
2x + 3y = 12
5x - 3y = 9
Solution:
First equation: 2x + 3y = 12
Second equation: 5x - 3y = 9
The coefficients of y are 3 and -3, which are opposites.
(2x + 3y) + (5x - 3y) = 12 + 9
7x = 21
x = 3
Using the first equation: 2x + 3y = 12
2(3) + 3y = 12
6 + 3y = 12
3y = 6
y = 2
First equation: 2(3) + 3(2) = 6 + 6 = 12 (Check)
Second equation: 5(3) - 3(2) = 15 - 6 = 9 (Check)
2x - y = 4
-4x + 2y = 3
Solution:
Multiply the first equation by 2 to make x-coefficients opposites:
4x - 2y = 8
-4x + 2y = 3
(4x - 2y) + (-4x + 2y) = 8 + 3
0 = 11
The statement 0 = 11 is false.
This means the system has no solution.
You can verify by noting that the second equation is -2 times the first equation on the left side, but the right side doesn't follow the same pattern.
3x - 6y = 12
-x + 2y = -4
Solution:
Multiply the second equation by 3:
3x - 6y = 12
-3x + 6y = -12
(3x - 6y) + (-3x + 6y) = 12 + (-12)
0 = 0
The statement 0 = 0 is always true.
This means the system has infinitely many solutions.
Solve the second equation for y:
-x + 2y = -4
2y = x - 4
y = (x - 4)/2 or y = (1/2)x - 2
Any point on the line is a solution.
x + 2y = 7
3x - y = 5
Solution:
[1 2 | 7]
[3 -1 | 5]
R2 - 3R1 → R2 (subtract 3 times row 1 from row 2)
[1 2 | 7]
[0 -7 | -16]
R2 / (-7) → R2
[1 2 | 7]
[0 1 | 16/7]
From row 2: y = 16/7
From row 1: x + 2y = 7
x + 2(16/7) = 7
x + 32/7 = 49/7
x = 49/7 - 32/7 = 17/7
x + 2y = 17/7 + 2(16/7) = 17/7 + 32/7 = 49/7 = 7 (Check)
3x - y = 3(17/7) - 16/7 = 51/7 - 16/7 = 35/7 = 5 (Check)
x + y + z = 6
2x - y + z = 3
x + 2y - z = 2
Solution:
[1 1 1 | 6]
[2 -1 1 | 3]
[1 2 -1 | 2]
R2 - 2R1 → R2
R3 - R1 → R3
[1 1 1 | 6]
[0 -3 -1 | -9]
[0 1 -2 | -4]
R2 / (-3) → R2
[1 1 1 | 6]
[0 1 1/3 | 3]
[0 1 -2 | -4]
R3 - R2 → R3
[1 1 1 | 6]
[0 1 1/3 | 3]
[0 0 -7/3 | -7]
R3 × (-3/7) → R3
[1 1 1 | 6]
[0 1 1/3 | 3]
[0 0 1 | 3]
From row 3: z = 3
From row 2: y + (1/3)z = 3 → y + 1 = 3 → y = 2
From row 1: x + y + z = 6 → x + 2 + 3 = 6 → x = 1
a) [1 2 | 5]
[0 1 | 3]
b) [1 -1 2 | 4]
[0 1 -3 | 2]
[0 0 0 | 5]
c) [1 3 -2 | 7]
[0 1 4 | -1]
[0 0 0 | 0]
Solution:
[1 2 | 5]
[0 1 | 3]
Analysis: The matrix has 2 pivots (leading 1s) in 2 rows.
From row 2: y = 3
From row 1: x + 2(3) = 5 → x = -1
Result: Consistent system with one unique solution: (-1, 3)
[1 -1 2 | 4]
[0 1 -3 | 2]
[0 0 0 | 5]
Analysis: The last row represents 0 = 5, which is false.
Result: Inconsistent system (no solution)
[1 3 -2 | 7]
[0 1 4 | -1]
[0 0 0 | 0]
Analysis: The last row represents 0 = 0, which is always true.
We have 2 pivots but 3 variables, so z is a free variable.
From row 2: y + 4z = -1 → y = -1 - 4z
From row 1: x + 3y - 2z = 7 → x = 7 - 3y + 2z = 7 - 3(-1 - 4z) + 2z = 10 + 14z
Result: Consistent system with infinitely many solutions
y = x2 - 4
y = 2x - 1
Solution:
Since both equations are solved for y, set them equal:
x2 - 4 = 2x - 1
x2 - 4 = 2x - 1
x2 - 2x - 4 + 1 = 0
x2 - 2x - 3 = 0
(x - 3)(x + 1) = 0
x = 3 or x = -1
When x = 3: y = 2(3) - 1 = 5
When x = -1: y = 2(-1) - 1 = -3
For (3, 5): 5 = 32 - 4 = 5 (Check) and 5 = 2(3) - 1 = 5 (Check)
For (-1, -3): -3 = (-1)2 - 4 = -3 (Check) and -3 = 2(-1) - 1 = -3 (Check)
x2 + y2 = 25
y = x + 1
Solution:
x2 + y2 = 25
x2 + (x + 1)2 = 25
x2 + (x2 + 2x + 1) = 25
2x2 + 2x + 1 = 25
2x2 + 2x - 24 = 0
x2 + x - 12 = 0
(x + 4)(x - 3) = 0
x = -4 or x = 3
When x = -4: y = -4 + 1 = -3
When x = 3: y = 3 + 1 = 4
For (-4, -3): (-4)2 + (-3)2 = 16 + 9 = 25 (Check)
For (3, 4): 32 + 42 = 9 + 16 = 25 (Check)
y = x2
y = 4 - x2
Solution:
x2 = 4 - x2
2x2 = 4
x2 = 2
x = ±√2
When x = √2: y = (√2)2 = 2
When x = -√2: y = (-√2)2 = 2
For (√2, 2): Check first equation: 2 = (√2)2 = 2 (Check)
Check second equation: 2 = 4 - (√2)2 = 4 - 2 = 2 (Check)
For (-√2, 2): Similar verification works
x2 + y2 = 9
x2/4 + y2/9 = 1
Solution:
x2 = 9 - y2
(9 - y2)/4 + y2/9 = 1
Multiply through by 36 to clear denominators:
9(9 - y2) + 4y2 = 36
81 - 9y2 + 4y2 = 36
81 - 5y2 = 36
-5y2 = -45
y2 = 9
y = ±3
When y = 3: x2 = 9 - 9 = 0 → x = 0
When y = -3: x2 = 9 - 9 = 0 → x = 0
For (0, 3): 02 + 32 = 9 (Check) and 0/4 + 9/9 = 1 (Check)
For (0, -3): 02 + (-3)2 = 9 (Check) and 0/4 + 9/9 = 1 (Check)
Determine whether the following points are in the solution region:
a) (0, 0)
b) (4, 0)
c) (2, 2)
Solution:
First, graph 2x + y = 6 as a solid line (because of ≤).
Find intercepts:
When x = 0: y = 6 → point (0, 6)
When y = 0: 2x = 6 → x = 3 → point (3, 0)
Draw a solid line through these points.
Test point (0, 0):
2(0) + 0 ≤ 6
0 ≤ 6 (True)
Shade the side containing (0, 0), which is below and to the left of the line.
a) (0, 0): 2(0) + 0 = 0 ≤ 6 (True - in the solution region)
b) (4, 0): 2(4) + 0 = 8 ≤ 6 (False - NOT in the solution region)
c) (2, 2): 2(2) + 2 = 6 ≤ 6 (True - on the boundary, included)
x + y ≤ 6
x - y ≤ 2
x ≥ 0
y ≥ 0
Solution:
Line 1: x + y = 6 (intercepts at (6, 0) and (0, 6))
Line 2: x - y = 2 (intercepts at (2, 0) and (0, -2))
Line 3: x = 0 (y-axis)
Line 4: y = 0 (x-axis)
The feasible region is where all inequalities are satisfied simultaneously.
x + y ≤ 6: region below the line
x - y ≤ 2: region above the line
x ≥ 0: region to the right of y-axis
y ≥ 0: region above x-axis
Vertex 1: Intersection of x = 0 and y = 0 → (0, 0)
Vertex 2: Intersection of x = 0 and x + y = 6 → (0, 6)
Vertex 3: Intersection of x + y = 6 and x - y = 2
Add equations: 2x = 8 → x = 4
Substitute: 4 + y = 6 → y = 2 → (4, 2)
Vertex 4: Intersection of x - y = 2 and y = 0 → (2, 0)
All four vertices satisfy all four inequalities.
2x - y > 4
x + 2y < 8
x ≥ 0
y ≥ 0
Solution:
2(3) - 1 > 4
6 - 1 > 4
5 > 4 (True)
3 + 2(1) < 8
3 + 2 < 8
5 < 8 (True)
3 ≥ 0 (True)
1 ≥ 0 (True)
Since the point (3, 1) satisfies all four inequalities, it is in the solution region.
Solution:
The triangle has three sides:
Side 1: From (0, 0) to (5, 0) along the x-axis
Side 2: From (0, 0) to (0, 4) along the y-axis
Side 3: From (5, 0) to (0, 4), which is the hypotenuse
Side 1: y = 0 (x-axis)
Side 2: x = 0 (y-axis)
Side 3: Find the equation of the line through (5, 0) and (0, 4)
Slope: m = (4 - 0)/(0 - 5) = -4/5
Using point-slope form with (0, 4): y - 4 = (-4/5)(x - 0)
y = -4x/5 + 4
Or in standard form: 4x + 5y = 20
The region is inside the triangle, so:
x ≥ 0 (to the right of the y-axis)
y ≥ 0 (above the x-axis)
For the hypotenuse, test point (0, 0):
4(0) + 5(0) = 0 ≤ 20 (True)
So: 4x + 5y ≤ 20
a) Define variables and write the constraints
b) Write the objective function to maximize profit
Solution:
Let x = number of chairs produced
Let y = number of tables produced
Labor constraint: 2x + 3y ≤ 60
(Each chair takes 2 hours, each table takes 3 hours, total 60 hours available)
Wood constraint: 4x + 6y ≤ 120
(Each chair needs 4 board feet, each table needs 6, total 120 available)
Non-negativity constraints: x ≥ 0, y ≥ 0
(Cannot produce negative furniture)
Maximize P = 50x + 80y
(Profit is $50 per chair plus $80 per table)
Constraints: 2x + 3y ≤ 60, 4x + 6y ≤ 120, x ≥ 0, y ≥ 0
Objective: Maximize P = 50x + 80y
Solution:
4x + 6y ≤ 120 can be simplified by dividing by 2:
2x + 3y ≤ 60
This is the same as the first constraint! So we really only have one main constraint.
Vertex 1: (0, 0)
Vertex 2: Intersection of x = 0 and 2x + 3y = 60 → (0, 20)
Vertex 3: Intersection of 2x + 3y = 60 and y = 0 → (30, 0)
At (0, 0): P = 50(0) + 80(0) = $0
At (0, 20): P = 50(0) + 80(20) = $1,600
At (30, 0): P = 50(30) + 80(0) = $1,500
The maximum profit is $1,600, which occurs at (0, 20).
Solution:
Let x = number of Product A
Let y = number of Product B
Machine 1 constraint: x + 2y ≤ 40
Machine 2 constraint: 2x + y ≤ 50
Non-negativity: x ≥ 0, y ≥ 0
Objective: Maximize P = 30x + 40y
Vertex 1: (0, 0)
Vertex 2: Intersection of x = 0 and x + 2y = 40 → (0, 20)
Vertex 3: Intersection of x + 2y = 40 and 2x + y = 50
From first equation: x = 40 - 2y
Substitute: 2(40 - 2y) + y = 50
80 - 4y + y = 50
-3y = -30 → y = 10
x = 40 - 2(10) = 20 → (20, 10)
Vertex 4: Intersection of 2x + y = 50 and y = 0 → (25, 0)
At (0, 0): P = 30(0) + 40(0) = $0
At (0, 20): P = 30(0) + 40(20) = $800
At (20, 10): P = 30(20) + 40(10) = $600 + $400 = $1,000
At (25, 0): P = 30(25) + 40(0) = $750
Solution:
Let x = servings of Food X
Let y = servings of Food Y
Protein constraint: 2x + 3y ≥ 18
Carbohydrate constraint: 3x + 2y ≥ 18
Non-negativity: x ≥ 0, y ≥ 0
Objective: Minimize C = 0.50x + 0.60y
Vertex 1: Intersection of 2x + 3y = 18 and x = 0 → (0, 6)
Vertex 2: Intersection of 2x + 3y = 18 and 3x + 2y = 18
Multiply first by 3: 6x + 9y = 54
Multiply second by 2: 6x + 4y = 36
Subtract: 5y = 18 → y = 18/5 = 3.6
2x + 3(3.6) = 18 → 2x = 7.2 → x = 3.6 → (3.6, 3.6)
Vertex 3: Intersection of 3x + 2y = 18 and y = 0 → (6, 0)
At (0, 6): C = 0.50(0) + 0.60(6) = $3.60
At (3.6, 3.6): C = 0.50(3.6) + 0.60(3.6) = $1.80 + $2.16 = $3.96
At (6, 0): C = 0.50(6) + 0.60(0) = $3.00
The minimum cost is $3.00, which occurs at (6, 0).
Solution:
Let x = acres of corn
Let y = acres of soybeans
Land constraint: x + y ≤ 100
Labor constraint: 3x + 2y ≤ 240
Minimum corn: x ≥ 20
Non-negativity: x ≥ 0, y ≥ 0 (redundant with x ≥ 20)
Objective: Maximize P = 200x + 150y
Vertex 1: Intersection of x = 20 and y = 0 → (20, 0)
Vertex 2: Intersection of x = 20 and x + y = 100 → (20, 80)
Vertex 3: Intersection of x + y = 100 and 3x + 2y = 240
From first: y = 100 - x
Substitute: 3x + 2(100 - x) = 240
3x + 200 - 2x = 240
x = 40 → y = 60 → (40, 60)
Vertex 4: Intersection of 3x + 2y = 240 and y = 0 → (80, 0)
(20, 0): Satisfies all constraints (Check)
(20, 80): Check 3x + 2y ≤ 240: 3(20) + 2(80) = 220 ≤ 240 (Check)
(40, 60): Satisfies all constraints (Check)
(80, 0): Check x ≥ 20: 80 ≥ 20 (Check)
At (20, 0): P = 200(20) + 150(0) = $4,000
At (20, 80): P = 200(20) + 150(80) = $4,000 + $12,000 = $16,000
At (40, 60): P = 200(40) + 150(60) = $8,000 + $9,000 = $17,000
At (80, 0): P = 200(80) + 150(0) = $16,000
Ready to Test Your Knowledge?
Now that you have practiced these problems, take the Module 5 Quiz to demonstrate your mastery!