Exponent Article Index for
Exponent
Articles about
Exponentiation
 

Information About

Exponent





#multiplication
#: \atop n}
#exponentiation
#: \atop n}

Exponentiation involves two numbers, the base and the '''exponent'''. The exponent is normally written as a Superscript to the right of the base, and called the '''antilogarithm''', i.e. the inverse of z = xy is that y = the logarithm of z base x. The other inverse of exponentiation is extracting a root, i.e. the inverse of z = xy is that x = the y-th root of z. Extracting a root used to be called "evolution".

The next generalized operation after exponentiation is sometimes called Tetration ; repeating this process leads to the Ackermann Function .
, green is to base 10, and purple is to base 1.7. Note how all exponentials pass through the point (0, 1). Each tick on the axes is one unit.]]

Exponentiation is a basic mathematical operation that is used pervasively in other fields as well, including physics, chemistry, biology, computer science and economics, with applications such as Compound Interest , Population Growth , chemical Reaction Kinetics , wave behavior, and Public Key Cryptography .


EXPONENTIATION WITH INTEGER EXPONENTS


The exponentiation operation with integer exponents only requires basic algebra.


Positive integer exponents


The simplest case involves a Positive Integer exponent. The exponent then says how many times the base is to be multiplied. For example, 35 = 3 × 3 × 3 × 3 × 3 = 243.
Here, 3 is the ''base'', 5 is the ''exponent'', and 243 is ''3 raised to the 5th power'' or ''3 raised to the power 5''.
(The word "raised" is usually omitted, and most often "power" as well, so 35
is typically pronounced "three to the fifth" or "three to the five".)
Notice that the base 3 appears 5 times in the repeated multiplication, because the exponent is 5.

Traditionally ''a''2 = ''a''×''a'' is called the Square and ''a''3 = ''a''×''a''×''a'' is called the Cube . 32 is pronounced "three squared," and 33 is "three cubed."

The work required for computing, say, 213, can be reduced like this.
:213 = 2×212 = 2×(22)6 = 2×46 = 2×(42)3 = 2×163 = 2×16×(162)1 = 2×16×256 = 8192.

The number of multiplications performed was 5, rather than 12. See Exponentiation By Squaring .

Formally, powers with positive integer exponents are defined by the initial condition ''a''1=''a'' and the Recurrence Relation ''a''''n''+1=''a''·''a''''n'' .


Exponents one and zero


The meaning of 35 may also be viewed as 1 × 3 × 3 × 3 × 3 × 3:
the starting value 1 (the Identity Element of multiplication)
is multiplied by the base as many times as indicated by the exponent.
With this definition in mind, it is easy to see how to generalize exponentiation
to exponents one and zero:

  • any number to the power 1 is itself.

  • a


    • any number to the power 0 is 1.

    • a



      Negative integer exponents

      Raising a nonzero number to the -1 power produces its Reciprocal .
      a


      Thus:
      a

      Raising 0 to a negative power would imply division by 0, and so is undefined.

      A negative integer exponent can also be seen as repeated Division by the base.
      Thus 3−5 = 1 ÷ 3 ÷ 3 ÷ 3 ÷ 3 ÷ 3 = 1/243 = 1/35.


      Identities and properties


      The most important Identity satisfied by exponentiation is:
      : a^{m + n} = a^m \cdot a^n
      It has the following consequences:
      : a^{m - n} = \begin{matrix} rac{a^m}{a^n}\end{matrix}

      : (a^m)^n = a^{mn} \!\,

      Whereas addition or multiplication are Commutative (for example,
      2+3 = 5 = 3+2 and
      2×3 = 6 = 3×2), exponentiation is not commutative:
      23 = 8 while 32 = 9.
      Similarly, whereas addition or multiplication are Associative (for example,
      (2+3)+4 = 9 = 2+(3+4) and
      (2×3)×4 = 24 = 2×(3×4)), exponentiation is not associative either:
      23 to the 4th power is 84 or 4096, while 2 to the 34 power is
      281 or 2417851639229258349412352.


      Powers of ten


      Powers of 10 are easy to compute because we use a base ten number system: for example 106 = 1 million, which is 1 followed by 6 zeros.
      Exponentiation with base 10 is often used in the Physical Science s to describe large or small numbers in Scientific Notation ; for example, 299792458 (the Speed Of Light in a vacuum, in meters per second) can be written as 2.99792458 × 108 and then Approximated as 2.998 × 108 if this is useful.
      SI Prefix es are also used to describe small or large quantities, and these are also based on powers of 10; for example, the prefix Kilo means 103 = 1000, so a kilometre is 1000 Metre s.


      Powers of two


      Powers Of 2 are important in Computer Science ; for example, there are 2''n'' possible values for a Variable that takes ''n'' Bit s to store in memory.
      They occur so commonly that SI prefixes are commonly reinterpreted to refer to them: 1 Kilobyte = 210 = 1024 bytes.
      As the standard meanings of the prefixes also occur, confusion may result, and in 1998 the International Electrotechnical Commission approved a set of Binary Prefix es. For instance, the prefix for multiples of 1024 is kibi-, so 1024 bytes is 1 Kibibyte . Other prefixes are mebi-, gibi-, and tebi-.


      Powers of zero

      If the exponent is positive, the power of zero is zero: 0''x'' = 0, where ''x'' > 0.

      If the exponent is negative, the power of zero (0−''x'', where ''x'' > 0) is undefined, because division by zero is implied .

      If the exponent is zero, the power is defined as one. 00 = 1. ''See'' Empty Product .


      Powers of E

      The number E is defined as the Limit Of A Sequence of integer powers
      :\ e=\lim_{n ightarrow \infty} \left(1+ rac{1}{n} ight) ^n.

      An integer power of e is

      :e^x
      = \left( \lim_{m ightarrow \infty} \left(1+ rac{1}{m} ight) ^m ight) ^x
      = \lim_{m ightarrow \infty} \left(1+ rac{x}{mx} ight) ^{mx}
      = \lim_{n ightarrow \infty} \left(1+ rac{x}{n} ight) ^n
      .

      The right hand side generalizes the meaning of e''x'' so that ''x'' does not have to be an Integer but can be a Fraction , a Real Number , a Complex Number , or a Square Matrix . See Exponential Function .


      EXPONENTIATION WITH REAL EXPONENTS

      The idea of raising a number to a power that is not an integer can also be explained in other ways:
      • Defining Fractional exponents in terms of (''nth'' roots). See Radicals . This method is perhaps the way most widely taught in schools.

      • Defining the Natural Logarithm as the area under the curve 1/''x''.


      The identities and properties shown Above are true for non-integer exponents as well.


      Fractional exponents method


      Exponentiation with a simple fractional exponent 1/''n'',
      with integer ''n'' > 2, can be defined as taking nth roots.

      : a^{ rac{1}{n}} =\sqrt {Link without Title} {a}

      For example: 81/3 = 2.

      Taking nth roots means solving the equation
      :\ x^n = a.

      For a
      e 0 this equation has n solutions. If \ a is a positive real number, then one of the solutions is also a positive real number, called the Radical . This is the value given to \sqrt (If a is a complex number which is not a positive real number, then \sqrt[n {a} is a Multivalued Function of a.)

      Exponentiation with a Rational exponent m/n
      can now be defined as

      :a^{ rac{m}{n}} = \left( \sqrt {Link without Title} {a} ight)^m

      For example: 82/3 = 4.

      Since any Real Number can be approximated by rational numbers, exponentiation to an arbitrary real exponent can be defined by Continuity .

      :For example, since \sqrt[2]{3} \approx 1.732 , we can assume 5^{\sqrt[2]{3}} \approx 5^{1.732}


      Logarithm method

      Define the natural logarithm of ''x'' as the area under the curve 1/''t'' between from ''t'' = 1 to ''t'' = x. (The area is counted as negative if ''x'' < 1.) In terms of integral calculus:
      :\ln x = \log_e x = \int_1^x rac {1}{t} dt

      The exponential function ''e''''x'' is then defined as the Inverse Function to the natural logarithm. One must prove the exponential identities mentioned above. Exponentiation in any base can be expressed as:
      : \!\, x^y=e^{y \ln x}


      EXPONENTIATION WITH COMPLEX EXPONENTS



      Complex powers of positive real numbers

      The definition of e''x'' also applies when ''x'' is a Complex Number , (that is ''x'' = ''a''+i''b'', where ''a'' and ''b'' are real numbers, positive, negative, or zero, and i satisfies the equation i2 = −1. i is neither positive, nor negative, nor zero).

      A complex power of a positive real number, ''a'', can be expressed as a complex power of e :
      a

      where ''b'' is the real solution to the equation
      :e''b'' = ''a'' .

      For example,
      :21/2 = e''b''/2
      where
      :e''b'' = 2.
      The real solution ''b''=0.693147 is the Natural Logarithm of 2.
      :21/2 = e0.693147 / 2 = e0.34657359 = 1.414213562
      This is the Square Root of two.


      Complex powers of complex numbers

      A complex power of a complex number can still be expressed as a complex power of e :
      a

      where ''b'' is any solution to the equation
      :e''b'' = ''a'' ,
      but when it is not possible to single out one of the solutions, then the complex power of a complex number is not uniquely defined, but is Multivalued .

      Examples
      :(−1)1/2 = (ei·π + i·2π·''n'')1/2 = ei·π/2·(ei·π·)''n'' = i·(−1)''n'' = i·{+1, −1} = {+i, −i} .
      :1i = (ei·2π·''n'')i = (e−2π)''n'' = 0.001867443''n'' for ''n'' in Z .


      Real powers of unity


      If the exponent is an Imaginary Number , i·''x'', then ei·''x'' is a complex number on the Unit Circle , a ''direction''. (See Euler's Formula ). The Real Number ''x'' is an Angle measured in Radian s.

      The angle 2 π radian is a Turn : ei·2π = 1 .
      So ''b'' = i·2π is a solution to the equation e''b'' = 1 .
      It is not the only one. The solutions are i·2π·''n'' , where ''n'' is an Integer .

      Choosing ''n''=0 gives the trivial solution : 1''x'' = 1 .

      Choosing ''n''=1 gives the important expression for any real power of one:
      :1''x'' = ei·2π·''x''

      If ''x'' is an integer the result is 1. If ''x'' is a rational number the result is a Root Of Unity . If ''x'' is a real number the result is a direction.

      Example: 11/4 = ei·π/2 = i

      Choosing ''n''=0,1,2,3 gives the four fourth roots of unity: 1 = ei·(π/2)·0, i = ei·(π/2)·1, −1 = ei·(π/2)·2, −i = ei·(π/2)·3


      SOLVING POLYNOMIAL EQUATIONS


      It was once Conjecture d that the roots of any Polynomial could be expressed in terms of exponentiation with fractional exponents. (See Quadratic Equation ).

      That this is not true in general is the assertion of the Abel-Ruffini Theorem .

      For example, the solutions of the equation ''x''5 = ''x''+1 cannot be expressed in terms of fractional exponents.

      For solving any equation of the ''n''th degree, see the Durand-Kerner Method .


      ADVANCED TOPICS


      Exponents on function names


      When the name or symbol of a function is given an integer superscript, as if being raised to a power,
      this commonly refers to repeated Function Composition rather than repeated multiplication.
      Thus ''f''3(''x'') may mean ''f''(''f''(''f''(''x'')));
      in particular, ''f'' -1(''x'') usually denotes ''f'''s inverse function.

      A special syntax applies to the Trigonometric Functions : a positive exponent applied to the function's abbreviation means that the result is raised to that power, while an exponent of -1 indicates the inverse function.
      That is, sin2''x'' is just a shorthand way to write (sin ''x'')2 without using parentheses,
      whereas sin-1''x'' refers to the inverse function of the Sine , also called arcsin ''x''.
      There is no need for a shorthand of this kind for reciprocal trigonometric
      functions since they each have their own name and abbreviation already:
      (sin ''x'')-1 is normally just written as csc ''x''.


      Exponentiation in abstract algebra


      Exponentiation can also be understood purely in terms of Abstract Algebra , if we limit the exponents to Integer s.

      Specifically, suppose that ''X'' is a Set with a Power-associative Binary Operation , which we will write multiplicatively.
      In this very general situation, we can define ''x''''n'' for any element ''x'' of ''X'' and any nonzero Natural Number ''n'', by simply multiplying ''x'' by itself ''n'' times; by definition, Power Associativity means that it doesn't matter in which order we perform the multiplications.

      Now additionally suppose that the operation has an Identity Element 1.
      Then we can define ''x''0 to be equal to 1 for any ''x''.
      Now ''x''''n'' is defined for any natural number ''n'', including 0.

      Finally, suppose that the operation has Inverses , and that the multiplication is associative (so that the magma is a Group ).
      Then we can define ''x''-''n'' to be the inverse of ''x''''n'' when ''n'' is a natural number.
      Now ''x''''n'' is defined for any integer ''n''.

      Exponentiation in this purely algebraic sense satisfies the following laws (whenever both sides are defined):
      • \ x^{m+n}=x^mx^n

      • \ x^{m-n}=x^m/x^n

      • \ x^{-n}=1/x^n

      • \ x^0=1

      • \ x^1=x

      • \ x^{-1}=1/x

      • \ (x^m)^n=x^{mn}

      • Here, we use a Division slash ("/") to indicate multiplying by an inverse, in order to reserve the symbol ''x''-1 for raising ''x'' to the power -1, rather than the inverse of ''x''.

      However, as one of the laws above states, ''x''-1 is always equal to the inverse of ''x'', so the notation doesn't matter in the end.

      If in addition the multiplication operation is Commutative (so that the magma is an Abelian Group ), then we have some additional laws:
      • (''x''''y'')''n'' = ''x''''n''''y''''n''

      • (''x''/''y'')''n'' = ''x''''n''/''y''''n''


      Notice that in this algebraic context, 00 is always equal to 1.
      When 00 is attained as a Limit , however, it may be more useful to leave 00 undefined.

      However, when exponentiation is purely algebraic, that is when the exponents are taken only to be integers, then it is generally most useful to let 00 be 1, just like every other case of ''x''0.
      For example, if you expand (0 + ''x'')''n'' using the Binomial Theorem , you'll want to use 00 = 1.

      If we take this whole theory of exponentiation in an algebraic context but write the binary operation additively, then "exponentiation is repeated multiplication" can be reinterpreted as " Multiplication is repeated Addition ".
      Thus, each of the laws of exponentiation above has an Analogue among laws of multiplication.

      When one has several operations around, any of which might be repeated using exponentiation, it is common to indicate which operation is being repeated by placing its symbol in the superscript.
      • ''n'' is ''x'' --- ··· --- ''x'', while ''x''#''n'' is ''x'' # ··· # ''x'', whatever the operations --- and # might be.


      Exponential notation is also used, especially in Group Theory , to indicate Conjugation .
      That is, ''g''''h'' = ''h''-1''g''''h'', where ''g'' and ''h'' are elements of some Group .
      Although conjugation obeys some of the same laws as exponentiation, it is not an example of repeated multiplication in any sense.
      A Quandle is an Algebraic Structure in which these laws of conjugation play a central role.


      Exponentiation over sets


      The above algebraic treatment of exponentiation builds a Finitary Operation out of a binary operation.
      In more general contexts, one may be able to define an Infinitary Operation directly on an Indexed Set .

      For example, in the arithmetic of Cardinal Number s, it makes sense to say
      : \prod_{i \in I} k_{i}
      for any Index Set ''I'' and cardinal numbers ''k''''i''.
      By taking ''k''''i'' = ''k'' for every ''i'', this can be interpreted as a repeated product, and the result is ''k''''I''.
      In fact, this result depends only on the Cardinality of ''I'', so we can define exponentiation of cardinal numbers so that ''k''''l'' is ''k''''I'' for any set ''I'' whose cardinality is ''l''.

      This can be done even for operations on sets or sets with extra Structure .
      For example, in Linear Algebra , it makes sense to index Direct Sum s of Vector Space s over arbitrary index sets.
      That is, we can speak of
      : \bigoplus_{i \in I} V_{i},
      where each ''V''''i'' is a vector space.
      Then if ''V''''i'' = ''V'' for each ''i'', the resulting direct sum can be written in exponential notation as ''V''(+)''I'', or simply ''V''''I'' with the understanding that the direct sum is the default.
      We can again replace the set ''I'' with a cardinal number ''k'' to get ''V''''k'', although without choosing a specific standard set with cardinality ''k'', this is defined only Up To Isomorphism .
      Taking ''V'' to be the Field R of Real Number s (thought of as a vector space over itself) and ''k'' to be some Natural Number ''n'', we get the vector space that is most commonly studied in linear algebra, the Euclidean Space R''n''.

      If the base of the exponentiation operation is itself a set, then by default we assume the operation to be the Cartesian Product .
      In that case, ''S''''I'' becomes simply the set of all Function s from ''I'' to ''S''.
  When ''I'' 2={0,1}, we have 2<sup>''X''</sup> = 2<sup>''X''</sup>, where 2<sup>''X''</sup>, usually denoted by '''P'''''X'', is the Power Set of ''X''
  { Border 1