Vector Addition & Scalar Multiplication

\begin{pmatrix}x\y\end{pmatrix}+\begin{pmatrix}u\v\end{pmatrix}=\begin{pmatrix}x+u\y+v\end{pmatrix},\qquad k\begin{pmatrix}x\y\end{pmatrix}=\begin{pmatrix}kx\ky\end{pmatrix}
Vectors GCSE
Question 10 of 20

Calculate 0(5,-7).

Tips: use ^ for powers, sqrt() for roots, and type pi for π.
Hint (H)
Anything times 0 gives (0,0).

Explanation

Show / hide — toggle with X

Statement

Vectors can be combined in two main ways: by addition and by scalar multiplication. If two vectors are written as \((x,y)\) and \((u,v)\), then their sum is found by adding their corresponding components:

\[ \begin{pmatrix}x \ y\end{pmatrix} + \begin{pmatrix}u \ v\end{pmatrix} = \begin{pmatrix}x+u \ y+v\end{pmatrix} \]

If a vector is multiplied by a scalar \(k\), both components are multiplied by \(k\):

\[ k\begin{pmatrix}x \ y\end{pmatrix} = \begin{pmatrix}kx \ ky\end{pmatrix} \]

Why it’s true

  • Each vector is an ordered pair describing horizontal and vertical movement.
  • Adding vectors means combining those movements, so x-components add together and y-components add together.
  • Scalar multiplication scales the length of the vector without changing its direction.

Recipe (how to use it)

  1. Write both vectors in column form \((x,y)\).
  2. For addition, add x-components together and y-components together.
  3. For scalar multiplication, multiply each component by the scalar \(k\).

Spotting it

Look for questions asking to “find the sum of two vectors” or “multiply a vector by a constant”. These keywords indicate the use of this rule.

Common pairings

  • Vector addition is often followed by finding magnitude or direction of the result.
  • Scalar multiplication is often used before forming unit vectors or linear combinations.

Mini examples

  1. Given: \((3,2)+(4,5)\). Find: Result. Answer: \((7,7)\).
  2. Given: \(2(3,-4)\). Find: Result. Answer: \((6,-8)\).

Pitfalls

  • Adding unlike components (e.g., adding x to y by mistake).
  • Forgetting to multiply both components by the scalar.
  • Misinterpreting scalar multiplication as adding instead of scaling.

Exam strategy

  • Always align components vertically when adding.
  • Check your result: if multiplying by a negative scalar, the direction reverses.
  • Simplify fractions or factor out common terms where possible.

Summary

Vector addition combines two movements into one. Scalar multiplication stretches or shrinks a vector without changing its direction. Together, these operations form the basis of vector algebra, used in mechanics, geometry, and coordinate problems.

Worked examples

Show / hide (10) — toggle with E
  1. Calculate (2,3)+(4,1).
    1. \( Add x-components: 2+4=6 \)
    2. \( Add y-components: 3+1=4 \)
    Answer: (6,4)
  2. Calculate 3(2,5).
    1. \( Multiply x: 3*2=6 \)
    2. \( Multiply y: 3*5=15 \)
    Answer: (6,15)
  3. Find (7,-2)+(-3,4).
    1. \( x-components: 7+(-3)=4 \)
    2. \( y-components: -2+4=2 \)
    Answer: (4,2)
  4. Calculate -2(3,-1).
    1. \( x: -2*3=-6 \)
    2. \( y: -2*(-1)=2 \)
    Answer: (-6,2)
  5. Find (1,2)+(3,4)+(5,6).
    1. \( x: 1+3+5=9 \)
    2. \( y: 2+4+6=12 \)
    Answer: (9,12)
  6. Find (2,3)+2(1,-1).
    1. \( Scalar multiply: 2(1,-1)=(2,-2) \)
    2. \( Add: (2,3)+(2,-2)=(4,1) \)
    Answer: (4,1)
  7. Calculate 0(7,-9).
    1. Multiply each component by 0: (0,0)
    Answer: (0,0)
  8. Find 4(2,1)+(-3,5).
    1. \( Multiply first vector: 4(2,1)=(8,4) \)
    2. \( Add: (8,4)+(-3,5)=(5,9) \)
    Answer: (5,9)
  9. Calculate (3,4)-2(1,2).
    1. \( Multiply: 2(1,2)=(2,4) \)
    2. \( Subtract: (3,4)-(2,4)=(1,0) \)
    Answer: (1,0)
  10. Find (a,b)+k(c,d).
    1. \( Multiply: k(c,d)=(kc,kd) \)
    2. Add: (a+kc,b+kd)
    Answer: (a+kc,b+kd)