Skip to main content
ExamExplained
NSW · Maths Extension 1
Maths Extension 1 study scene
§-Study guide
NSWMaths Extension 1

HSC Maths Extension 1 vectors: deep dive (2026 guide)

A complete deep dive into vectors for HSC Mathematics Extension 1. Vector arithmetic, magnitude and unit vectors, the scalar product, projections, parametric vector equations of lines, geometric proofs, and an embedded practice question set with full solutions.

Reviewed by: AI editorial process; not yet individually human-reviewed

Jump to a section
  1. What this guide covers
  2. Vector arithmetic
  3. The scalar (dot) product
  4. Projections
  5. Parametric vector equations of lines
  6. Geometric proofs using vectors
  7. Applications to physics-style problems
  8. Common exam questions
  9. Common traps
  10. Exam strategy
  11. Check your knowledge
  12. Linked dot points

What this guide covers

Vectors were introduced into HSC Mathematics Extension 1 in the 2017 syllabus and are now examined every year. This guide covers:

  • Vector arithmetic, magnitude and unit vectors.
  • The scalar (dot) product, the angle between vectors, orthogonality.
  • Scalar and vector projection.
  • Parametric vector equations of lines and intersection problems.
  • Geometric proofs using vectors.
  • Applications to physics-style problems (forces, velocity).

Vector arithmetic

A two-dimensional vector a=(a1,a2)\mathbf{a} = (a_1, a_2) can be written in column form, component form, or unit-vector form (a1i+a2ja_1 \mathbf{i} + a_2 \mathbf{j} with i=(1,0)\mathbf{i} = (1, 0), j=(0,1)\mathbf{j} = (0, 1)).

Addition, subtraction and scalar multiplication

a+b=(a1+b1,a2+b2),λa=(λa1,λa2).\mathbf{a} + \mathbf{b} = (a_1 + b_1, a_2 + b_2), \qquad \lambda \mathbf{a} = (\lambda a_1, \lambda a_2).

Geometrically: a+b\mathbf{a} + \mathbf{b} is the parallelogram-rule diagonal; λa\lambda \mathbf{a} scales magnitude by λ|\lambda| and may reverse direction if λ<0\lambda < 0.

Magnitude and unit vector

a=a12+a22|\mathbf{a}| = \sqrt{a_1^2 + a_2^2}, and the unit vector a^=1aa\hat{\mathbf{a}} = \frac{1}{|\mathbf{a}|} \mathbf{a}.

Position vector versus displacement vector

If A=(a1,a2)A = (a_1, a_2) is a point, OA=a\mathbf{OA} = \mathbf{a} is its position vector (origin to AA). The displacement from AA to BB is AB=ba\mathbf{AB} = \mathbf{b} - \mathbf{a}.

The scalar (dot) product

ab=a1b1+a2b2=abcosθ.\mathbf{a} \cdot \mathbf{b} = a_1 b_1 + a_2 b_2 = |\mathbf{a}| |\mathbf{b}| \cos \theta.

Angle between two vectors

cosθ=abab.\cos \theta = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}| |\mathbf{b}|}.

For non-zero vectors, θ[0,π]\theta \in [0, \pi].

Orthogonality test

ab\mathbf{a} \perp \mathbf{b} iff ab=0\mathbf{a} \cdot \mathbf{b} = 0.

This is the most common HSC use of the scalar product.

Properties

The dot product is commutative, bilinear, and aa=a2\mathbf{a} \cdot \mathbf{a} = |\mathbf{a}|^2.

(a+b)(a+b)=a2+2ab+b2.(\mathbf{a} + \mathbf{b}) \cdot (\mathbf{a} + \mathbf{b}) = |\mathbf{a}|^2 + 2 \mathbf{a} \cdot \mathbf{b} + |\mathbf{b}|^2.

This is the vector form of the cosine rule.

Projections

Scalar projection

projbscalara=abb.\text{proj}_{\mathbf{b}}^{\text{scalar}} \mathbf{a} = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{b}|}.

Signed length: positive if a\mathbf{a} has a component in the direction of b\mathbf{b}, negative if opposite.

Vector projection

projba=abb2b.\text{proj}_{\mathbf{b}} \mathbf{a} = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{b}|^2} \mathbf{b}.

This is the scalar projection times the unit vector b^\hat{\mathbf{b}}.

Decomposition

Any vector a\mathbf{a} can be split into a component parallel to b\mathbf{b} (the vector projection) and a component perpendicular to b\mathbf{b}.

a=projba+a,a=aprojba.\mathbf{a} = \text{proj}_{\mathbf{b}} \mathbf{a} + \mathbf{a}_{\perp}, \quad \mathbf{a}_{\perp} = \mathbf{a} - \text{proj}_{\mathbf{b}} \mathbf{a}.

By construction ab=0\mathbf{a}_{\perp} \cdot \mathbf{b} = 0.

Parametric vector equations of lines

Point-direction form

A line through AA (position vector a\mathbf{a}) with direction d\mathbf{d}:

r=a+λd,λR.\mathbf{r} = \mathbf{a} + \lambda \mathbf{d}, \quad \lambda \in \mathbb{R}.

Line through two points

Direction AB=ba\mathbf{AB} = \mathbf{b} - \mathbf{a}, so r=a+λ(ba)=(1λ)a+λb\mathbf{r} = \mathbf{a} + \lambda (\mathbf{b} - \mathbf{a}) = (1 - \lambda) \mathbf{a} + \lambda \mathbf{b}.

At λ=0\lambda = 0: at AA. At λ=1\lambda = 1: at BB.

Convert to Cartesian

If d=(d1,d2)\mathbf{d} = (d_1, d_2) with d10d_1 \neq 0, λ=xa1d1\lambda = \frac{x - a_1}{d_1}, so y=a2+xa1d1d2y = a_2 + \frac{x - a_1}{d_1} d_2. Slope: d2d1\frac{d_2}{d_1}.

Intersection of two lines

Set parametric equations equal:

a1+λd1=a2+μd2.\mathbf{a}_1 + \lambda \mathbf{d}_1 = \mathbf{a}_2 + \mu \mathbf{d}_2.

Solve for λ\lambda and μ\mu. If a unique solution, lines meet at a point. If the system is inconsistent, lines are parallel and disjoint.

Geometric proofs using vectors

The recipe

  1. Assign position vectors to labelled points.
  2. Express the relevant displacement vectors algebraically.
  3. Compute the geometric relation (equality, scalar multiple, dot product zero, etc.).
  4. Conclude the geometric statement.

Applications to physics-style problems

Vectors model displacement, velocity and force. HSC problems often ask you to resolve a force along a given direction (scalar projection) or to find the resultant velocity / displacement.

Common exam questions

Question type A: angle and orthogonality

Find the angle between two given vectors. Find kk so that two vectors are perpendicular. These are 2-3 mark items.

Question type B: projections

Find the scalar or vector projection. Decompose a vector into parallel and perpendicular components. These are 3-4 mark items.

Question type C: parametric vector equation of a line

Write the vector equation, convert to Cartesian, or find an intersection. 3-4 marks.

Question type D: geometric proof using vectors

Show two lines are parallel, two are perpendicular, or a figure is a parallelogram. 4-5 marks.

Question type E: applications

Resolve a force into components along a given direction. Find collision conditions for two moving particles. 4-5 marks.

Common traps

Trap: PQ=QP\mathbf{PQ} = Q - P, not PQP - Q

The displacement from PP to QQ is the position vector of QQ minus the position vector of PP. Reversing gives the opposite vector.

Trap: Confusing the dot product with the length

a2=aa|\mathbf{a}|^2 = \mathbf{a} \cdot \mathbf{a}, so a+b2=a2+2ab+b2|\mathbf{a} + \mathbf{b}|^2 = |\mathbf{a}|^2 + 2 \mathbf{a} \cdot \mathbf{b} + |\mathbf{b}|^2. This expansion is essential for the vector cosine rule.

Trap: b|\mathbf{b}| vs b2|\mathbf{b}|^2

Scalar projection has b|\mathbf{b}| in the denominator. Vector projection has b2|\mathbf{b}|^2.

Trap: Parallel parameters

Two lines with the same direction vector are parallel. They may or may not coincide. Check if a point on one is also on the other.

Trap: Different parameters for different lines

When intersecting two lines, use λ\lambda for one and μ\mu for another. Reusing the same parameter creates confusion.

Exam strategy

Vector questions typically run 2-5 marks each. Allocate 363-6 minutes per question. Steps:

  1. Read carefully: scalar or vector projection? parallel or equal?
  2. Write down position or displacement vectors.
  3. Compute the relevant quantity algebraically.
  4. State the answer with units (if appropriate) and direction (positive, negative, parallel, perpendicular).

For geometric proofs, work the algebra one line at a time and cite each step. Markers reward clear structure.

Check your knowledge

Try these questions before reading the solutions. They are roughly arranged from easier to harder.

  1. Find the magnitude of a=(5,12)\mathbf{a} = (5, -12) and a unit vector in the direction of a\mathbf{a}.
  2. Compute the dot product ab\mathbf{a} \cdot \mathbf{b} and the angle between a=(1,2)\mathbf{a} = (1, 2) and b=(3,1)\mathbf{b} = (3, -1), giving the angle in radians correct to three decimal places.
  3. Find the value of tt such that u=(t,2)\mathbf{u} = (t, 2) is perpendicular to v=(4,t+1)\mathbf{v} = (4, -t + 1).
  4. Find the scalar projection of a=(6,2)\mathbf{a} = (6, 2) onto b=(3,4)\mathbf{b} = (3, 4), and the vector projection.
  5. Find the point where the lines r1=(2,1)+λ(1,1)\mathbf{r}_1 = (2, 1) + \lambda (1, -1) and r2=(1,0)+μ(2,1)\mathbf{r}_2 = (-1, 0) + \mu (2, 1) intersect.
  6. Decompose a=(5,1)\mathbf{a} = (5, 1) into components parallel and perpendicular to b=(1,2)\mathbf{b} = (1, 2).
  7. The position vectors of AA, BB, CC, DD are a\mathbf{a}, b\mathbf{b}, c\mathbf{c}, d\mathbf{d}. Let PP, QQ, RR, SS be the midpoints of sides ABAB, BCBC, CDCD, DADA respectively. Prove that PQRSPQRS is a parallelogram (Varignon's theorem).
  8. Two particles travel in straight lines. Particle PP has position rP(t)=(1,2)+t(3,1)\mathbf{r}_P(t) = (1, 2) + t (3, 1) and particle QQ has position rQ(t)=(10,6)+t(1,1)\mathbf{r}_Q(t) = (10, 6) + t (-1, -1), where tt is time in seconds. Determine whether the two particles collide. If they do, give the time and position of collision; if they do not, justify your answer.

Linked dot points

For more detail, see the dot point pages at vector arithmetic and magnitude, scalar product, vector projection, parametric vector equations of lines, and geometric proofs with vectors.

For NESA past papers and marking guidelines, refer to educationstandards.nsw.edu.au.

  • vectors
  • scalar-product
  • projection
  • hsc-maths-extension-1
  • 2026
ExamExplained