# Coordinate geometry in the (x, y) plane (P4)

> Edexcel International A-Level Mathematics · IAL Maths P4
> Source: https://www.owlsprep.com/study/edexcel-ial-math-p4-coordinate-geometry-in-the-plane/

This guide covers Edexcel IAL P4 coordinate geometry requirements for parametric curves, including step-by-step conversion between parametric and Cartesian forms, exam-aligned worked examples, and traps to avoid on test day.

**Prerequisites:** [Algebraic manipulation (including trigonometric identities)](https://www.owlsprep.com/study/edexcel-ial-math-p2-algebraic-methods/); [Basic coordinate geometry (P1 straight lines, P2 circles)](https://www.owlsprep.com/study/edexcel-ial-math-p1-coordinate-geometry-straight-lines/)

## Learning objectives

- Define parametric equations and their use for representing curves in the (x,y) plane
- Convert parametric equations to Cartesian form by eliminating the parameter
- Convert Cartesian equations to valid parametric forms using given substitutions
- Apply conversion rules to solve Edexcel IAL P4 exam-style questions

## What are Parametric Equations?

**Parametric Equations** — For a curve in the (x,y) plane, parametric equations express x and y as separate functions of a single independent parameter (usually t or θ): $x = f(t), \quad y = g(t)$. Every value of the parameter corresponds to a unique point (x,y) on the curve.

*Example:* A curve has parametric equations $x = 2t + 1$, $y = t^2 - 3$. When t=2, the corresponding point is $(5, 1)$.

Unlike Cartesian equations which link x and y directly, parametric equations make it easy to track the position of a point on a curve as the parameter changes, which is useful for modelling motion, projectile paths, and other dynamic systems. For P4 exams, you will not be asked to sketch curves from parametric equations, only convert between forms.

**Worked example:** A curve is defined by the parametric equations $x = 3t - 2$, $y = 5 - 2t$. State the coordinates of the point on the curve when $t = -1$, and state the parameter value corresponding to the point $(7, -1)$.

1. Step 1: Calculate coordinates for t = -1

   $$x = 3(-1) - 2 = -5, \quad y = 5 - 2(-1) = 7$$
2. Step 2: The point when t=-1 is $(-5, 7)$
3. Step 3: Find t for point $(7, -1)$. Use the x-equation first: $7 = 3t - 2$

   $$3t = 9 \implies t = 3$$
4. Step 4: Verify with y-equation: $y = 5 - 2(3) = -1$, which matches. So $t=3$.

> **Exam tip:** Always verify your parameter value with both equations if you use only one to solve for t, to avoid arithmetic errors.

*Calculator:* allowed

## Converting Parametric to Cartesian Equations

To convert parametric equations to Cartesian form, you eliminate the parameter to get a single equation relating x and y. The method you use depends on the type of functions defining x and y: algebraic (polynomial, rational) or trigonometric.

**Elimination of Parameter** — The process of removing the third independent parameter from a pair of parametric equations to produce a single Cartesian equation in x and y only.

> **tip**
>
> For algebraic parameters, rearrange one equation to make t the subject, then substitute into the second equation. For trigonometric parameters, use standard trig identities (e.g. $\sin^2 \theta + \cos^2 \theta = 1$, $1 + \tan^2 \theta = \sec^2 \theta$) to eliminate θ.

**Worked example:** Convert the parametric equations $x = 2t + 5$, $y = \frac{3}{t - 1}$, $t \neq 1$ to Cartesian form, giving your answer in the form $y = f(x)$.

1. Step 1: Rearrange the x equation to make t the subject.

   $$x = 2t +5 \implies 2t = x -5 \implies t = \frac{x-5}{2}$$
2. Step 2: Substitute this expression for t into the y equation.

   $$y = \frac{3}{\left(\frac{x-5}{2}\right) -1} = \frac{3}{\frac{x-5 - 2}{2}} = \frac{6}{x -7}$$
3. Step 3: State the restriction: $x \neq 7$ (since t cannot equal 1, $t=1$ gives $x=7$ which is undefined for y).

**Worked example:** Convert the parametric equations $x = 4\cos \theta + 1$, $y = 3\sin \theta - 2$ to Cartesian form.

1. Step 1: Rearrange both equations to isolate the trigonometric functions.

   $$\cos \theta = \frac{x -1}{4}, \quad \sin \theta = \frac{y + 2}{3}$$
2. Step 2: Use the Pythagorean identity $\sin^2 \theta + \cos^2 \theta = 1$ to eliminate θ.

   $$\left(\frac{y + 2}{3}\right)^2 + \left(\frac{x -1}{4}\right)^2 = 1$$
3. Step 3: This is the Cartesian equation of an ellipse, no further simplification is required for exam answers unless specified.

> **Exam tip:** Always include domain restrictions for x or y in your final Cartesian equation if the parameter has a limited range, as these are often worth 1 mark in exams.

*Calculator:* allowed

## Converting Cartesian to Parametric Equations

Converting a Cartesian equation to parametric form is less prescriptive: there are infinitely many valid parametric representations for any single curve. You will usually be given a substitution to use (e.g. "let $x = t$" or "let $x = 2\sin \theta$") in Edexcel P4 exam questions.

**Worked example:** Find a parametric representation of the Cartesian curve $y = 2x^2 - 5x + 1$ using the parameter t where $x = t + 2$.

1. Step 1: You are given the substitution for x directly: $x = t + 2$.
2. Step 2: Substitute $x = t + 2$ into the Cartesian equation for y.

   $$y = 2(t + 2)^2 -5(t + 2) + 1 = 2(t^2 +4t +4) -5t -10 +1$$
3. Step 3: Simplify the expression for y.

   $$y = 2t^2 +8t +8 -5t -9 = 2t^2 + 3t -1$$
4. Step 4: The parametric equations are $x = t + 2$, $y = 2t^2 + 3t -1$, valid for all real t.

**Check your understanding**

Test your understanding of parametric conversion

1. If a curve has Cartesian equation $x^2 + y^2 = 9$, which of the following is a valid parametric representation?

   - A: $x = 3\cos t$, $y = 3\sin t$
   - B: $x = 9\cos t$, $y = 9\sin t$
   - C: $x = 3\tan t$, $y = 3\sec t$

   *Why:* Option A uses the Pythagorean identity: $(3\cos t)^2 + (3\sin t)^2 =9(\cos^2 t + \sin^2 t)=9$, which matches the Cartesian equation.

> **Exam tip:** If no substitution is given, the simplest parametric form is almost always to let $x = t$, then substitute into the Cartesian equation to get y as a function of t.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Forgetting to include domain restrictions when converting parametric to Cartesian form.
  - Why it fails: The parameter may have a limited range that restricts valid x or y values, so omitting this loses marks.
  - Correct: Always check if the parameter has a restricted domain, then translate that to a restriction on x or y in your final Cartesian equation.
- **Wrong:** Using non-standard trig identities to eliminate θ when a simpler Pythagorean identity works.
  - Why it fails: This introduces unnecessary algebraic complexity and increases the risk of arithmetic errors.
  - Correct: Rearrange parametric equations to isolate $\sin \theta$, $\cos \theta$, or $\tan \theta$ first, then apply the appropriate Pythagorean identity to eliminate the parameter.
- **Wrong:** Assuming only one valid parametric form exists for a given Cartesian equation.
  - Why it fails: Examiners accept any valid parametric pair, so you do not need to match a specific form if no substitution is given.
  - Correct: Use the simplest possible substitution (e.g. $x=t$) if no guidance is provided, to minimize computation.
- **Wrong:** Verifying parameter values with only one of the two parametric equations.
  - Why it fails: If you solve for t using only the x equation, you may get an invalid value that does not satisfy the y equation, leading to incorrect point coordinates.
  - Correct: Always cross-check any calculated parameter value against both x and y equations to confirm validity.

## Cheatsheet

| Task | Method | Example |
| --- | --- | --- |
| Parametric → Cartesian (algebraic parameter) | Rearrange one equation to make t the subject, substitute into the other equation | $x=2t+1$, $y=t^2$ → $t=(x-1)/2$ → $y=((x-1)/2)^2$ |
| Parametric → Cartesian (trigonometric parameter) | Isolate $\sin \theta$/$\cos \theta$/$\tan \theta$, use Pythagorean identity to eliminate θ | $x=2\cos\theta$, $y=2\sin\theta$ → $(x/2)^2 + (y/2)^2 = 1$ |
| Cartesian → Parametric | Use given substitution for x (or set $x=t$ if none given), substitute into Cartesian equation for y | $y=x^2 +3$, $x=t-1$ → $y=(t-1)^2 +3 = t^2 -2t +4$ |

## What's next

Now that you have mastered conversion between parametric and Cartesian forms, you are ready to apply this knowledge to more advanced P4 topics. Parametric differentiation is the next key skill, where you will learn to calculate the gradient of a parametric curve without converting to Cartesian form first. You will also use parametric equations to calculate areas under curves and volumes of revolution later in the P4 syllabus. These skills are frequently combined in 5-7 mark exam questions, so make sure you are confident with conversion before moving forward.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/edexcel-ial-math-p4-coordinate-geometry-in-the-plane/
