Understanding Vector Multiplication

AI Thread Summary
The discussion revolves around understanding vector multiplication, specifically the dot product and its distinction from other forms of multiplication. The confusion arises from the algebraic representation of the dot product, where terms like a_x * b_y and a_y * b_x are omitted, leading to the simplified expression a_x * b_x + a_y * b_y. It is clarified that the dot product measures the magnitude of one vector in the direction of another, represented by a.b = |a||b|cos(theta). The conversation emphasizes the importance of understanding vector operations through proper educational resources, highlighting the significance of unit vectors in the dot product calculation. Ultimately, the user expresses newfound appreciation for vectors as powerful mathematical tools.
Hopjopper
Messages
4
Reaction score
0
Hi i am trying to understand this thoroughly

Basically i am trying to understand vector multiplication, i don't know if it is the cross product or the dot product i am thinking of

Okay so here is the question and what is confusing me in the answer

So if we have two vectors and we multiply them

a.b this in my mind as i understand it means this(in 2d):

(a_x + a_y ) * (b_x +b_y) = a_x * b_x + a_x * b_y + a_y * b_x + a_y * b_y

now i don't understand why the dot product misses these in the centre? and goes straight to only a_x * b_x + a_y * b_y (or the other way a.b.cos(theta))

what is it exactly that is being multiplied here? and furthermore what exactly is being found here?

if i wanted to move a vector from position a -> position b , by using the dot product am i finding that space in between? (i.e the vector which is required to be added to a to transform vector a to b?)

its really confusing me all of this?
 
Physics news on Phys.org
Your confusion is quite fundamental. You probably need to find a good introductory text on vectors and vector operations and study it.

The dot product shouldn't be hard to understand. It has an algebraic and a geometric significance and has lots of applications in physics.

A good textbook will explain all this.
 
PeroK said:
Your confusion is quite fundamental. You probably need to find a good introductory text on vectors and vector operations and study it.

The dot product shouldn't be hard to understand. It has an algebraic and a geometric significance and has lots of applications in physics.

A good textbook will explain all this.
can you just explain this to me if you don't mind

what happens to a_x * b_y + a_y * b_x
 
Nothing happens to them. These terms are simply not part of the dot product.
 
Last edited:
okay i have understood this and sorted it out

this is what i was looking for

i did confuse the dot product with vector addition

so if i have a vector


/|
/ |
/ | 7
/ |
5

and i wanted to move this point to say
/|
/ |
/ |8
/ |
3

i would need to add the vector

/|
/ | 1
/ |
-2

and dot product is actually only multiplying a vector which has nothing to do with the components but rather with the complete vector magnitude itself

such as a . b would be (if the angle between them is 15 degrees/radians)

a.b cos(15) because you would be getting the component of b which is in line with vector a so that they are both in the same direction and simply multiply them as if they are another scalar * vector multiplication
 
Hopjopper said:
(a_x + a_y ) * (b_x +b_y) = a_x * b_x + a_x * b_y + a_y * b_x + a_y * b_y

Your vectors are incomplete because they don't include the unit vectors: $$\vec A = a_x \hat x + a_y \hat y \\ \vec B = b_x \hat x + b_y \hat y$$ The product is $$ \vec A \cdot \vec B = (a_x \hat x + a_y \hat y) \cdot (b_x \hat x + b_y \hat y) \\ \vec A \cdot \vec B = a_x b_x (\hat x \cdot \hat x) + a_x b_y (\hat x \cdot \hat y) + \cdots$$ I'll let you fill in the rest. Some of the dot products of unit vectors equal zero, and some equal 1.
 

Similar threads

Replies
11
Views
3K
Replies
9
Views
2K
Replies
4
Views
1K
Replies
3
Views
5K
Replies
5
Views
1K
Replies
15
Views
2K
Replies
8
Views
1K
Replies
4
Views
1K
Back
Top