How to find trisecting points?
This is related to the midpoint formula.
Here is our segment:

Note that when we divide the segment into three equal parts, we are also dividing the horizontal and vertical legs of this right triangle into three equal parts. (Think similar triangles!)
Now, in terms of the coordinates, how long is that horizontal segment?
3x2−x1
How long is that vertical segment?
3y2−y1
How much do we have to add to x1 to find the x -coordinate of each intermediate point? What are those coordinates?
For the first point we need add only one segment. For the second point we need add two segments
So the first point has coordinates (x1+3x2−x1,y1+3y2−y1) or it
equal (32x1+x2,32y1+y2) .
The second point has coordinates (x1+2∗3x2−x1,y1+2∗3y2−y1) or it equal
(3x1+2x2,3y1+2y2).
We find the coordinates of two points
p1(32x1+x2,32y1+y2)p2(3x1+2x2,3y1+2y2).Example
Find the coordinates the points of trisections of the line segment joining the points A(2,−2) , B(−7,4) .
Solution
The first point has coordinates p1=(32∗2−7,32∗(−2)+4)=(−1,0)
The second point has coordinates p2=(32+2∗(−7),3−2+2∗4)=(−4,2)
Answer: p1(−1,0) ; p2(−4,2)