Question
Finding trisection points on a line segment using coordinates
Original question: *11. Let P, Q be points of trisection of AB, with P closer to A, and Q closer to B. Using your knowledge of how to find the coordinates of the midpoint of a segment, how would you find the coordinates of P and Q? Do this for the case when the points are A (4, 7) and B (16, -2).
Expert Verified Solution
Key concept: This problem uses the midpoint idea to locate points that divide a segment into three equal parts.
Step by step
Core idea
A point of trisection divides a segment into three equal lengths. If you know the coordinates of the endpoints, you can find those points by using the same coordinate-averaging idea behind the midpoint formula, but applied to one-third and two-thirds of the way from one endpoint to the other.
For a segment from to , the vector from to is . One trisection point is found by moving one-third of that vector from , and the other by moving two-thirds of that vector from .
Step-by-step for the given points
Here, and .
First find the change in coordinates:
- -change:
- -change:
Now take one-third of each change:
- One-third of is
- One-third of is
So the first trisection point, , is
For the second trisection point, , move two-thirds of the way from to :
- Two-thirds of is
- Two-thirds of is
So
Why this works
The midpoint formula gives the point halfway between two endpoints by averaging their coordinates. Trisection points work the same way, except the segment is divided into three equal parts instead of two. That means the first point is at of the full displacement and the second point is at of the full displacement.
This method is often faster than trying to use separate line equations, especially when the question gives direct coordinates.
Final answer
The trisection points are
Pitfall alert
A common mistake is to average the coordinates twice and think that gives the trisection points. The midpoint only gives the center of the segment, not points one-third and two-thirds along it. Another frequent error is to divide the endpoint coordinates themselves by 3 instead of dividing the displacement from one endpoint to the other. Always start from one endpoint, find the vector to the other endpoint, then scale that vector by and .
Try different conditions
If the problem instead asked for the trisection points of the segment from to , the same method would apply. The displacement is , so the points would be and . Any trisection question with coordinates can be solved by the same one-third and two-thirds vector method.
Further reading
midpoint formula, segment trisection, coordinate geometry
FAQ
How do you find the coordinates of trisection points on a line segment?
Find the displacement from one endpoint to the other, then take one-third and two-thirds of that vector and add them to the starting point. This gives the two points that divide the segment into three equal parts.
Why does the midpoint idea help with trisection points on coordinates?
The midpoint formula is based on averaging coordinates. Trisection points use the same coordinate idea, but instead of halfway, you move one-third and two-thirds of the way along the segment.