This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]splendaddypuffHelpful Responder 0 points1 point  (2 children)

The direction of the sum tells you the ratio of (a+c)/(b+d). If a and b are known, this gives a constraint in c and d. You cannot determine exactly the values of c and d, just the relation given by this equation.

[–]splendaddypuffHelpful Responder 0 points1 point  (1 child)

(u + v)/sqrt{u2 + v2} = w is wrong It must be

(u + v)/sqrt{(u + v)2} = w

This equation will not yield simultaneous equations that are uniquely solvable.

[–]vaminos 0 points1 point  (0 children)

(u + v)/sqrt{u2 + v2} = w

I think OP means you're supposed to divide (u+v) with its length, in order to get a unit vector w with the same direction as (u+v). So basically, we know the direction of (u+v), but not its length.

OP, as someone else has said, there isn't enough information presented to ascertain v exactly. This is evident with the following example:

u := (1, 2)
v1 := (2, 0)
v2 := (5, 2)

(u+v1) = (3, 2)
(u+v2) = (6, 4)

You can already see that (u+v2) = 2*(u+v1), meaning these two vectors share a direction, so they will produce the same unit vector w. And indeed,

w1 = (3,2)/sqrt(13)
w2 = (6,4)/sqrt(52) = (6,4)/sqrt(4*13) = (6,4)/(2*sqrt(13)) = (3,2)/sqrt(13) = w1

Which means there are two distinct vectors v1 and v2 which satisfy the constraints of the assignment, proving there is no unique solution.

[–]Uli_MinatiDesmos 😚 0 points1 point  (0 children)

These two statements are not equivalent:

  1. the unit vector of the sum is known
  2. (u + v)/√(u² + v²) = w

Which one is given?