3

Please help! This was in a textbook and I cannot seem to make sense of it. Would it not be 2?

The two vectors a and b are perpendicular. If a has magnitude 8 and b has magnitude 3, what is |a−2b|??

I

Chloe N
  • 31

2 Answers2

0

i will use brute force method let us suppose we have following vector

$a=[{\sqrt{64},0,0}]$

$b=[ 0, \sqrt{9}, 0]$

they are orthogonal $a*b=0$

now $a-2*b=[ \sqrt(64), -2*\sqrt{9}, 0]$

length of this will be $\sqrt{64+4*9+0}$

which is equal to $\sqrt{100}=10$

0

Since your vectors are perpendicular, they don't directly add and subtract like scalars would. Denoting them in R$^2$:

$\textbf{a} - 2\textbf{b} = \begin{pmatrix} 8 \\ 0 \end{pmatrix} - 2 \begin{pmatrix} 0 \\ 3 \end{pmatrix} = \begin{pmatrix} 8 \\ -6 \end{pmatrix}.$

Thus we need to consider what the value of $\begin{pmatrix} 8 \\ -6 \end{pmatrix}$.

Often, this is calculated with the Euclidean Distance, as $\left| \begin{pmatrix} 8 \\ -6 \end{pmatrix} \right| = \sqrt{8^2 + (-6)^2} = 10. $

Logan S.
  • 405