how can I show that the point $Q = (2, 5, -3)$ lies between $P(1, 6, -5)$ and $R(4, 3, 1)$? I have already proved that the three points are collinear, but I would like to show which is in the middle. Is there any way, other than drawing a picture, that can prove this fact?
2026-03-27 00:09:37.1774570177
On
Proving a point lies between two others
325 Views Asked by user400359 https://math.techqa.club/user/user400359/detail At
4
There are 4 best solutions below
2
On
We have that the line PR is given by
$$P+t(R-P)=(1, 6, -5)+t(3, -3, 6)$$
then check whether $\exists t$ such that
$$(2, 5, -3)=(1, 6, -5)+t(3, -3, 6)$$
and recall that
- $t=0$ gives $P$
- $t=1$ gives $R$
- $0<t<1$ the point lies between $P$ and $R$
$R$ is a candidate to be between $P$ and $R$.
To check it, using barycentric coordinates, you have to show the system of equations in $t$ $$tP+(1-t)R=Q\iff\begin{cases}t+4(1-t)=2\\6t+3(1-t)=5\\-5t+1-t=-3 \end{cases}$$ has a solution $t\in[0,1]$