Find a unit vector which is perpendicular to both of the vectors

4i + 2j - 3k and 2i - 3j + k.

what you want here is the cross-product for the 2 vectors [4,2,-3] and [2,-3,1]

an algebraic approach is to let that vector be [a,b,c],
then [a,b,c]∙[4,2,-3] = 0
and [a,b,c]∙[2,-3,1] = 0

from the first: 4a+2b-3c=0
from second: 2a-3b+c=0

double the second and subtract it from the first:
8b-5c=0
8b=5c
b/c = 5/8

let b=5 and c=8 back in first
4a + 10 -24 = 0
a=7/2

so a possible vector is [7/2,5,8] or
[7,10,16]
You can check that the dot product with each of the original vectors is zero, it works.

but you wanted a unit vector.
The magnitude of [7,10,16] is √(7^2+10^2+16^2) = √405

so the unit vector which is perpendicular to both is [7/√405,10/√405,16/√405]

there is a nice algorithm to find the cross product between two vectors [a,b,c] and [d,e,f]

line up the numbers above each other

a b c
d e f

the cross product is
[bf-ec,-(af-dc),ae-bd]

I follow this method,
block out the first column with my finger, then take the difference in the products of the diagonals of the remaining 2by2

block out the middle column with my finger , then take the -(difference in the products of the diagonals of the remaining 2by2)

block out the last column with my finger, then take the difference in the products of the diagonals of the remaining 2by2

e.g.

4 2-3
2-3 1

cross product is
[2-9,-(4+6),-12-4]
=[-7,-10,-16] which is a multiple of [7,10,16 from above.

HEYYYYRwei

To find a unit vector that is perpendicular to both vectors, we can use the cross product of the two vectors. The cross product of two vectors will give us a vector that is orthogonal (perpendicular) to both of them.

Let's denote the first vector as A = 4i + 2j - 3k and the second vector as B = 2i - 3j + k.

To calculate the cross product of A and B, follow these steps:

Step 1: Identify the coefficients of the unit vectors (i, j, k) for each vector:
A = 4i + 2j - 3k
B = 2i - 3j + k

Step 2: Calculate the cross product as follows:
i component: (2 * (-3)) - ((-3) * 2) = -6 - (-6) = 0
j component: ((4 * (-3)) - (2 * 2)) = (-12) - 4 = -16
k component: (4 * (-3)) - (2 * (-3)) = (-12) - (-6) = -6

So, the cross product of A and B is C = 0i - 16j - 6k.

Step 3: Normalize the resulting vector to obtain a unit vector.
The magnitude (length) of vector C is given by ||C|| = sqrt(0^2 + (-16)^2 + (-6)^2) = sqrt(256 + 36) = sqrt(292) ≈ 17.088

To obtain the unit vector u, divide each component of C by its magnitude:
u = (0/17.088)i + (-16/17.088)j + (-6/17.088)k

Therefore, the unit vector perpendicular to both A and B is approximately:
u = (0)i + (-0.936)j + (-0.351)k