Skip to main content
Logo image

Section 4.4 Coordinate Vectors

In Section 4.3, we visualized vectors as directed line segments with magnitudes and direction. Now, we will explore vectors through a coordinate approach, where we express vectors in terms of their components along the coordinate axis.

Subsection 4.4.1 Vectors in Coordinates

Definition 4.4.1. Component Form of a Vector.

A vector \(\mathbf{v}\) with initial point \(P(x_1,y_1)\) and terminal point \(Q(x_2,y_2)\) can be expressed in various ways. One common representation is as the directed line segment from point \(P\) to point \(Q\text{,}\) denoted as \(\overrightarrow{PQ}\text{.}\) Alternatively, we can describe it using the changes in the \(x-\) and \(y-\) coordinates between points \(P\) and \(Q\text{.}\) These changes are referred to as the horizontal component and vertical component of the vector, denoted as \(v_x\) and \(v_y\) respectively. Mathematically, these representations are all equivalent:
\begin{align*} \mathbf{v}\amp = \overrightarrow{PQ}\\ \amp = \langle x_2-x_1,y_2-y_1\rangle\\ \amp = \langle v_x,v_y\rangle \end{align*}
as illustrated in the following figure.

Remark 4.4.2. Notation.

To avoid confusion with the notation for a point and an interval, we use the symbol \(\langle v_1,v_2\rangle\) for an ordered pair that represents a vector in component form. Lowercase letters are used to represent the components.

Definition 4.4.3. Position Vector.

A vector, \(\mathbf{v}\) with an initial point at \((0,0)\) and terminal point at \((a,b)\) is called the position vector and can be written as
\begin{equation*} \mathbf{v}=\langle a-0,b-0\rangle=\langle a,b\rangle\text{.} \end{equation*}

Remark 4.4.4.

The position vector represents the terminal point of any vector \(\mathbf{v}\) when its initial point is at the origin. Essentially, it is \(\mathbf{v}\) translated so that its initial side starts at the origin. This translation does not change the magnitude or direction, making the two vectors equivalent. Thus, we can refer to both vectors as \(\mathbf{v}\text{.}\) In other words, the terminal point of a vector starting at the origin is defined by its horizontal and vertical components.

Example 4.4.5.

Find the position vector of the vector that goes from \(P(2,-1)\) to \(Q(5,3)\text{.}\)

Solution.

From Definition 4.4.1, our original vector can be written as:
\begin{equation*} \mathbf{v}=\overrightarrow{PQ}=\langle5-2,3-(-1)\rangle=\langle3,4\rangle\text{.} \end{equation*}
Then by Definition 4.4.3, the position vector is:
\begin{equation*} \mathbf{v}=\langle3,4\rangle\text{.} \end{equation*}
This vector starts at the origin with 3 as its horizontal component and 4 as its vertical component, as illustrated in the figure below.

Definition 4.4.6. Zero Vector.

The zero vector is the vector \(\mathbf{0}=\langle0,0\rangle\)

Definition 4.4.7. Magnitude of a Vector.

Given a vector \(\mathbf{v}=\langle v_x,v_y\rangle\text{,}\) the magnitude or length is
\begin{equation*} \|\mathbf{v}\|=\sqrt{v_x^2+v_y^2} \end{equation*}

Remark 4.4.8.

This formula is derived from the Pythagorean Theorem or the distance formula where the square of the magnitude equals the square of the horizontal component plus the square of the vertical component:
\begin{equation*} \|\mathbf{v}\|^2=v_x^2+v_y^2 \end{equation*}
This relationship can be visually understood using the Pythagorean Theorem, as illustrated in the following figure.

Example 4.4.9.

Find the magnitude of each vector.
(a)
\(\mathbf{u}=\langle10,-5\rangle\)
Solution.
\begin{equation*} \|\mathbf{u}\|=\sqrt{10^2+(-5)^2}=\sqrt{125}=\sqrt{25\cdot5}=\sqrt{25}\cdot\sqrt{5}=5\sqrt{5} \end{equation*}
(b)
\(\mathbf{v}=\langle-2,7\rangle\)
Solution.
\begin{equation*} \|\mathbf{v}\|=\sqrt{(-2)^2+7^2}=\sqrt{4+49}=\sqrt{53} \end{equation*}
(c)
\(\mathbf{w}=\langle\frac{12}{13},\frac{5}{13}\rangle\)
Solution.
\begin{equation*} \|\mathbf{w}\|=\sqrt{\left(\frac{12}{13}\right)^2+\left(\frac{5}{13}\right)^2}=\sqrt{\frac{144}{169}+\frac{25}{169}}=\sqrt{\frac{169}{169}}=1 \end{equation*}

Definition 4.4.10. Unit Vector.

A vector \(\mathbf{u}\) with magnitude 1, \(\|\mathbf{u}\|=1\text{,}\) is called a unit vector

Definition 4.4.11. Algebraic operations of vectors.

If \(\mathbf{u}=\langle u_x,u_y\rangle\text{,}\) \(\mathbf{v}=\langle v_x,v_y\rangle\text{,}\) and \(c\) is a scalar, then
\begin{align*} \mathbf{u}+\mathbf{v}\amp = \langle u_x+v_x,u_y+v_y\rangle\\ \mathbf{u}-\mathbf{v}\amp = \langle u_x-v_x,u_y-v_y\rangle\\ c\mathbf{u}\amp = \langle cu_x,cu_y\rangle \end{align*}

Example 4.4.12.

Let \(\mathbf{u}=\langle 5, 1\rangle\) and \(\mathbf{v}=\langle 4, 6\rangle\text{.}\) Compute the following:
(a)
\(\mathbf{u}+\mathbf{v}\)
Solution.
\(\mathbf{u}+\mathbf{v}=\langle 5, 1\rangle+\langle 4, 6\rangle=\langle 5+4,1+6\rangle=\langle 9,7\rangle\)
(b)
\(\mathbf{u}-\mathbf{v}\)
Solution.
\(\mathbf{u}-\mathbf{v}=\langle 5, 1\rangle-\langle 4, 6\rangle=\langle 5-4,1-6\rangle=\langle 1,-5\rangle\)
(c)
\(3\mathbf{u}\)
Solution.
\(3\mathbf{u}=3\langle 5,1\rangle=\langle 3\cdot5,3\cdot1\rangle=\langle 15,3\rangle\)

Subsection 4.4.2 Properties of Addition, Length, and Scalar Multiplication

Definition 4.4.13. Properties of Vectors.

If \(\mathbf{u}\text{,}\) \(\mathbf{v}\text{,}\) and \(\mathbf{w}\) are vectors, \(\mathbf{0}\) is the zero vector, and \(c\) and \(d\) are scalars, then
Vector Addition
  • \(\displaystyle \mathbf{u}+\mathbf{v}=\mathbf{v}+\mathbf{u}\)
  • \(\displaystyle \mathbf{u}+(\mathbf{v}+\mathbf{w})=(\mathbf{u}+\mathbf{v})+\mathbf{w}\)
  • \(\displaystyle \mathbf{u}+\mathbf{0}=\mathbf{u}\)
  • \(\displaystyle \mathbf{u}+(-\mathbf{u})=\mathbf{0}\)
Length of a Vector
  • \(\displaystyle \|c\mathbf{u}\|=|c|\|\mathbf{u}\|\)
Scalar Multiplication
  • \(\displaystyle c(\mathbf{u}+\mathbf{v})=c\mathbf{u}+c\mathbf{v}\)
  • \(\displaystyle (c+d)\mathbf{u}=c\mathbf{u}+d\mathbf{u}\)
  • \(\displaystyle (cd)\mathbf{u}=c(d\mathbf{u})=d(c\mathbf{u})\)
  • \(\displaystyle 1\mathbf{u}=\mathbf{u}\)
  • \(\displaystyle 0\mathbf{u}=\mathbf{0}\)
  • \(\displaystyle c\mathbf{0}=\mathbf{0}\)

Subsection 4.4.3 Finding a Unit Vector

Sometimes it is useful to look at problems involving vectors in terms of a vector in the same direction, but with a magnitude of one. Recall that a unit vector \(\mathbf{u}\) is a vector whose length is one, \(\|\mathbf{u}\|=1\text{.}\) To find a unit vector in the same direction, you will need to divide that vector by its length or magnitude.

Definition 4.4.14. Unit Vector That Has the Same Direction as \(\mathbf{v}\).

Let \(\mathbf{v}\) be any vector. The vector
\begin{equation*} \mathbf{u}=\frac{\mathbf{v}}{\|\mathbf{v}\|} \end{equation*}
is a unit vector that has the same direction as \(\mathbf{v}\text{.}\)

Example 4.4.15.

Find the unit vector that has the same direction as \(\mathbf{v}=\langle10,-5\rangle\)

Solution.

From Example 4.4.9, we know \(\|\mathbf{v}\|=5\sqrt{5}\text{.}\) Then
\begin{align*} \mathbf{u} \amp = \frac{\mathbf{v}}{\|\mathbf{v}\|} \\ \amp = \frac{\langle10,-5\rangle}{5\sqrt{5}} \\ \amp = \left\langle\frac{10}{5\sqrt{5}},-\frac{5}{5\sqrt{5}}\right\rangle \\ \amp = \left\langle\frac{2}{\sqrt{5}},-\frac{1}{\sqrt{5}}\right\rangle \\ \amp = \left\langle\frac{2\sqrt{5}}{5},-\frac{\sqrt{5}}{5}\right\rangle \end{align*}
We can verify that this is in fact a unit vector by computing the magnitude:
\begin{align*} \|\mathbf{u}\| \amp = \left\|\left\langle\frac{2\sqrt{5}}{5},-\frac{\sqrt{5}}{5}\right\rangle\right\| \\ \amp = \sqrt{\left(\frac{2\sqrt{5}}{5}\right)^2+\left(-\frac{\sqrt{5}}{5}\right)^2} \\ \amp = \sqrt{\frac{4\cdot5}{25}+\frac{5}{25}} \\ \amp = \sqrt{\frac{25}{25}} \\ \amp = 1 \end{align*}
Two useful unit vectors are \(\mathbf{i}\) and \(\mathbf{j}\text{.}\) The vector \(\mathbf{i}\) represents the unit vector whose direction is along the positive \(x\)-axis and the vector \(\mathbf{j}\) represents the unit vector whose direction is along the positive \(y\)-axis.

Definition 4.4.16. \(\mathbf{i}\) and \(\mathbf{j}\).

The unit vectors \(\mathbf{i}\) and \(\mathbf{j}\) are defined as
\begin{equation*} \mathbf{i}=\langle1,0\rangle,\quad\mathbf{j}=\langle0,1\rangle\text{.} \end{equation*}
We can now represent any vector using the unit vectors \(\mathbf{i}\) and \(\mathbf{j}\text{.}\)

Definition 4.4.17. Horizontal and Vertical Components of a Vector.

Let \(\mathbf{v}\) be any vector. Then we can express \(\mathbf{v}\) in terms of its horizontal and vertical components
\begin{equation*} \mathbf{v}=\langle v_x,v_y\rangle=v_x\mathbf{i}+v_y\mathbf{j} \end{equation*}

Subsection 4.4.4 Vector Components and Direction

Recall that a vector is composed of a direction and magnitude. Earlier in this section we learned how to calculate the magnitude. Now we will discuss how to calculate the direction.

Definition 4.4.18.

Let \(\mathbf{v}=\langle v_x,v_y\rangle\) be a vector. The angle \(\theta\) represents the direction of \(\mathbf{v}\) and is the smallest positive angle in standard position formed by the positive \(x\)-axis and \(\mathbf{v}\) (\(0^{\circ}\leq\theta\leq360^{\circ}\)).

Remark 4.4.19. Finding Direction of a Vector.

Recall that \(\tan\theta=\frac{v_y}{v_x}\text{,}\) so
\begin{equation*} \theta=\tan^{-1}\left(\frac{v_y}{v_x}\right) \end{equation*}
where \(-90^{\circ} \lt \theta \lt 90^{\circ}\text{.}\)
To find the direction (\(\theta\)), first draw the vector. If \(v_x=0\) or \(v_y=0\text{,}\) then use the drawing to find \(\theta\text{.}\) If \(v_x\neq0\) and \(v_y\neq0\text{,}\) then note the quadrant where \(\theta\) lies in.
  • If \(\theta\) is in Quadrant I, then \(\theta=\tan^{-1}\left(\frac{v_y}{v_x}\right)\text{.}\)
  • If \(\theta\) is in Quadrant II or III, then \(\theta=\tan^{-1}\left(\frac{v_y}{v_x}\right)+180^{\circ}\text{.}\)
  • If \(\theta\) is in Quadrant IV, then \(\theta=\tan^{-1}\left(\frac{v_y}{v_x}\right)+360^{\circ}\text{.}\)
We now have all the information needed to write a vector.

Definition 4.4.20. Finding Horizontal and Vertical Components of Vectors from Magnitude and Direction.

For vector \(\mathbf{v}\) with magnitude \(\|\mathbf{v}\|\) and direction \(\theta\text{,}\) we can use Right Triangle Trigonometry to solve for the horizontal and vertical components, denoted as \(v_x\) and \(v_y\text{,}\) respectively:
\begin{equation*} v_x=\|\mathbf{v}\|\cos\theta, \quad v_y=\|\mathbf{v}\|\sin\theta \end{equation*}
This allows us to express \(\mathbf{v}\) as
\begin{equation*} \mathbf{v}=\|\mathbf{v}\|\cos\theta\mathbf{i}+\|\mathbf{v}\|\sin\theta\mathbf{j}=\langle\|\mathbf{v}\|\cos\theta,\|\mathbf{v}\|\sin\theta\rangle \end{equation*}

Subsection 4.4.5 Velocity

Vectors can be used to represent the velocity of a moving canoe. These velocity vectors have a direction and magnitude.

Example 4.4.21.

Wind is blowing from the house Nā Leo Hoʻolua (N\(22.5^{\circ}\)W) at 10 knots. Write the wind velocity as a vector \(\mathbf{v}\text{.}\)

Solution.

First, we note that since the velocity is 10 knots, we have \(\|\mathbf{v}\|=10\text{.}\) Next, we need to find the direction. Since \(\theta\) is measured from the positive \(x\)-axis, by Definition 4.4.20 we see that
\begin{equation*} \theta=90^{\circ}+22.5^{\circ}=112.5^{\circ} \end{equation*}
To find the vector, will need the horizontal and vertical components:
\begin{align*} v_x =\amp \|\mathbf{v}\|\cos\theta=10\cos112.5^{\circ}\approx-3.8\\ v_y =\amp \|\mathbf{v}\|\sin\theta=10\sin112.5^{\circ}\approx9.2 \end{align*}
Thus
\begin{equation*} \mathbf{v}\approx-3.8\mathbf{i}+9.2\mathbf{j}=\langle-3.8,9.2\rangle \end{equation*}

Example 4.4.22. Calculating Canoe Velocity with Current Drift.

The vaka Marumaru Atua sets sail on a northward voyage from Rarotonga to Hawaiʻi, maintaining a steady speed of 5 knots through the water. However, a 1-knot current flows in the direction of Lā Kona (a heading of 260 degrees). This current’s influence resembles walking on a moving treadmill, where forward progress is limited despite moving legs. Similarly, Marumaru Atua navigates while the water, in the form of a current, also moves. In sailing, the direction and speed at which the current is pushing the vaka are referred to as set and drift, respectively.
The actual velocity of Marumaru Atua is the resultant of the canoe’s velocity and the current’s velocity. This resultant velocity vector denotes the canoe’s speed and direction relative to fixed objects on Earth, influenced by the current’s impact on Marumaru. The magnitude and direction of this velocity vector are represented by the speed over ground (SOG) and course over ground (COG), respectively. SOG represents the speed of the canoe relative to fixed objects, accounting for both the canoe’s speed through the water and the current’s speed and direction. COG indicates the direction of the canoe’s motion over the Earth’s surface.
Understanding the difference between the velocity over water and the velocity relative to fixed objects illustrates how set and drift show how the current influences the vaka’s course and speed over ground. Voyagers need to account for set and drift when navigating to ensure they reach their intended destination accurately and safely.
(a)
Express Marumaru Atua’s velocity vector, represented as \(\mathbf{v}_m\text{,}\) and the velocity vector of the current, denoted as \(\mathbf{v}_c\text{,}\) in terms of their horizontal and vertical components. Round your answer to two decimal places.
Solution.
First, we draw the velocity vectors for Marumaru Atua and the current:
Since Marumaru Atua is sailing north at 5 knots, the velocity is:
\begin{equation*} \mathbf{v}_m=\langle0,5\rangle. \end{equation*}
To find the vector for the current, we need to know \(t\text{,}\) the angle of the velocity vector in standard position (see Definition 1.2.8). We begin by drawing the heading angle of \(260^{\circ}\) and its reference angle, \(t'\text{.}\)
Illustration of the heading angle and its reference angle
We can see from the figure that \(260^{\circ}+t'=270^{\circ}\text{,}\) thus we get our reference angle as
\begin{equation*} t'=10^{\circ}\text{.} \end{equation*}
We now draw our angle, \(t\text{,}\) in standard position and the reference angle, \(t'\text{:}\)
Illustration of the angle t in standard position and the reference angle t’
From Remark 1.5.9, we have
\begin{equation*} t=180^{\circ}+10^{\circ}=190^{\circ}\text{.} \end{equation*}
Thus, by Definition 4.4.20 the velocity for the current is
\begin{equation*} \mathbf{v}_c=\langle1\cdot\cos190^{\circ},1\cdot\sin190^{\circ}\rangle\approx\langle-0.98,-0.17\rangle. \end{equation*}
(b)
Find \(\mathbf{v}_g\text{,}\) the velocity of Marumaru Atua relative to fixed objects on the ground.
Solution.
The velocity relative to fixed objects on the ground is the sum of the two vectors:
\begin{align*} \mathbf{v}_g=\mathbf{v}_m+\mathbf{v}_c \amp = \langle0,5\rangle+\langle-0.98,-0.17\rangle \\ \amp = \langle-0.98,5-0.17\rangle \\ \amp = \langle-0.98,4.83\rangle \end{align*}
This can visually demonstrated in the figure below
(c)
Find the speed over ground (SOG) and the course over ground (COG) of Marumaru Atua, rounded to one decimal place.
Solution.
The actual speed of Marumaru Atua is simply the magnitude of the velocity over ground:
\begin{equation*} \|\mathbf{v}_g\|=\|\langle-0.98,4.83\rangle\|=\sqrt{(-0.98)^2+(4.83^2)}\approx4.9\mbox{ knots}. \end{equation*}
Thus, although the vaka sails through the water at 5 knots, its forward progress is slightly slower with a speed over ground at 4.9 knots.
To find the course over ground, we will use Remark 4.4.19 to find direction of the velocity:
\begin{equation*} \theta=\tan^{-1}\frac{v_y}{v_x}=\tan^{-1}\frac{4.83}{-0.98}\approx-78.5^{\circ}\text{.} \end{equation*}
Since our velocity vector is in Quadrant II, our course over ground is
\begin{equation*} -78.5^{\circ}+180^{\circ}=101.5^{\circ}\text{.} \end{equation*}

Exercises 4.4.6 Exercises

Exercise Group.

Draw the vector, \(\mathbf{v}\text{.}\)
1.
\(3\mathbf{i}-2\mathbf{j}\)
2.
\(-4\mathbf{i}+\mathbf{j}\)
3.
\(2\mathbf{i}+4\mathbf{j}\)

Exercise Group.

For each of the following, find the vector with initial point at \(P\) and terminal point at \(Q\text{.}\) Express your answer in form \(\langle a,b\rangle\text{.}\)
13.
\(P=(4,-6)\text{,}\) \(Q=(10,1)\)
Answer.
\(\langle6,7\rangle\)
14.
\(P=(-8,-5)\text{,}\) \(Q=(5,8)\)
Answer.
\(\langle13,13\rangle\)
15.
\(P=(2,0)\text{,}\) \(Q=(-7,-3)\)
Answer.
\(\langle-9,-3\rangle\)
16.
\(P=(1,6)\text{,}\) \(Q=(-4,-2)\)
Answer.
\(\langle-5,-8\rangle\)
17.
\(P=(-6,4)\text{,}\) \(Q=(7,-9)\)
Answer.
\(\langle13,-13\rangle\)
18.
\(P=(-1,5)\text{,}\) \(Q=(3,-8)\)
Answer.
\(\langle4,-13\rangle\)
19.
\(P=(9,-1)\text{,}\) \(Q=(-10,10)\)
Answer.
\(\langle-19,11\rangle\)
20.
\(P=(-7,6)\text{,}\) \(Q=(4,-3)\)
Answer.
\(\langle11,-9\rangle\)

Exercise Group.

Express each vector in terms of the unit vectors \(\mathbf{i}\) and \(\mathbf{j}\text{.}\)
21.
\(\langle-1,4\rangle\)
Answer.
\(-\mathbf{i}+4\mathbf{j}\)
22.
\(\langle2,-1\rangle\)
Answer.
\(2\mathbf{i}-\mathbf{j}\)
23.
\(\langle2,5\rangle\)
Answer.
\(2\mathbf{i}+5\mathbf{j}\)
24.
\(\langle3,3\rangle\)
Answer.
\(3\mathbf{i}+3\mathbf{j}\)

Exercise Group.

Express each vector in the form \(\langle a,b\rangle\text{.}\)
25.
\(-4\mathbf{i}-2\mathbf{j}\)
Answer.
\(\langle-4,-2\rangle\)
26.
\(\mathbf{i}-3\mathbf{j}\)
Answer.
\(\langle1,-3\rangle\)
27.
\(-2\mathbf{i}+\mathbf{j}\)
Answer.
\(\langle-2,1\rangle\)
28.
\(4\mathbf{i}\)
Answer.
\(\langle4,0\rangle\)

Exercise Group.

For given vectors \(\mathbf{u}\) and \(\mathbf{v}\text{,}\) find \(2\mathbf{u}\text{,}\) \(\mathbf{u}+\mathbf{v}\text{,}\) \(\mathbf{u}-\mathbf{v}\text{,}\) and \(3\mathbf{u}+2\mathbf{v}\text{.}\)
29.
\(\mathbf{u}=\langle1,2\rangle\text{,}\) \(\mathbf{v}=\langle2,0\rangle\)
Answer.
\(2\mathbf{u}=\langle2,4\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle3,2\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle-1,2\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle7,6\rangle\)
30.
\(\mathbf{u}=\langle5,1\rangle\text{,}\) \(\mathbf{v}=\langle-3,-2\rangle\)
Answer.
\(2\mathbf{u}=\langle10,2\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle2,-1\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle8,3\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle9,-1\rangle\)
31.
\(\mathbf{u}=\langle-2,4\rangle\text{,}\) \(\mathbf{v}=\langle0,4\rangle\)
Answer.
\(2\mathbf{u}=\langle-4,8\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle-2,8\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle-2,0\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle-6,20\rangle\)
32.
\(\mathbf{u}=\langle-1,-5\rangle\text{,}\) \(\mathbf{v}=\langle1,2\rangle\)
Answer.
\(2\mathbf{u}=\langle-2,-10\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle0,-3\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle-2,-7\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle-1,-11\rangle\)
33.
\(\mathbf{u}=\langle3,-1\rangle\text{,}\) \(\mathbf{v}=\langle-4,4\rangle\)
Answer.
\(2\mathbf{u}=\langle6,-2\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle-1,3\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle7,-5\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle1,5\rangle\)
34.
\(\mathbf{u}=\langle-2,-2\rangle\text{,}\) \(\mathbf{v}=\langle1,3\rangle\)
Answer.
\(2\mathbf{u}=\langle-4,-4\rangle\text{,}\) \(\mathbf{u}+\mathbf{v}=\langle-1,1\rangle\text{,}\) \(\mathbf{u}-\mathbf{v}=\langle-3,-5\rangle\text{,}\) \(3\mathbf{u}+2\mathbf{v}=\langle-4,0\rangle\)

Exercise Group.

A fundamental property in Euclidean geometry is the Triangle Inequality, which states that for any triangle, the sum of the lengths of any two sides of a triangle is greater than or equal to the length of the remaining side. This property can be illustrated using vectors, where combining vectors \(\mathbf{u}\) and \(\mathbf{v}\) results in a triangle with the third side represented by \(\mathbf{u}+\mathbf{v}\text{,}\) as shown in Figure 4.3.12. The Triangle Inequality is expressed as \(\|\mathbf{u}\|+\|\mathbf{v}\|\geq\|\mathbf{u}+\mathbf{v}\|\)
To demonstrate the Triangle Inequality with given vectors \(\mathbf{u}\) and \(\mathbf{v}\text{,}\) calculate the following magnitudes rounded to the nearest tenth: \(\|\mathbf{u}\|\text{,}\) \(\|\mathbf{v}\|\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|\text{,}\) and \(\|\mathbf{u}+\mathbf{v}\|\text{.}\) Note that to calculate \(\|\mathbf{u}+\mathbf{v}\|\text{,}\) you must first find the vector \(\mathbf{u}+\mathbf{v}\)
35.
\(\mathbf{u}=2\mathbf{i}-2\mathbf{j}\text{,}\) \(\mathbf{v}=3\mathbf{i}+4\mathbf{j}\)
Answer.
\(\|\mathbf{u}\|=2.8\text{,}\) \(\|\mathbf{v}\|=5\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=7.8\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=5.4\)
36.
\(\mathbf{u}=5\mathbf{i}-\mathbf{j}\text{,}\) \(\mathbf{v}=-3\mathbf{i}\)
Answer.
\(\|\mathbf{u}\|=5.1\text{,}\) \(\|\mathbf{v}\|=3\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=8.1\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=2.2\)
37.
\(\mathbf{u}=\langle-2,4\rangle\text{,}\) \(\mathbf{v}=\langle3,-4\rangle\)
Answer.
\(\|\mathbf{u}\|=4.5\text{,}\) \(\|\mathbf{v}\|=5\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=9.5\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=1\)
38.
\(\mathbf{u}=\langle0,2\rangle\text{,}\) \(\mathbf{v}=\langle1,3\rangle\)
Answer.
\(\|\mathbf{u}\|=2\text{,}\) \(\|\mathbf{v}\|=3.2\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=5.2\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=5.1\)
39.
\(\mathbf{u}=\langle-4,-1\rangle\text{,}\) \(\mathbf{v}=\langle4,-3\rangle\)
Answer.
\(\|\mathbf{u}\|=4.1\text{,}\) \(\|\mathbf{v}\|=5\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=9.1\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=4\)
40.
\(\mathbf{u}=\langle2,1\rangle\text{,}\) \(\mathbf{v}=\langle4,2\rangle\)
Answer.
\(\|\mathbf{u}\|=2.2\text{,}\) \(\|\mathbf{v}\|=4.5\text{,}\) \(\|\mathbf{u}\|+\|\mathbf{v}\|=6.7\text{,}\) \(\|\mathbf{u}+\mathbf{v}\|=6.7\)

Exercise Group.

Given the vector \(\mathbf{v}\text{,}\) find the unit vector \(\mathbf{u}\) in the same direction. Verify that \(\|\mathbf{u}\|=1\text{.}\)
41.
\(\mathbf{v}=-\mathbf{i}+6\mathbf{j}\)
Answer.
\(\mathbf{u}=-\frac{1}{\sqrt{37}}\mathbf{i}+\frac{6}{\sqrt{37}}\mathbf{j}\text{;}\) \(\|\mathbf{u}\|=1\)
42.
\(\mathbf{v}=4\mathbf{i}-3\mathbf{j}\)
Answer.
\(\mathbf{u}=\frac{4}{5}\mathbf{i}-\frac{3}{5}\mathbf{j}\text{;}\) \(\|\mathbf{u}\|=1\)
43.
\(\mathbf{v}=\langle2,-5\rangle\)
Answer.
\(\mathbf{u}=\left\langle\frac{2}{\sqrt{29}},-\frac{5}{\sqrt{29}}\right\rangle\text{;}\) \(\|\mathbf{u}\|=1\)
44.
\(\mathbf{v}=\langle3,-2\rangle\)
Answer.
\(\mathbf{u}=\left\langle\frac{3}{\sqrt{13}},-\frac{2}{\sqrt{13}}\right\rangle\text{;}\) \(\|\mathbf{u}\|=1\)
45.
\(\mathbf{v}=\langle0,-4\rangle\)
Answer.
\(\mathbf{u}=\left\langle0,-1\right\rangle\text{;}\) \(\|\mathbf{u}\|=1\)
46.
\(\mathbf{v}=\langle5,1\rangle\)
Answer.
\(\mathbf{u}=\left\langle\frac{5}{\sqrt{26}},\frac{1}{\sqrt{26}}\right\rangle\text{;}\) \(\|\mathbf{u}\|=1\)

Exercise Group.

For each problem, the magnitude and direction of vector \(\mathbf{v}\) are given. Find the horizontal and vertical components of the vector, \(v_x \) and \(v_y \text{,}\) respectively, and write the answer in the form \(\mathbf{v} = v_x \mathbf{i} + v_y \mathbf{j} \text{.}\)
47.
\(\|\mathbf{v}\|=2\text{;}\) \(\theta=135^{\circ}\)
Answer.
\(\mathbf{v} = -\sqrt{2} \mathbf{i} + \sqrt{2} \mathbf{j} \)
48.
\(\|\mathbf{v}\|=6\text{;}\) \(\theta=300^{\circ}\)
Answer.
\(\mathbf{v} = 3 \mathbf{i} - 3\sqrt{3} \mathbf{j} \)
49.
\(\|\mathbf{v}\|=4\text{;}\) \(\theta=210^{\circ}\)
Answer.
\(\mathbf{v} = -2\sqrt{3} \mathbf{i} - 2 \mathbf{j} \)
50.
\(\|\mathbf{v}\|=3\text{;}\) \(\theta=30^{\circ}\)
Answer.
\(\mathbf{v} = \frac{3\sqrt{3}}{2} \mathbf{i} + \frac{3}{2} \mathbf{j} \)
51.
\(\|\mathbf{v}\|=5\text{;}\) \(\theta=120^{\circ}\)
Answer.
\(\mathbf{v} = -\frac{5}{2} \mathbf{i} + \frac{5\sqrt{3}}{2} \mathbf{j} \)
52.
\(\|\mathbf{v}\|=2\text{;}\) \(\theta=315 ^{\circ}\)
Answer.
\(\mathbf{v} = \sqrt{2} \mathbf{i} - \sqrt{2} \mathbf{j} \)

Exercise Group.

Find the magnitude and direction angle of vector \(\mathbf{v}\text{.}\) Round the answers to one decimal place and express angles in degrees.
53.
\(\mathbf{v}=2\mathbf{i}+2\mathbf{j}\)
Answer.
\(\|\mathbf{v}\|=2.8\text{;}\) \(\theta=45^{\circ}\)
54.
\(\mathbf{v}=-3\mathbf{i}+7\mathbf{j}\)
Answer.
\(\|\mathbf{v}\|=7.6\text{;}\) \(\theta=113.2^{\circ}\)
55.
\(\mathbf{v}=\langle4,-1\rangle\)
Answer.
\(\|\mathbf{v}\|=4.1\text{;}\) \(\theta=346.0^{\circ}\)
56.
\(\mathbf{v}=\langle3,4\rangle\)
Answer.
\(\|\mathbf{v}\|=5\text{;}\) \(\theta=53.1^{\circ}\)
57.
\(\mathbf{v}=\langle0,-3\rangle\)
Answer.
\(\|\mathbf{v}\|=3\text{;}\) \(\theta=270^{\circ}\)
58.
\(\mathbf{v}=\langle-\sqrt{3},-1\rangle\)
Answer.
\(\|\mathbf{v}\|=2\text{;}\) \(\theta=210^{\circ}\)

59. Leeway.

When a waʻa sails on the ocean, it rarely moves precisely in the direction it’s pointed. One reason for this is that crosswind can push the waʻa off its course. The angle of displacement between the apparent heading of the waʻa and the direction the waʻa is actually traveling through the water is referred to as leeway. Using vector addition, we can determine where the waʻa will actually travel. However, on the waʻa, the navigator can determine the leeway by observing the angle from the wake behind the waʻa and the apparent direction the waʻa is pointed towards.
In order to compensate for the wind, the navigator must steer the waʻa into the wind by the same angle as the leeway angle. For example, if the waʻa needs to sail in the house Manu Malanai (SE) and the wind is pushing the waʻa one house further south, the waʻa will move in the house Nālani Malanai (SEbS). To maintain the course in the house Manu Malanai, the navigator must then point the waʻa one house north with an apparent heading in the house of Noio Malanai (SEbE) in order for the actual heading to be in the house of Manu Malanai (SE).
If the apparent heading is represented by the vector \(\langle6,-5\rangle\) and the leeway is represented by the vector \(\langle-3,-1\rangle\text{,}\) calculate the vector for the actual heading.
Answer.
\(\langle3,-6\rangle\)