A system of linear equations is a set of two or more equations with the same variables. The solution is the point (x, y) that satisfies ALL equations simultaneously. Graphically, this means finding where two lines intersect. There are three possible outcomes: exactly one solution (the lines cross at one point), no solution (the lines are parallel and never meet), or infinitely many solutions (the lines are identical, lying on top of each other). Two powerful algebraic methods — substitution and elimination — allow us to find these solutions without graphing. In real life, systems of equations appear whenever two constraints must be satisfied at once: comparing phone plans, mixing solutions, balancing budgets, or analyzing supply and demand.
🧪 Interactive
Simulation
Substitution: Isolate a variable in one equation, substitute into the other
Elimination: Multiply equations so that one variable cancels when equations are added/subtracted
Solution Types: One solution (intersecting lines), No solution (parallel lines, same slope different intercept), Infinitely many solutions (same line)
Problem: Solve the system: y = 2x - 1 and y = -x + 5
Choose a method: Both equations are solved for y, so substitution is most efficient. Set them equal: 2x - 1 = -x + 5
Solve for x: Add x to both sides: 3x - 1 = 5. Add 1: 3x = 6. Divide by 3: x = 2
Find y: Substitute x = 2 into either equation. Using y = 2x - 1: y = 2(2) - 1 = 3
State the solution: The solution is (2, 3). This is where the two lines intersect.
Verify in both equations: Check equation 1: y = 2(2) - 1 = 3 ✓. Check equation 2: y = -(2) + 5 = 3 ✓. Both are satisfied.
Answer: The solution is (2, 3)
Systems of equations are one of the most widely used tools in mathematics and science. Economists use them to find market equilibrium (where supply meets demand). Engineers use them to balance electrical circuits. Nutritionists use them to design meal plans that meet multiple dietary requirements. Even everyday decisions — like choosing between two phone plans or figuring out the right combination of coins — involve solving systems. Mastering this topic builds a foundation for linear algebra, which powers machine learning, computer graphics, and data science.
A. (3, 4)
B. (2, 5)
C. (1, 6)
D. (4, 3)
A. (5, 5)
B. (6, 4)
C. (7, 3)
D. (8, 2)
A. (3, 5)
B. (3, 8)
C. (5, 3)
D. (3, 3)
A. (2, 5)
B. (3, 3.5)
C. (6, -1)
D. (4, 2)
A. (3, 4)
B. (4, 7)
C. (5, 10)
D. (2, 1)
A. 100 adult tickets
B. 150 adult tickets
C. 200 adult tickets
D. 250 adult tickets
A. (1, 2)
B. (3, 1)
C. (2, 3)
D. (0, 7)
A. 100 minutes, $35
B. 150 minutes, $40
C. 250 minutes, $50
D. 200 minutes, $45
A. Exactly one solution: (1, 2)
B. No solution (the lines are parallel)
C. Infinitely many solutions (same line)
D. Exactly one solution: (5, 0)
A. No solution, because the lines are parallel
B. Exactly one solution at (4, 0)
C. Infinitely many solutions, because both equations represent the same line
D. Exactly two solutions
E1. In the system x = 5 - y and 2x + 3y = 14, the first equation already isolates x. What method is most efficient to use?
A. Substitution
B. Elimination
C. Graphing
D. Guessing
E2. To solve 3x + y = 10 and 3x - y = 2, you should _____ the equations to eliminate y.
A. Multiply
B. Add
C. Divide
D. Subtract
E3. How many solutions does the system 4x + 2y = 8 and 2x + y = 4 have?
A. No solution
B. Exactly one solution
C. Exactly two solutions
D. Infinitely many solutions
Self-Reflection
How did you feel about this topic?
Confident / Okay / Confused - Circle one
What is one thing you must remember?
Challenge Problem: Try creating your own challenge problem!
1. Understand:
2. Plan:
3. Execute:
4. Check:
| # | Answer | Type | Solution |
|---|---|---|---|
| 1 | B | Apply | final_step: Answer: B (2, 5). The two lines intersect at x = 2, y = 5. step_1: Both equations are solved for y, so set them equal: 2x + 1 = -x + 7 step_2: Add x to both sides: 3x + 1 = 7 step_3: Subtract 1 from both sides: 3x = 6, so x = 2 step_4: Substitute x = 2 into y = 2x + 1: y = 2(2) + 1 = 5 step_5: Verify in second equation: y = -(2) + 7 = 5 ✓ |
| 2 | C | Apply | final_step: Answer: C (7, 3). Adding the equations eliminated y, giving x directly. step_1: Add the two equations: (x + y) + (x - y) = 10 + 4 step_2: Simplify: 2x = 14, so x = 7 step_3: Substitute x = 7 into x + y = 10: 7 + y = 10, so y = 3 step_4: Verify in second equation: 7 - 3 = 4 ✓ |
| 3 | A | Apply | final_step: Answer: A (3, 5). Direct substitution gives a clean solution. step_1: The second equation gives x = 3 directly step_2: Substitute x = 3 into 2x + y = 11: 2(3) + y = 11 step_3: Simplify: 6 + y = 11, so y = 5 step_4: Verify: 2(3) + 5 = 6 + 5 = 11 ✓ |
| 4 | D | Apply | final_step: Answer: D (4, 2). The 2y terms canceled when we subtracted. step_1: Subtract the second equation from the first: (3x + 2y) - (x + 2y) = 16 - 8 step_2: Simplify: 2x = 8, so x = 4 step_3: Substitute x = 4 into x + 2y = 8: 4 + 2y = 8, so 2y = 4, y = 2 step_4: Verify in first equation: 3(4) + 2(2) = 12 + 4 = 16 ✓ |
| 5 | B | Apply | final_step: Answer: B (4, 7). Substitution turns the system into one equation in one variable. step_1: Substitute y = 3x - 5 into the second equation: 2x + (3x - 5) = 15 step_2: Combine like terms: 5x - 5 = 15 step_3: Add 5 to both sides: 5x = 20, so x = 4 step_4: Find y: y = 3(4) - 5 = 12 - 5 = 7 step_5: Verify in second equation: 2(4) + 7 = 8 + 7 = 15 ✓ |
| 6 | A | Analyze | final_step: Answer: A (100 adult tickets). The system gives a = 100 and s = 300. step_1: Define variables: a = adult tickets, s = student tickets step_2: Set up system: a + s = 400 (total tickets) and 8a + 5s = 2300 (total revenue) step_3: From the first equation: s = 400 - a. Substitute into the second: 8a + 5(400 - a) = 2300 step_4: Expand: 8a + 2000 - 5a = 2300. Simplify: 3a + 2000 = 2300. So 3a = 300, a = 100 step_5: Verify: s = 400 - 100 = 300. Revenue check: 8(100) + 5(300) = 800 + 1500 = 2300 ✓ |
| 7 | C | Analyze | final_step: Answer: C (2, 3). The solution of a system is the intersection point of the lines. step_1: The graph shows two lines: y = x + 1 and y = -2x + 7 step_2: Set equal: x + 1 = -2x + 7. Add 2x: 3x + 1 = 7. Subtract 1: 3x = 6, x = 2 step_3: Find y: y = 2 + 1 = 3 step_4: The intersection point visible on the graph is (2, 3) |
| 8 | D | Analyze | final_step: Answer: D (200 minutes, $45). At 200 minutes, both plans cost exactly $45. step_1: Set up cost equations: Plan A: C = 25 + 0.10m, Plan B: C = 15 + 0.15m step_2: Set equal: 25 + 0.10m = 15 + 0.15m step_3: Subtract 0.10m: 25 = 15 + 0.05m. Subtract 15: 10 = 0.05m. So m = 200 minutes step_4: Find cost: C = 25 + 0.10(200) = 25 + 20 = $45 step_5: Verify Plan B: C = 15 + 0.15(200) = 15 + 30 = $45 ✓ |
| 9 | B | Evaluate | final_step: Answer: B (No solution). Parallel lines never intersect, so there is no (x, y) that satisfies both. step_1: Multiply the second equation by 2: 2(x + 2y) = 2(3), giving 2x + 4y = 6 step_2: Compare with the first equation: 2x + 4y = 10 step_3: Same left side (2x + 4y) but different right sides (10 ≠ 6). This is a contradiction. step_4: The lines have the same slope (-1/2) but different y-intercepts (2.5 vs 1.5), so they are parallel |
| 10 | C | Evaluate | final_step: Answer: C (Infinitely many solutions). When one equation is a multiple of the other, the lines are identical. step_1: Multiply the second equation by 3: 3(x - 2y) = 3(4), giving 3x - 6y = 12 step_2: Compare with the first equation: 3x - 6y = 12 step_3: Both equations are identical! The first equation is exactly 3 times the second. step_4: Since both equations describe the same line, every point on that line is a solution |
Multiple Choice:
E1. A
E2. B
E3. D
Self-Reflection:
Sample answer: I feel okay about Systems of Linear Equations. One thing I must remember is to always check my work by substituting my answer back into the original equation.
Problem-Solving Strategy (4-Step):
See Answer Key for detailed solution steps.
| Problem # | My Score | Error Type | What I Learned / How to Improve |
|---|---|---|---|
| #9 | 0/15 | Concept | "I forgot to check my answer. Next time I will verify my solution." |
Error Types: Concept (개념), Procedure (절차), Calculation (계산), Reading (문제 이해), Careless (실수)
Review this worksheet on these dates for maximum retention:
Today (Initial Learning)
Tomorrow (Day 2)
Day 3 (Short-term consolidation)
Week 26 (1 week later)
Month 1 (Long-term retention)
Why this works: Ebbinghaus forgetting curve research shows spaced repetition increases retention by 200%+
이 자료는 배움터의 교육 자산입니다. 무단 복제 및 배포는 법적 조치가 따를 수 있습니다.
© 2025 Baeumteo. All Rights Reserved. | www.baeumteo.ai