📚 Length and Area Calculations Related to Straight Lines | 直线相关长度与面积的计算方法
In coordinate geometry, straight lines form the foundation for calculating distances, midpoints, and areas of polygons. Mastering these techniques is essential for solving exam problems involving triangles, quadrilaterals, and composite shapes bounded by linear equations.
在坐标几何中,直线是计算距离、中点和多边形面积的基础。掌握这些技巧对于解决涉及三角形、四边形以及由直线方程围成的复合图形面积问题至关重要。
1. Distance Between Two Points | 两点间的距离
The distance between two points \( A(x_1, y_1) \) and \( B(x_2, y_2) \) is derived from the Pythagorean theorem. This formula is the cornerstone of all length calculations in coordinate geometry.
两点 \( A(x_1, y_1) \) 和 \( B(x_2, y_2) \) 之间的距离由勾股定理推导而来。该公式是坐标几何中所有长度计算的基石。
AB = √[(x₂ − x₁)² + (y₂ − y₁)²]
For example, the distance between (1, 2) and (4, 6) is √[(4−1)² + (6−2)²] = √(9 + 16) = 5.
例如,点 (1, 2) 与 (4, 6) 之间的距离为 √[(4−1)² + (6−2)²] = √(9 + 16) = 5。
2. Midpoint of a Line Segment | 线段的中点
The midpoint M of a segment joining two points is the average of their x-coordinates and y-coordinates. This concept frequently appears alongside distance calculations in exam questions.
连接两点的线段中点 M 的坐标是两点横坐标和纵坐标的平均值。这一概念在考试中常与距离计算一同出现。
M = ((x₁ + x₂)/2, (y₁ + y₂)/2)
Given points P(−3, 5) and Q(7, −1), the midpoint is ((−3+7)/2, (5+(−1))/2) = (2, 2).
已知点 P(−3, 5) 和 Q(7, −1),中点为 ((−3+7)/2, (5+(−1))/2) = (2, 2)。
3. Area of a Triangle with Known Vertices | 已知顶点坐标的三角形面积
When the coordinates of a triangle’s vertices are known, its area can be computed directly using the determinant formula, which avoids the need to graph the triangle.
当三角形三个顶点的坐标已知时,可以直接使用行列式公式计算其面积,无需作图。
Area = ½ |x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|
For vertices A(0, 0), B(4, 0), and C(0, 3), the area is ½ |0(0−3) + 4(3−0) + 0(0−0)| = ½ × 12 = 6 square units.
对于顶点 A(0, 0)、B(4, 0) 和 C(0, 3),面积为 ½ |0(0−3) + 4(3−0) + 0(0−0)| = ½ × 12 = 6 平方单位。
4. Collinearity and Area | 三点共线与面积的关系
Three points are collinear if and only if the area of the triangle they form is zero. This provides a powerful algebraic test for collinearity without graphing.
三个点共线当且仅当它们构成的三角形面积为零。这为判断共线性提供了一种无需作图的强大代数检验方法。
x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂) = 0
Check whether A(1, 2), B(3, 6), and C(5, 10) are collinear: 1(6−10) + 3(10−2) + 5(2−6) = −4 + 24 − 20 = 0. Hence they are collinear.
检验 A(1, 2)、B(3, 6) 和 C(5, 10) 是否共线:1(6−10) + 3(10−2) + 5(2−6) = −4 + 24 − 20 = 0,因此它们共线。
5. Length of a Line Segment Cut by a Line | 直线截得的线段长度
When a line intersects the axes or another line, the length of the intercepted segment can be found by first determining the intersection points, then applying the distance formula.
当一条直线与坐标轴或另一条直线相交时,先求出交点坐标,再利用距离公式即可计算被截线段的长度。
Consider the line 2x + 3y = 12. Its x-intercept is (6, 0) and y-intercept is (0, 4). The length of the segment between these intercepts is √[(6−0)² + (0−4)²] = √(36 + 16) = √52 = 2√13.
考虑直线 2x + 3y = 12。其 x 截距为 (6, 0),y 截距为 (0, 4)。截距之间线段的长度为 √[(6−0)² + (0−4)²] = √(36 + 16) = √52 = 2√13。
6. Area Bounded by a Line and the Coordinate Axes | 直线与坐标轴围成的面积
A non-parallel line and the two axes form a right triangle. The area is simply half the product of the intercepts’ absolute values, a shortcut for many exam problems.
一条非平行直线与两条坐标轴围成一个直角三角形。其面积等于两个截距绝对值乘积的一半,这是许多考试题中的快捷解法。
Area = ½ × |x-intercept| × |y-intercept|
For the line 3x + 4y = 24, the intercepts are (8, 0) and (0, 6). The area is ½ × 8 × 6 = 24 square units.
对于直线 3x + 4y = 24,截距为 (8, 0) 和 (0, 6),面积为 ½ × 8 × 6 = 24 平方单位。
7. Perpendicular Distance from a Point to a Line | 点到直线的垂直距离
The perpendicular distance from a point (x₀, y₀) to a line ax + by + c = 0 is a standard formula. This length is essential when finding the height of a triangle whose base lies on a given line.
点 (x₀, y₀) 到直线 ax + by + c = 0 的垂直距离有标准公式。当三角形底边位于给定直线上时,该距离即为三角形的高。
d = |ax₀ + by₀ + c| / √(a² + b²)
Find the distance from (2, −1) to the line 3x − 4y + 5 = 0: d = |3(2) − 4(−1) + 5| / √(9 + 16) = |6 + 4 + 5| / 5 = 15/5 = 3.
求点 (2, −1) 到直线 3x − 4y + 5 = 0 的距离:d = |3(2) − 4(−1) + 5| / √(9 + 16) = |6 + 4 + 5| / 5 = 15/5 = 3。
8. Area of a Triangle Using Base and Perpendicular Height | 用底和高计算三角形面积
When one side of a triangle lies on a line, its length serves as the base, and the perpendicular distance from the opposite vertex to that line serves as the height. The area is then half the product of these two quantities.
当三角形的一边位于某条直线上时,该边的长度即为底边,而第三个顶点到该直线的垂直距离即为高。面积等于二者乘积的一半。
Area = ½ × base × height
Suppose a triangle has vertices A(1, 1), B(5, 1), and C(2, 7). The base AB = 4. The line AB is y = 1, so the height from C is |7 − 1| = 6. Therefore area = ½ × 4 × 6 = 12.
设三角形顶点为 A(1, 1)、B(5, 1) 和 C(2, 7)。底边 AB = 4。直线 AB 为 y = 1,因此 C 到 AB 的高为 |7 − 1| = 6。故面积为 ½ × 4 × 6 = 12。
9. Area of a Polygon Formed by Multiple Lines | 多条直线围成的多边形面积
When a polygon is bounded by several straight lines, its area can be calculated by decomposing it into triangles or by using the shoelace formula on its vertices.
当多边形由多条直线围成时,可以通过将其分解为多个三角形或对顶点使用鞋带公式来计算面积。
Shoelace: Area = ½ |Σ(xᵢyᵢ₊₁ − xᵢ₊₁yᵢ)|
For a quadrilateral with vertices (0, 0), (4, 0), (5, 3), (1, 3): Area = ½ |(0×0 − 4×0) + (4×3 − 5×0) + (5×3 − 1×3) + (1×0 − 0×3)| = ½ |0 + 12 + 12 + 0| = 12.
对于顶点为 (0, 0)、(4, 0)、(5, 3)、(1, 3) 的四边形:面积 = ½ |(0×0 − 4×0) + (4×3 − 5×0) + (5×3 − 1×3) + (1×0 − 0×3)| = ½ |0 + 12 + 12 + 0| = 12。
10. Distance Between Parallel Lines | 平行线间的距离
Parallel lines share the same gradient but have different intercepts. The perpendicular distance between two parallel lines ax + by + c₁ = 0 and ax + by + c₂ = 0 is given by a constant formula.
平行线具有相同的斜率但截距不同。两条平行线 ax + by + c₁ = 0 与 ax + by + c₂ = 0 之间的垂直距离由常数公式给出。
d = |c₁ − c₂| / √(a² + b²)
The distance between y = 2x + 1 and y = 2x − 3 is found by rewriting as 2x − y + 1 = 0 and 2x − y − 3 = 0. Thus d = |1 − (−3)| / √(4 + 1) = 4/√5.
求 y = 2x + 1 与 y = 2x − 3 之间的距离,改写为 2x − y + 1 = 0 和 2x − y − 3 = 0,因此 d = |1 − (−3)| / √(4 + 1) = 4/√5。
11. Summary Table of Key Formulas | 关键公式汇总表
The table below consolidates the essential formulas for quick revision before exams.
下表汇总了考试前快速复习所需的基本公式。
| Quantity | Formula |
| Distance between two points | √[(x₂ − x₁)² + (y₂ − y₁)²] |
| Midpoint | ((x₁+x₂)/2, (y₁+y₂)/2) |
| Triangle area (vertices) | ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)| |
| Point-to-line distance | |ax₀ + by₀ + c| / √(a² + b²) |
| Parallel line distance | |c₁ − c₂| / √(a² + b²) |
| Axes-triangle area | ½ × |x-int| × |y-int| |
量
公式
两点间距离
√[(x₂ − x₁)² + (y₂ − y₁)²]
中点
((x₁+x₂)/2, (y₁+y₂)/2)
三角形面积(顶点坐标)
½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|
点到直线距离
|ax₀ + by₀ + c| / √(a² + b²)
平行线间距离
|c₁ − c₂| / √(a² + b²)
坐标轴三角形面积
½ × |x截距| × |y截距|
12. Common Pitfalls and Tips | 常见错误与解题技巧
Students often forget to take absolute values, misidentify which coefficient corresponds to which axis, or confuse the distance formula with the midpoint formula. Always check whether the required length is along a horizontal or vertical direction first, as this can simplify calculations significantly.
学生常犯的错误包括忘记取绝对值、混淆坐标轴对应的系数,或将距离公式与中点公式混用。解题时先判断所求长度是否沿水平或竖直方向,这可以大幅简化计算。
When using the shoelace formula, ensure vertices are listed in order (clockwise or counterclockwise). When dealing with intercepts, if the line does not cross an axis, the intercept is infinite and the area method changes accordingly. Practice re-expressing line equations in the form ax + by + c = 0 before applying perpendicular distance formulas.
使用鞋带公式时,务必按顺序(顺时针或逆时针)列出顶点。处理截距时,若直线不穿过某条坐标轴,则该截距不存在,面积计算方法也需相应调整。在应用点到直线距离公式前,先将直线方程改写为标准形式 ax + by + c = 0。
Published by TutorHao | Mathematics Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导Cancel reply