Scalar multiplication is a fundamental concept in vector mathematics. It involves multiplying a vector by a scalar, which is a constant value. This operation changes the size of the vector without altering its direction unless the scalar is negative.
Given a vector \(\mathbf{v}\), represented as \(\langle v_1, v_2 \rangle\), and a scalar \(c\), scalar multiplication is calculated as:
- Formula: \( c\mathbf{v} = \langle cv_1, cv_2 \rangle \)
- Example: If we have \(\mathbf{v} = \langle 1, 1 \rangle\) and a scalar \(-2\), the multiplication \(-2\mathbf{v}\) results in \(\langle -2 \times 1, -2 \times 1 \rangle = \langle -2, -2 \rangle\).
In the exercise, we perform scalar multiplication on vector \(\mathbf{v} = \langle 1, 1 \rangle\) by \(-2\), thus obtaining \(-2\mathbf{v} = \langle 2, -2 \rangle\). This new vector has the same direction but is stretched by a factor of 2 in the opposite direction due to the negative scalar.