I have two point in a coordinates system, let's say $(x_1,y_1)$ and $(x_2,y_2)$, and I want to find the coordinates of the point that separates the line into 3 parts
I want to know the coordinates of the two points, I tried this formula on them $Pt_x = (x_1+x_2)/3$ and $Pt_y = (y_1+y_2)$ but it didn't work
Hint:
If $A=(x_1,y_1)$ and $B=(x_2,y_2)$ and you want a point $P=(x,y)$ (on the line $AB$) such that $\overline{AP}=k\overline{AB}$ than, by similitude of triangles, you can esily found that: $$ x=x_1+k(x_2-x_1) \qquad y=y_1+k(y_2-y_1) $$
can you use this in your case?