I am given two vectors:
u = [0, 2, 1]
v = [1, -1, 3]
I need to find a vector that is perpendicular to both vectors u and v.
So far, this is what I have:
let n = [x, y, z]
eqn 1: 0x + 2y + z = 0
eqn 2: x - y + 3z = 0
I have to use matrices to find the other vector since this is
a systems of eqns question.
[0 2 1 | 0] ...
[1 -1 3 | 0] ~ ...
I don't know what to do next...