Vector Addition, Subtraction, and Scalar Multiplication Math Example 3

Follow the full solution, then compare it with the other examples linked below.

Example 3

medium
Given u = <2, -1> and v = <3, 5>, find 2u - v and its magnitude.

Solution

  1. 1
    Compute 2u2\mathbf{u}: 2โŸจ2,โˆ’1โŸฉ=โŸจ4,โˆ’2โŸฉ2\langle 2, -1 \rangle = \langle 4, -2 \rangle.
  2. 2
    Subtract v\mathbf{v}: โŸจ4,โˆ’2โŸฉโˆ’โŸจ3,5โŸฉ=โŸจ4โˆ’3,โˆ’2โˆ’5โŸฉ=โŸจ1,โˆ’7โŸฉ\langle 4, -2 \rangle - \langle 3, 5 \rangle = \langle 4-3, -2-5 \rangle = \langle 1, -7 \rangle.
  3. 3
    Find the magnitude: โˆฅโŸจ1,โˆ’7โŸฉโˆฅ=12+(โˆ’7)2=1+49=50=52โ‰ˆ7.07\|\langle 1, -7 \rangle\| = \sqrt{1^2 + (-7)^2} = \sqrt{1 + 49} = \sqrt{50} = 5\sqrt{2} \approx 7.07.

Answer

2uโˆ’v=โŸจ1,โˆ’7โŸฉ2\mathbf{u} - \mathbf{v} = \langle 1, -7 \rangle, magnitude =52โ‰ˆ7.07= 5\sqrt{2} \approx 7.07
Linear combinations of vectors are computed component-wise: first scale, then add or subtract. The magnitude of the result uses the Pythagorean theorem applied to the components.

About Vector Addition, Subtraction, and Scalar Multiplication

Vectors are added and subtracted component by component. Scalar multiplication multiplies each component of a vector by a number. If u=โŸจu1,u2โŸฉ\mathbf{u} = \langle u_1, u_2 \rangle and v=โŸจv1,v2โŸฉ\mathbf{v} = \langle v_1, v_2 \rangle, then u+v=โŸจu1+v1,u2+v2โŸฉ\mathbf{u} + \mathbf{v} = \langle u_1 + v_1, u_2 + v_2 \rangle and ku=โŸจku1,ku2โŸฉk\mathbf{u} = \langle ku_1, ku_2 \rangle.

Learn more about Vector Addition, Subtraction, and Scalar Multiplication โ†’

More Vector Addition, Subtraction, and Scalar Multiplication Examples