# Indices, Standard Form & Surds

> Mathematics · CIE IGCSE 0580 (2025-2027)
> Source: https://www.owlsprep.com/study/cie-0580-u1-indices-standard-form-surds/

This guide covers all Core and Extended requirements for indices, standard form, and surds for CIE IGCSE Maths 0580, including calculation rules and exam-specific techniques.

**Prerequisites:** [Basic integer and fraction arithmetic](https://www.owlsprep.com/study/cie-0580-u1-basic-arithmetic/); [Square, cube, and root properties](https://www.owlsprep.com/study/cie-0580-u1-squares-cubes-roots/)

## Learning objectives

- Apply index laws for positive, zero, and negative integer indices (Core tier)
- Convert between standard form and ordinary form, perform standard form calculations
- Use fractional indices correctly (Extended tier only)
- Simplify surds and perform exact arithmetic with surds (Extended tier only)
- Rationalise denominators of simple surd fractions (Extended tier only)

## 1. Indices (Core Tier Content)

Indices (or powers) are a shorthand for repeated multiplication of the same base number. For example, $3^4 = 3 \times 3 \times 3 \times 3$, where 3 is the base and 4 is the index.

**Core Index Laws** — The following rules apply to all integer indices (positive, zero, negative):
1. $a^m \times a^n = a^{m+n}$
2. $a^m \div a^n = a^{m-n}$
3. $(a^m)^n = a^{m \times n}$
4. $a^0 = 1$ (for $a \neq 0$)
5. $a^{-n} = \frac{1}{a^n}$

**Worked example:** Calculate the value of $\frac{2^4 \times 2^{-2}}{2^1}$

1. Apply the multiplication index law to the numerator:

   $$2^{4 + (-2)} = 2^2$$
2. Apply the division index law to combine terms:

   $$2^{2 - 1} = 2^1 = 2$$

> **tip**
>
> Any non-zero number raised to the power of 0 is always 1, regardless of the base value.

**Check your understanding**

1. What is the value of $5^{-3}$?

   - 15
   - $\frac{1}{125}$
   - -125
   - -15

   *Why:* Negative indices mean the reciprocal of the positive power: $5^{-3} = \frac{1}{5^3} = \frac{1}{125}$

## 2. Standard Form (Core + Extended Base Content)

Standard form is used to write extremely large or small numbers concisely, and is a common topic in both calculator and non-calculator papers.

**Standard Form Rule** — A number is written in standard form as $A \times 10^n$, where $1 \leq A < 10$, and $n$ is an integer (positive for large numbers, negative for small numbers).

**Worked example:** (a) Convert 4 500 000 to standard form. (b) Convert $3.2 \times 10^{-4}$ to ordinary form.

1. For (a): Move the decimal point 6 places left to get $A=4.5$, so $n=6$:

   $$4.5 \times 10^6$$
2. For (b): Move the decimal point 4 places left to get the ordinary value:

   $$0.00032$$

**Worked example:** Calculate $(2 \times 10^3) \times (3 \times 10^2)$, give your answer in standard form.

1. Multiply the $A$ values first:

   $$2 \times 3 = 6$$
2. Multiply the powers of 10 using index laws:

   $$10^3 \times 10^2 = 10^5$$
3. Combine terms, which is already in valid standard form:

   $$6 \times 10^5$$

> **note**
>
> Core students may use calculators for standard form arithmetic, but Extended students must complete these calculations without a calculator for Paper 2.

## 3. Extended Tier: Fractional Indices

Extended students are required to use fractional indices, which link power rules to root calculations.

**Fractional Index Rule** — $a^{\frac{1}{n}} = \sqrt[n]{a}$, and $a^{\frac{m}{n}} = (\sqrt[n]{a})^m = \sqrt[n]{a^m}$

**Worked example:** Calculate the value of $16^{\frac{3}{4}}$

1. Split the fractional index into root and power parts:

   $$16^{\frac{1}{4} \times 3}$$
2. Calculate the 4th root of 16 first:

   $$16^{\frac{1}{4}} = 2$$
3. Raise the result to the power of 3:

   $$2^3 = 8$$

> **mnemonic**
>
> Use the phrase *Top is power, bottom is root* to remember which part of the fractional index corresponds to which operation.

**Check your understanding**

1. What is the value of $27^{\frac{2}{3}}$?

   *Why:* $27^{\frac{1}{3}} = 3$, so $3^2 = 9$

## 4. Extended Tier: Surds

Surds are irrational roots that cannot be simplified to whole numbers or fractions. You will be asked to manipulate surds to give exact answers in Extended papers.

**Surd Manipulation Rules** — 1. $\sqrt{a \times b} = \sqrt{a} \times \sqrt{b}$
2. $\sqrt{\frac{a}{b}} = \frac{\sqrt{a}}{\sqrt{b}}$
3. To rationalise a denominator of $\frac{1}{\sqrt{a}}$, multiply numerator and denominator by $\sqrt{a}$

**Worked example:** Simplify $\sqrt{72}$ fully.

1. Find the largest square factor of 72, which is 36:

   $$\sqrt{72} = \sqrt{36 \times 2}$$
2. Apply the surd multiplication rule and simplify:

   $$\sqrt{36} \times \sqrt{2} = 6\sqrt{2}$$

**Worked example:** Rationalise the denominator of $\frac{3}{\sqrt{2}}$.

1. Multiply numerator and denominator by $\sqrt{2}$ to eliminate the surd in the denominator:

   $$\frac{3 \times \sqrt{2}}{\sqrt{2} \times \sqrt{2}}$$
2. Simplify the denominator:

   $$\frac{3\sqrt{2}}{2}$$

> **exam_tip**
>
> Always simplify surds fully in your final answer to get full marks, and never leave a surd in the denominator unless explicitly told to.

## Common pitfalls

- **Wrong:** Calculating $a^0 = 0$ for any base $a$
  - Why it fails: Confusing zero index with multiplication by zero
  - Correct: All non-zero numbers raised to the power of 0 equal 1
- **Wrong:** Writing standard form with $A = 10$, e.g. $10 \times 10^4$
  - Why it fails: Violates the rule $1 \leq A < 10$ for valid standard form
  - Correct: Rewrite as $1 \times 10^5$ to meet the standard form requirement
- **Wrong:** Splitting $\sqrt{a + b} = \sqrt{a} + \sqrt{b}$
  - Why it fails: Surd rules only apply to multiplication and division, not addition or subtraction
  - Correct: Simplify terms inside the root first if possible, or leave the expression unchanged
- **Wrong:** Calculating $2^{-3} = -8$
  - Why it fails: Confusing negative index with a negative base value
  - Correct: Negative indices mean reciprocal: $2^{-3} = \frac{1}{2^3} = \frac{1}{8}$
- **Wrong:** Only multiplying the denominator by $\sqrt{a}$ when rationalising
  - Why it fails: Changes the overall value of the fraction
  - Correct: Multiply both numerator and denominator by the same value to keep the fraction equivalent

## Cheatsheet

| Concept | Core Tier Rule | Extended Tier Addition |
| --- | --- | --- |
| Indices | $a^m \times a^n = a^{m+n}$, $a^0=1$, $a^{-n}=\frac{1}{a^n}$ | $a^{\frac{m}{n}} = (\sqrt[n]{a})^m$ |
| Standard Form | $A \times 10^n$ ($1 \leq A < 10$), convert to/from ordinary form, calculator arithmetic | No-calculator standard form arithmetic |
| Surds | Not assessed for Core | $\sqrt{ab}=\sqrt{a}\times\sqrt{b}$, simplify surds, rationalise denominators |

## What's next

You have now mastered all required content for indices, standard form, and surds for CIE IGCSE Maths 0580. These skills are foundational for nearly all other topics in the syllabus, including algebraic simplification, ratio and proportion, and geometry calculations. If you are taking Extended tier, make sure to practice surd rationalisation and non-calculator standard form questions regularly, as these are common high-mark question types in Paper 2. Next, you can move to ratio and percentage calculations, or apply your index skills to algebraic expressions.

---

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/cie-0580-u1-indices-standard-form-surds/
