Help with Vectors in R^3 - Noob Question

  • Thread starter Thread starter sibiryk
  • Start date Start date
  • Tags Tags
    Vectors
AI Thread Summary
The discussion focuses on evaluating expressions involving vectors u, v, and w in R^3, specifically whether they are defined or undefined. The participants clarify that the "*" symbol represents the dot product, and they emphasize the importance of determining if the expressions yield a real number or vector. The evaluations conclude that expressions a, b, and c are undefined due to mathematical operations that cannot be performed, while expression d yields a defined result of 9. The consensus confirms that the user’s understanding of the definitions and calculations is mostly correct. Overall, the thread highlights the significance of understanding vector operations in R^3.
sibiryk
Messages
32
Reaction score
0
First I want to say hello to everyone in here. I'm a noob.

Here is my problem.
Let u=(1.2.0), v=(0,0,3), and w=(0,1,0) are vectors in R^3.
Evaluate, if defined, the following expretions (if undefined state so)

a) (u * v)w
b) u+w*v
c) (u * u)/w
d) (v * v)/(w * w)


Should I try to calculate them or just tell if expretion is defined or undefined?
How can I tell if expretions above are defined?
 
Physics news on Phys.org
Should I try to calculate them or just tell if expretion is defined or undefined?

Read the instructions in the question!

Is "*" supposed to represent a dot product, or cross product?
 
James R said:
Read the instructions in the question!

Is "*" supposed to represent a dot product, or cross product?

It is a dot product.
 
"Evaluate" means "calculate."

If you calculate and get a definite answer (a real number or vector) then it is defined.
 
Are my answers correct?

a) 0
b) undefined ( I don't see how I can add scalar to vector)
c) undefined
d) 9
 
a, b, c are correct (you are correct that you can't add a scalar to a vector. In c, division by a vector is not defined). However, in
d) (v * v)/(w * w)
The answer is clearly a fraction.
 
The answer to (d) is correct. It's 9.
 
Hey, 9/1 is a fraction! (blushing)
 
Back
Top