Find the shortest distance between the given vectors in 3D

Click For Summary
The discussion focuses on finding the shortest distance between given vectors in 3D, specifically using the formula |BA×BC|/|BC|. The vectors A, B, and C are defined as A=(6,-4,4), B=(2,1,2), and C=(3,-1,4). The calculations show that the shortest distance is 3, confirmed by alternative methods involving the vectors CA and CB. The user acknowledges the need for further study in this area and suggests that using directional vectors may provide a more robust approach. The thread highlights the importance of understanding vector operations in solving distance problems in three-dimensional space.
chwala
Gold Member
Messages
2,827
Reaction score
415
Homework Statement
Find the shortest distance from ##(6,-4,4)## to the line joining ##(2,1,2)## and ##(3,-1,4)##
Relevant Equations
vectors in 3D
This is a textbook problem...the only solution given is ##3.##...with no working shown or given.

My working is below; i just researched for a method on google, i need to read more in this area...use of the directional vector may seem to be a more solid approach.

Ok i let ##A=(6,-4,4)##, ##B=(2,1,2)## and ##C=(3,-1,4)##
The shortest distance will be given by the formula;

##\dfrac {|BA×BC|}{|BC|}##
where
##BA=4i-5j+2k##
##BC=i-2j+2k##
therefore on substituting into the formula we shall have,
##\dfrac {|-6i-6j-3k|}{|i-2j+2k|}##= ##\dfrac {\sqrt{36+36+9}}{\sqrt {1+4+4}}=\dfrac{9}{3}=3##
 
Last edited:
Physics news on Phys.org
I just realized that also
##\dfrac {|CA×CB|}{|CB|}## works! and same result is found.
 
The working out suggests first equating ## \sqrt{i} = x + iy ## and suggests that squaring and equating real and imaginary parts of both sides results in ## \sqrt{i} = \pm (1+i)/ \sqrt{2} ## Squaring both sides results in: $$ i = (x + iy)^2 $$ $$ i = x^2 + 2ixy -y^2 $$ equating real parts gives $$ x^2 - y^2 = 0 $$ $$ (x+y)(x-y) = 0 $$ $$ x = \pm y $$ equating imaginary parts gives: $$ i = 2ixy $$ $$ 2xy = 1 $$ I'm not really sure how to proceed from here.