In a $3$-dimensional Euclidean space, we are given the points $A(1,0,-2)$ and $B(3,-1,1)$. Find two lines $a$ and $b$ such that $A\in a$ , $B\in b$ , and the distance $d(a,b)$ between the lines is $2$.
2026-03-26 19:17:15.1774552635
Given $2$ points, find the lines passing through the points which have a certain distance
45 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
You form first the vector $\vec{AB}=2\vec i-\vec j+3\vec k$. In order to use the formula $$d=\frac{|\vec{AB}\cdot(\vec u_a\text{ x } \vec u_b)|}{|\vec u_a\text{ x } \vec u_b|}$$ you need to choose the director vectors $\vec u_a$ and $\vec u_b$ of the searched lines $a$ and $b$. For this do you have many choices (your "two lines" are not unique).
Put, for example, $\vec u_a=\vec i+\vec j+\vec k$ and $\vec u_b=\vec i+2\vec j+t\vec k$ where $t$ is to be calculated (for this values $t$ is real and the choice is good but for many other values $t$ could be non-real so the choice could be bad).
ligne $a$: $\dfrac{x-1}{1}=\dfrac{y-0}{1}=\dfrac{z+2}{1}$
ligne $b$: $\dfrac{x-3}{1}=\dfrac{y+1}{2}=\dfrac{z-1}{t}$
$\vec{u_a}\text{ x }\vec{u_b}=\left|\begin{array}{cc}\vec i & \vec j&\vec k\\1 & 1&1\\1&2&t\end{array}\right|=(t-2)\vec i-(t-1)\vec j+\vec k$
$|\vec{u_a}\text{ x }\vec{u_b}|=\sqrt{(t-2)^2+(t-1)^2+1}=\sqrt{2t^2-6t+6}$
Now $$d=\dfrac{|\vec{AB}\cdot(\vec u_a\text{ x } \vec u_b)|}{|\vec u_a\text{ x } \vec u_b|}=\dfrac{|(2,-1,3)\cdot(t-2,-(t-1),1)|}{\sqrt{2t^2-6t+6}}=\dfrac{|3t-2|}{\sqrt{2t^2-6t+6}}=2$$ This gives the equation $t^2+12t-20=0$ and the values $$\color{red}{t=-6\pm\sqrt{56}}$$ each of them gives an answer for the lines $a$ and $b$.
► A good exercise for you could be to find another answer using the cartesian form of the lines
$$\begin{cases}x=az+p\\y=bz+q\end{cases}\space \space \space \begin{cases}x=a'z+p'\\y=b'z+q'\end{cases}$$ and the formula $$d=\frac{(p-p')(b-b')-(q-q')(a-a')}{\sqrt{(a-a')^2+(b-b')^2+(ab'-ba')^2}}$$ (You already know you can take suitable arbitrary values to get an answer).