Revision:Indices - The Student Room
The Student Room

Revision:Indices

TSR Wiki > Study Help > Subjects and Revision > Revision Notes > Mathematics > Indices


Contents

Positive powers

A long time ago, someone noticed that multiplying a number by itself took up quite a lot of space, and decided to define a new operation called exponentiation. It's easiest to explain with an example:


2^4 = 2 \times 2 \times 2 \times 2 = 16


The basic idea is to multiply the number at the bottom (the base) by itself until you have a product of length equal to the number at the top (the index or exponent). 2^4 should be read as "Two to the four", or "Two to the power of four" if you're feeling posh. In general:


x^a = \underbrace{x \times x \times \ldots \times x}_{\text{a total x's in the product}}


This isn't on the syllabus, but here's an equivalent definition you might find helpful if that's unclear:


x^a = \left\{\begin{array}{ll}
x \times x^{a-1} & a > 1 \\
x & a = 1
\end{array}\right.

Basic identities

Now, three major identities hold. They're obvious when you think about them, but they're still pretty important.


  • x^a \times x^b = x^{a+b}


For example, 5^2 \times 5^3 = (5 \times 5) \times (5 \times 5 \times 5) = 5^5.


  • \frac{x^a}{x^b} = x^{a-b}


For example, \frac{3^4}{3^2} = \frac{3 \times 3 \times 3 \times 3}{3 \times 3} = \frac{3 \times 3}{1} = 3^2.


  • (x^a)^b = x^{ab}


For example, (5^2)^3 = 5^2 \times 5^2 \times 5^2 = 5^6.

Common pitfalls

Now, this isn't too difficult, but people often make two mistakes. The first one is to assume that because x^a \times x^b and \frac{x^a}{x^b} can be simplified easily, so can x^a \times y^b and \frac{x^a}{y^b}, where x \ne y. Wrong. They can only be simplified if y is a power of x or vice versa. So, for example:


3^4 \times 2^4 can't be simplified.


5^2 \times 25^2 = 5^2 \times (5^2)^2 = 5^2 \times 5^4 = 5^6 can be simplified.


The second one is to assume that x^{a^b} = (x^a)^b. They look equal, but they really aren't. For example:


(5^3)^2 = 5^3 \times 5^3 = 5^6


5^{3^2} = 5^9


See what I mean?

Zero and negative powers

Now, some bright spark noticed that the division identity above only worked for b < a, and decided to define exponentiation for zero and negative exponents. Obviously, the key consideration when doing something like that is to make sure that zero and negative exponents behave as much like positive exponents as possible - that is, make them obey all three of the above identities. He eventually settled on the following definition for x^0:


x^0 = 1 for all x.


I know, not an intuitive definition, right? But it's the only sensible definition under which all three identities hold:


x^a \times x^0 = x^a \times 1 = x^a = x^{a+0}

\frac{x^a}{x^0} = \frac{x^a}{1} = x^a = x^{a-0}

(x^a)^0 = 1 = x^0 = x^{a \times 0}

(x^0)^a = 1^a = 1 = x^0 = x^{0 \times a}


As for negative integers, it turns out from the division identity that the only sensible definition is:


x^{-a} = \frac{1}{x^a}


Again, all three identities hold:


x^a \times x^{-b} = \frac{x^a}{x^b} = x^{a-b}

\frac{x^a}{x^{-b}} = x^a \times x^b = x^{a+b}

(x^a)^{-b} = \frac{1}{(x^a)^b} = \frac{1}{x^{ab}} = x^{-ab}

(x^{-a})^b = (\frac{1}{x^a})^b = \frac{1}{x^{ab}} = x^{-ab}


This also renders the identity \frac{x^a}{x^b} = x^{b-a} redundant, since dividing by x^b is the same thing as multiplying by x^{-b}. For this reason, sometimes x^a \times x^b = x^{a+b} is known as the law of exponentiation.

Rational powers

But of course, this wasn't enough! Someone decided that integer powers were so good they might as well generalise to rational powers - in other words, fractions. As before, the key thing was to make sure that all the old identities worked. Assuming they do, then:


(x^{\frac{1}{a}})^a = x^{a\times\frac{1}{a}} = x


So the obvious choice for x^{\frac{1}{a}} was:


x^{\frac{1}{a}} = \sqrt[a]{x}


Then we have:


x^{\frac{a}{b}} = (x^{a})^{\frac{1}{b}} = \sqrt[b]{x^a}


It turns out that both our identities hold, so we can take this as our definition. You might want to skip the proofs, though - they're a little messy, and they're not on the syllabus. Here they are anyway for completeness:


\begin{eqnarray[*]}
(x^{\frac{a}{b}})^{\frac{c}{d}} & = & \sqrt[b]{x^a}^{\frac{c}{d}} \\
& = & \sqrt[d]{(\sqrt[b]{x^a})^c} \\
& = & \sqrt[bd]{\sqrt[d]{(\sqrt[b]{x^a})^c}^{bd}} \\
& = & \sqrt[bd]{((\sqrt[b]{x^a})^c)^b} \\
& = & \sqrt[bd]{(\sqrt[b]{x^a})^{bc}} \\
& = & \sqrt[bd]{(x^a)^c} \\
& = & \sqrt[bd]{x^{ac}} \\
& = & x^{\frac{ac}{bd}} \\
\end{eqnarray[*]}


\begin{eqnarray[*]}
x^{\frac{a}{b}} \times x^{\frac{c}{d}} & = & (x^{\frac{a}{b}})^1 \times (x^{\frac{c}{d}})^1 \\
& = & (x^{\frac{a}{b}})^{\frac{d}{d}} \times (x^{\frac{c}{d}})^{\frac{b}{b}} \\
& = & x^{\frac{ad}{bd}} \times x^{\frac{bc}{bd}} \\
& = & \sqrt[bd]{x^{ad}} \times \sqrt[bd]{x^{bc}} \\
& = & \sqrt[bd]{(\sqrt[bd]{x^{ad}} \times \sqrt[bd]{x^{bc}})^{bd}} \\
\end{eqnarray[*]} \begin{eqnarray[*]}
& = & \sqrt[bd]{(\sqrt[bd]{x^{ad}})^{bd} \times (\sqrt[bd]{x^{bc}})^{bd}} \\
& = & \sqrt[bd]{x^{ad} \times x^{bc}} \\
& = & \sqrt[bd]{x^{ad + bc}} \\
& = & x^{\frac{ad + bc}{bd}} \\
& = & x^{\frac{a}{b} + \frac{c}{d}} \\
\end{eqnarray[*]}

Complex powers

It's possible to define exponentiation for irrational exponents like \sqrt{2}, and complex exponents like 2 + 3\sqrt{-1}, but this is beyond the scope of A Level.

Summary of Identities

x^a = \underbrace{x \times x \times \ldots \times x}_{\text{a total x's in the product}}

x^0 = 1

x^{-a} = \frac{1}{x^a}

x^{\frac{1}{a}} = \sqrt[a]{x}

x^{a} \times x^{b} = x^{a+b}

(x^a)^b = x^{ab}

Examples

2^{-2} = \frac{1}{4}

8^{\frac{1}{3}} = 2

32^{\frac{2}{5}} = 4

2^{2^{2^2}} = 2^{2^4} = 2^{16} = 65536

Comments

This article is currently only suitable for A Level students and above. Perhaps as separate article for GCSE students (or maybe just foundation GCSE students is needed#) which starts more basically and has none of the latter stages.

Alternatively, it could be noted here that the latter sections are only needed for Higher GCSE/A Level maths.

Discussions Toggle
Depression Society MKVI
started by: Idle
forum: Mental Health
replies: 1872
last post: 1 Minute Ago
UEL Primary PGCE - update for any applicants
started by: glittersticks
forum: London Unis
replies: 48
last post: 1 Minute Ago
Current Year 11 Thread Mark II
started by: blueray
forum: GCSEs
replies: 177
last post: 1 Minute Ago
Do you want an identical twin?
started by: AkDo
forum: Advice on Everyday Issues
replies: 46
last post: 1 Minute Ago
Have I Made a Huge Mistake?
started by: longman240
forum: Student Life
replies: 7
last post: 1 Minute Ago
thinking about something then *poof*
started by: Anonymous
forum: Mental Health
replies: 3
last post: 1 Minute Ago
What are you listening to now? V
started by: tehforum
forum: Music
replies: 703
last post: 1 Minute Ago
pharmacy applicants 2012
started by: kingam
forum: Pharmacy
replies: 2322
last post: 1 Minute Ago
The Male 'Fashion' Thread II
started by: rockrunride
forum: Clothes and Accessories
replies: 7344
last post: 1 Minute Ago
Loughborough 2012 Applicants + FAQ/Info
started by: Potally_Tissed
forum: Loughborough University
replies: 353
last post: 1 Minute Ago
The Arsenal Thread XI
started by: Colonel.
forum: Football
replies: 4184
last post: 1 Minute Ago
Vector Simultaneous equations
started by: Happy2Guys1Hammer
forum: Maths
replies: 7
last post: 1 Minute Ago
Zara Interveiw
started by: ZTSR
forum: Part-Time and Temporary Employment
replies: 1
last post: 1 Minute Ago
Official Imperial Applicants Thread (2012 Entry)
started by: Beth1234
forum: Imperial College
replies: 2782
last post: 1 Minute Ago
Film Fanatics - Chat Thread II
started by: Ape Gone Insane
forum: Film
replies: 5697
last post: 1 Minute Ago
Opposite gender friendship.
started by: KyranCurry
forum: Friends, Family and Work
replies: 64
last post: 1 Minute Ago
Help.. Stomach pains
started by: kirsty6132
forum: Health
replies: 11
last post: 1 Minute Ago
The FIFA Gaming Society
started by: metalthrashin'mad
forum: Gaming
replies: 1573
last post: 1 Minute Ago
How to ask someone to live with you
started by: laparisienne
forum: Student Accommodation
replies: 7
last post: 1 Minute Ago
can't find
started by: mangoh
forum: Technology and Computers
replies: 25
last post: 1 Minute Ago
Article Updates Toggle
Durham 2012 Applicants Stalking Page
edited by: chloew94, 12 Minutes Ago
Veterinary Medicine Stalking Page 2012
edited by: sezza33155, 16 Minutes Ago
English Offers 2012
edited by: HannahtheFauves, 32 Minutes Ago
Model House of Commons Parliament
edited by: Metrobeans, 35 Minutes Ago
UCL 2012 Applicants Stalking Page
edited by: Fleximetrics, 36 Minutes Ago
Pharmacy Offers 2012
edited by: charb16, 38 Minutes Ago
Medicine Applicants Stalking Page 2012 Entry
edited by: stringbean, 1 Hour Ago
Politics (And Related Courses) Offers 2012
edited by: lboedt, 1 Hour Ago
Law Offers 2012
edited by: bongo drums, 2 Hours Ago
Before You Go To University
edited by: gossamerthreads, 2 Hours Ago
Contact Us | Site Rules | Staying Safe on TSR | Advertising | Staff Blog | Essays & Coursework | Terms & Conditions | Top
Customise your TSR | Life Advice | Hobbies and Interests | Debate and Current Affairs | Study Help | University and University courses
Universities and HE Colleges | Careers, Employment and Gap Years | General Discussion

Customise your TSR