
Joseph C. answered 08/10/20
Teacher | Researcher | Programmer
The fist thing to understand is that i*i = 1, j*j =1, i*j = 0, j*i =0. Once you know that you can do the problem like you would do any other multiplication one.
(4u)*v
= (4*(5i -j))*(3i+j)
= (20i - 4j) *( 3i + j )
= 60i*i + 20 i*j - 12 j*i - 4j*j
Only the i*i and j*j terms are non-zero therefore
60-4 = 56
Now a bit more on why i*i = 1, j*j =1, i*j = 0, j*i =0
The scalar multiplication is more general than this, but from the perspective of physics you can think about it like so. The operator (a*b) is the one that gives you the projection of vector "a" with respect to the vector "b".
The vectors i and j are special vectors that have length 1 and are perpendicular to one another. So when we do this i*i we are asking what is the projection of vector i with it self. Which is just the length of i therefore 1. Similarly with j, now let's look at i*j. Since i and j are perpendicular the projection of each other with respect to the other is zero.