Why do you have parameters? The cross product should just give you a vector. Also you shouldn't need reduced row echelon form or augmented matrices, it's a determinant calculation for the cross product: Given two vectors A=(a1,a2,a3) and B=(b1,b2,b3) in R^3,I understand the dot product is 0. And I can do the cross product. I ended up with parameters in row reduced echelon augmented matrix.
Are you using a 3x3 matrix where the first row is i, j, k and the second and third rows are the two input vectors to calculate the cross product?I understand the dot product is 0. And I can do the cross product. I ended up with parameters in row reduced echelon augmented matrix.
Yeah that seems fine as a method, because the cross product vector isn't unique anywayIf you don't know cross product then understanding dot products can help to figure out another way:
(a,b,c) * (1,2,3) = 0
(a,b,c,) * (-1,-1,1) = 0
where (a,b,c) is perpendicular to both specified vectors.
That gives this matrix,
.1 2 3 | 0
-1-1 1 | 0
Essentially, we are finding the kernel of this matrix. Row reduce,
1 2 3 | 0
0 1 4 | 0
1 0 -5 | 0
0 1 4 | 0
Thus the kernel of this matrix is span{(5,0,1),(0,4,-1)}
I'm stuck... anyone pls continue?
FIxedYeah that seems fine as a method, because the cross product vector isn't unique anyway
But your span doesn't seem right
Yes. This is very much the standard way to work out the cross-product, via the associated determinant (not strictly one). Then you derive the unit vectors of the 3 orthogonal vector to form the orthonormal basis.Are you using a 3x3 matrix where the first row is i, j, k and the second and third rows are the two input vectors to calculate the cross product?
That is exactly right.What does it mean by 'normalise a vector' . I did manage to find vector 'c' using the cross product initially.
From reading online sources, 'normalising a vector', you have to get the vector and divide it by the magnitude (in this case convert to a unit vector of length 1)
=a/|a|
Yes, those expressions are correct. To check that they are unit vectors (ie normalised), compute the norm of the new vectors. If it is 1, then they are normalised.