u = (2x/Sqrt[xyz], 2y/Sqrt[xyz],2z/Sqrt[xyz])
v = (1, 1, 1)
to check if u || v then I simply take the cross product and check if it equals 0. But to make the calculation easier "2" can be broken out of "u". But can I also break out "Sqrt[xyz]" without changing anthing? i.e. is it generally OK to instead of taking
(1, 1, 1)x(2x/Sqrt[xyz], 2y/Sqrt[xyz],2z/Sqrt[xyz]) taking (1, 1, 1)x(2x, 2y,2z). Basically, can you break out terms containing variables and by taking the cross product expect it to give you the correct answer?
v = (1, 1, 1)
to check if u || v then I simply take the cross product and check if it equals 0. But to make the calculation easier "2" can be broken out of "u". But can I also break out "Sqrt[xyz]" without changing anthing? i.e. is it generally OK to instead of taking
(1, 1, 1)x(2x/Sqrt[xyz], 2y/Sqrt[xyz],2z/Sqrt[xyz]) taking (1, 1, 1)x(2x, 2y,2z). Basically, can you break out terms containing variables and by taking the cross product expect it to give you the correct answer?