Vector subtraction is the process of finding the vector difference between two vectors. It involves taking one vector and effectively reversing the direction of the vector we are subtracting, then performing an addition.
- Mathematically, subtracting vector \(\vec{b}\) from vector \(\vec{a}\) can be written as \(\vec{a} - \vec{b}\).
- This entails subtracting each component of \(\vec{b}\) from the corresponding component of \(\vec{a}\).
In the provided exercise, we subtract \(\vec{y} = \begin{bmatrix} 1 \ -2 \end{bmatrix}\) from \(\vec{x} = \begin{bmatrix} 3 \ 1 \end{bmatrix}\) like so:
- Calculate \(3 - 1\) for the x-component.
- Calculate \(1 - (-2)\) for the y-component.
- The result is the vector \(\vec{x} - \vec{y} = \begin{bmatrix} 2 \ 3 \end{bmatrix}\).
Visually, on the Cartesian plane, you would notice that by reversing and adding \(\vec{y}\), we land on the components (2,3), which represents the new vector from the origin to this point.