0

If $\vec B$ is added to $\vec A$, the result is 4.8i + 1.2j. If $\vec B$ is subtracted from $\vec A$ , the result is −3.20 + 5.8j. What is the magnitude of $\vec A$?

Am I supposed to subtract the two, so 8i - 4.6j? But then how would I find A's magnitude? To find magnitude, I would need to multiply direction, length, and a random choice of either sin or cos. BUt I can't do that with the data I have.

  • If a random choice is allowed, then the magnitude of $A$ must be $4.5564367$. –  Sep 21 '16 at 13:56
  • Isn't random choice the formula? I had a previous problem where I just chose to use sin randomly and it marked it right. What's the formula? – user366783 Sep 21 '16 at 13:58
  • I don't see how a random choice of either $\sin$ or $\cos$ would be part of the solution to a question that asked, "What is the magnitude of the vector?" I suppose there must be something about the other question that you have not told us. Or maybe you just made a lucky guess. – David K Sep 22 '16 at 12:50

2 Answers2

1

$$(A + B) + (A - B) = 2A$$ $$||2A|| = 2||A||$$

Edit: I missed the part about the magnitude. $$||A|| = \sqrt{A\cdot A}$$

dmsul
  • 118
0

Hint: Let $A=xi+yj$ and $B=ai+bj$. Then $$(x+a)i+(y+b)j=4.8i+1.2j$$ $$(x-a)i+(y-b)j=-3.2i+5.8j$$ Equating the compoenents (i.e. $x+a=4.8$, $y+b=1.2$ etc.) will give you four equations to solve for four variables.

Student
  • 9,196
  • 8
  • 35
  • 81
  • How would I equate the components? And what would I do with the four variables? – user366783 Sep 21 '16 at 13:44
  • 1
    See, $x+a=4.8$ and $x-a=-3.2$. Adding both the equations give you $2x=0.4$ which implies that $x=0.2$. Similarily $y+b=1.2$ and $y-b=5.8$. Adding these two equations gives you $2y=7.0$ which implies that $y=3.5$. Thus $A=0.2i+3.5j$ and so the magnitude of $A$ is $\sqrt{0.2^2+3.5^2}$. – Student Sep 21 '16 at 14:20