Find vector that is orthogonal to (-1,2,2)
I begin by doing the cross-product of (-1,2,2) x (a,b,c) = (2c - 2b)i + (-c - 2a)j + (-b - 2a)k => (2c - 2b, -c - 2a, -b - 2a) which, when values for a,b and c are substituted in, should yield a new vector that is perpendicular to the original vector.
Yet, for instance, when I substitute {a = 2, b = 3, c = 1} => (2c - 2b, -c - 2a, -b - 2a) => (-4, -5, 7) which, when doing the dot product of this vector with the original: (-1,2,2) . (-4, -5, 7) does not equal 0, thus these two vectors are not perpendicular. I have used this method before, why is it not working in this case? Perhaps I made a simple mistake?
Thanks,
John