Solving Systems of Linear Equations in Two Variables | 二元一次方程组的解法

📚 Solving Systems of Linear Equations in Two Variables | 二元一次方程组的解法

A system of linear equations in two variables consists of two or more equations that share the same two unknowns, usually written as x and y. Solving such a system means finding the ordered pair (x, y) that satisfies every equation simultaneously.

二元一次方程组是由两个或多个含有相同未知数 x 和 y 的一次方程组成的集合。解方程组就是要找到一组有序数对 (x, y),使其同时满足每一个方程。


1. Understanding the Standard Form | 理解标准形式

The standard form of a linear equation in two variables is ax + by = c, where a, b, and c are constants, and a and b are not both zero. For example, 2x + 3y = 6 and x − y = 2 form a system.

二元一次方程的标准形式为 ax + by = c,其中 a、b、c 为常数,且 a 和 b 不同时为零。例如,2x + 3y = 6 和 x − y = 2 就构成一个方程组。

Each equation represents a straight line on the Cartesian plane. The solution of the system is the intersection point of these lines, if it exists.

每一个方程在平面直角坐标系中都表示一条直线。方程组的解就是这些直线的交点(如果存在的话)。

It is essential to identify the coefficients a, b, and c correctly before applying any solving method. This helps avoid sign errors and substitution mistakes.

在应用任何解法之前,正确识别 a、b、c 的系数至关重要,这有助于避免符号错误和代入错误。


2. The Substitution Method | 代入消元法

The substitution method involves solving one equation for one variable in terms of the other, and then substituting this expression into the second equation. This reduces the system to a single linear equation in one variable.

代入消元法的步骤是先从一个方程中解出一个未知数(用另一个未知数表示),再将这个表达式代入第二个方程,从而将方程组转化为一个一元一次方程。

Consider the system: x + y = 10 and 2x − y = 5. From the first equation, we get y = 10 − x. Substituting into the second gives 2x − (10 − x) = 5.

例如解方程组:x + y = 10 和 2x − y = 5。由第一个方程得 y = 10 − x。将其代入第二个方程,得到 2x − (10 − x) = 5。

Simplify: 2x − 10 + x = 5, so 3x = 15, hence x = 5. Then substitute back: y = 10 − 5 = 5. Thus the solution is (5, 5).

化简得 2x − 10 + x = 5,即 3x = 15,所以 x = 5。再代回得 y = 10 − 5 = 5。因此解为 (5, 5)。

This method is especially effective when one variable has coefficient 1 or −1, because the expression becomes simple and easy to substitute.

当一个未知数的系数为 1 或 −1 时,代入法尤为有效,因为表达式简单,代入计算方便。


3. The Elimination Method | 加减消元法

The elimination method, also called the addition method, combines the two equations by adding or subtracting them to eliminate one variable. The goal is to make the coefficients of one variable opposites or equal.

加减消元法(又称加法消元法)通过将两个方程相加或相减来消去一个未知数。其目标是使某个未知数的系数互为相反数或相等。

For example, solve: 3x + 2y = 11 and 5x − 2y = 13. Adding the two equations eliminates y: (3x + 2y) + (5x − 2y) = 11 + 13, giving 8x = 24.

例如解方程组:3x + 2y = 11 和 5x − 2y = 13。将两个方程相加可消去 y:(3x + 2y) + (5x − 2y) = 11 + 13,得到 8x = 24。

Thus x = 3. Substituting x = 3 into the first equation gives 3(3) + 2y = 11, so 9 + 2y = 11, hence y = 1. The solution is (3, 1).

因此 x = 3。将 x = 3 代入第一个方程得 3(3) + 2y = 11,即 9 + 2y = 11,所以 y = 1。解为 (3, 1)。

If the coefficients do not match, multiply one or both equations by suitable constants before adding or subtracting.

如果系数不相同,可以先在一个方程或两个方程两边同时乘以适当的常数,再进行加减消元。


4. Solving by Multiplication and Elimination | 通过倍增系数求解

Sometimes neither variable can be eliminated directly. In such cases, multiply each equation by a number that makes the coefficients of one variable equal in absolute value.

有时无法直接消去任何一个变量。此时需要在每个方程两边乘以适当的数,使某个未知数的系数绝对值相等。

Example: 2x + 3y = 8 and 3x + 2y = 7. Multiply the first equation by 3 and the second by 2 to make the x coefficients equal: 6x + 9y = 24 and 6x + 4y = 14.

例如:2x + 3y = 8 和 3x + 2y = 7。将第一个方程乘以 3,第二个方程乘以 2,使 x 的系数相等:6x + 9y = 24 和 6x + 4y = 14。

Subtract the second from the first: (9y − 4y) = 24 − 14, so 5y = 10, hence y = 2. Substitute y = 2 into 2x + 3(2) = 8, giving 2x = 2, so x = 1.

第一个方程减去第二个方程:(9y − 4y) = 24 − 14,得 5y = 10,所以 y = 2。将 y = 2 代入 2x + 3(2) = 8,得 2x = 2,故 x = 1。

This method is powerful for systems where coefficients are not convenient, and it forms the basis for solving larger systems using matrices.

当系数不够方便时,这种方法非常有效,同时也是将来用矩阵解更大规模方程组的基础。


5. The Graphical Method | 图解法

The graphical method involves plotting both lines on the same coordinate plane and identifying their intersection point. Each equation is rearranged into slope-intercept form y = mx + c.

图解法是将两条直线绘制在同一坐标系中,并找出它们的交点。每个方程先转化为斜截式 y = mx + c。

For the system y = 2x + 1 and y = −x + 4, plot both lines. The first has slope 2 and y-intercept 1; the second has slope −1 and y-intercept 4. They intersect at (1, 3).

对于方程组 y = 2x + 1 和 y = −x + 4,分别画出两条直线。第一条斜率为 2,y 截距为 1;第二条斜率为 −1,y 截距为 4。两线相交于点 (1, 3)。

To verify algebraically, set 2x + 1 = −x + 4, giving 3x = 3, so x = 1. Then y = 2(1) + 1 = 3. The graphical solution matches the algebraic solution.

为验证代数结果,令 2x + 1 = −x + 4,得 3x = 3,故 x = 1。再代入得 y = 2(1) + 1 = 3。图解结果与代数结果一致。

Graphing is useful for estimation and for understanding the meaning of solutions, but it is not always precise when coordinates are not integers.

图解有助于估算和理解解的意义,但当坐标不是整数时,图解法往往不够精确。


6. Special Case: No Solution | 特殊情况:无解

When the two lines are parallel and distinct, the system has no solution. This occurs when the coefficients of x and y are proportional, but the constant terms are not.

当两条直线平行且不重合时,方程组无解。这种情况发生在 x、y 的系数成比例,但常数项不成比例时。

Example: x + 2y = 5 and 2x + 4y = 9. Multiply the first equation by 2: 2x + 4y = 10. The left sides match, but the right sides are 9 and 10, so no point satisfies both equations.

例如:x + 2y = 5 和 2x + 4y = 9。将第一个方程乘以 2 得到 2x + 4y = 10。左边相同,但右边分别为 9 和 10,因此没有任何点同时满足两个方程。

Algebraically, elimination leads to a false statement such as 0 = 1. This indicates that the system is inconsistent.

在代数上,消元会得到如 0 = 1 的矛盾等式。这表示方程组是不一致的(矛盾方程组)。


7. Special Case: Infinitely Many Solutions | 特殊情况:无穷多解

When the two equations represent the same line, every point on that line is a solution. This happens when one equation is a scalar multiple of the other.

当两个方程表示同一条直线时,直线上每一个点都是解。这种情况发生在其中一个方程是另一个方程的常数倍时。

Example: 3x − y = 4 and 6x − 2y = 8. The second equation is exactly twice the first, so they describe the same line. The system has infinitely many solutions.

例如:3x − y = 4 和 6x − 2y = 8。第二个方程正好是第一个方程的两倍,所以它们表示同一条直线。方程组有无穷多组解。

Elimination yields 0 = 0, which is always true. The general solution can be written as (t, 3t − 4) for any real number t, or with a parameterized expression.

消元后得到恒等式 0 = 0。通解可以写成 (t, 3t − 4),其中 t 为任意实数,也可以用其他参数化形式表示。

Such systems are called dependent systems. In practical applications, they indicate incomplete information or redundant constraints.

这样的方程组称为相关方程组。在实际应用中,它们往往表示信息不足或约束条件重复。


8. Solving Word Problems with Systems | 用方程组解应用题

Many real-world problems can be modeled using two linear equations. The key is to define the variables clearly and then translate each condition into an equation.

许多实际问题可以用两个线性方程来建模。关键是要清晰地定义未知数,然后将每个条件翻译成方程。

For example: The sum of two numbers is 12, and their difference is 4. Let x be the larger number and y the smaller. Then x + y = 12 and x − y = 4.

例如:两个数之和为 12,之差为 4。设较大的数为 x,较小的数为 y。则 x + y = 12,x − y = 4。

Add the equations: 2x = 16, so x = 8. Subtract: 2y = 8, so y = 4. Thus the two numbers are 8 and 4.

两式相加得 2x = 16,所以 x = 8。两式相减得 2y = 8,所以 y = 4。因此这两个数是 8 和 4。

Word problems often involve mixtures, distances, ages, or money. Always check that the solution makes sense in the context of the original problem.

应用题常涉及混合、行程、年龄或金钱问题。务必检验解是否符合原问题的实际意义。


9. Choosing the Best Method | 选择最佳解法

Choosing the most efficient method depends on the structure of the system. If one variable has coefficient 1 or −1, substitution is usually quickest.

选择最有效的方法取决于方程组的结构。若某个未知数系数为 1 或 −1,通常代入法最快。

If the coefficients of one variable are already opposites or equal, elimination is straightforward. If not, multiplication-based elimination works universally.

若某个变量的系数已经互为相反数或相等,则加减消元法最为直接。若否,使用倍增系数的消元法适用于所有情况。

Graphical methods are best for approximating solutions or verifying results, but they are slow and imprecise for exact answers.

图解法最适合估算解或验证结果,但在求精确解时较慢且不精确。

A good strategy is to first inspect the equations, then choose the method that involves the least arithmetic. Practice helps you recognise these patterns quickly.

好的策略是先检查方程,再选择计算量最小的方法。多加练习可以帮助你快速识别这些模式。


10. Common Mistakes and How to Avoid Them | 常见错误及其避免方法

A frequent mistake is forgetting to distribute the multiplication correctly when substituting a bracketed expression. For example, 2(x − 3) must become 2x − 6.

一个常见错误是在代入含括号的表达式时忘记正确运用乘法分配律。例如,2(x − 3) 必须化为 2x − 6。

Another error is ignoring signs during elimination. When subtracting an equation, every term on both sides must be subtracted, especially when negative signs are involved.

另一个错误是在消元过程中忽略符号。减去一个方程时,方程两边每一项都要被减去,特别是涉及负号的时候。

Students also forget to check their final answer by substituting back into both original equations. This simple verification can catch most arithmetic mistakes.

学生也常常忘记将最终答案代回原方程组进行检验。这个简单的检验可以捕获大部分计算错误。

Finally, when multiplying equations, ensure that both sides are multiplied by the same constant, not just one side. Otherwise the equation becomes unbalanced.

最后,对方程两边同乘一个数时,必须同时乘两边,而不是只乘一边,否则方程会失去平衡。


11. Worked Example: A Complete Solution | 完整例题解答

Let us solve the system: 4x + 3y = 18 and 2x − y = 4. We will use the substitution method because y has coefficient −1 in the second equation.

让我们解方程组:4x + 3y = 18 和 2x − y = 4。我们使用代入法,因为第二个方程中 y 的系数为 −1。

From the second equation, y = 2x − 4. Substitute this into the first equation: 4x + 3(2x − 4) = 18.

由第二个方程得 y = 2x − 4。将其代入第一个方程:4x + 3(2x − 4) = 18。

Expand: 4x + 6x − 12 = 18, so 10x = 30, hence x = 3. Substitute back into y = 2x − 4 to get y = 2(3) − 4 = 2.

展开得 4x + 6x − 12 = 18,即 10x = 30,因此 x = 3。代回 y = 2x − 4 得 y = 2(3) − 4 = 2。

Check in the first original equation: 4(3) + 3(2) = 12 + 6 = 18. Check in the second: 2(3) − 2 = 6 − 2 = 4. The solution is confirmed as (3, 2).

检验第一个原方程:4(3) + 3(2) = 12 + 6 = 18。检验第二个原方程:2(3) − 2 = 6 − 2 = 4。解确认为 (3, 2)。


12. Summary and Practice Tips | 总结与练习建议

To master solving systems of linear equations, you need to understand three core techniques: substitution, elimination, and graphical analysis. Each method has its own advantages and ideal usage scenarios.

要熟练掌握二元一次方程组的解法,你需要理解三种核心技巧:代入法、消元法和图解法。每种方法各有优点和适用场景。

Always determine the type of solution first: a unique solution, no solution, or infinitely many solutions. This helps you set your expectations before starting calculations.

解题前先判断解的类型:唯一解、无解还是无穷多解。这样可以帮助你在计算前预判结果。

Practice with a variety of systems, including those with fractions, decimals, and word problems. The more patterns you recognise, the faster and more accurate you will become.

练习应涵盖多种类型,包括含分数、小数以及应用题的方程组。你识别的模式越多,解题速度和准确度就越高。

Use substitution when a variable is isolated, use elimination for tidy coefficients, and use graphs to verify your reasoning. With regular practice, solving such systems becomes a reliable and swift process.

当某个变量已经单独表示时用代入法,系数整齐时用消元法,用图像来验证你的推理。通过定期练习,解这类方程组将变得可靠而高效。

Published by TutorHao | Math Revision Series | aleveler.com

Find Maths Textbooks on eBay UK

New, used and second-hand copies of textbooks and revision guides are often much cheaper than retail — check current listings and prices before you buy.

Browse on eBay UK →

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading