Exponentiation

Revision as of 16:25, 11 June 2020 by Rockmanex3 (talk | contribs)

Exponentiation is an arithmetic operation, just like addition, multiplication, etc. It is often written in the form $a^b$, where $b$ is the exponent (or power) and $a$ is the base.

In the order of operations, it is the second operation performed if a equation has parentheses or the first one performed when there is no parentheses.

Introduction

To understand how exponents arise, let's first review how we can build multiplication from addition. Let's say we wanted to capture the notion of "the amount equal to 3, ten times." We could write this out as $3 + 3 +3 + 3 +3 + 3 +3 + 3 +3 + 3$, but this gets burdensome quickly: if we wanted to capture the idea of "the amount equal to two hundred 3s." Thus, we define the multiplication function, usually denoted $\times$ or $\cdot$, such that $3\times 200=3+3+\ldots+3$ where there are 200 threes in the sum. This process (actually an inductive definition) defines the operation of "multiplication by positive integers." We can then extend the notion of multiplication to non-integers.

Similarly, the exponentiation is defined as the repetition of multiplication. For example, writing out $3\cdot 3\cdot 3\cdot 3\cdot 3$ can get boring fast, so we define the exponential function to express this in a much more compact form so that the preceeding example can be written as $3^5$ (read 3 to the 5th or 3 to the 5 power). What this means is that we are multiplying 3 by itself 5 times. The base is 3 (what is repeatedly multiplied) and the exponent (or power) is 5 (the number of times to repeat multiplication).

Our definition of exponentiation makes sense if the exponent is a positive integer. How about negative integers such as $2^{-4}$? How do we multiply 2 by itself -4 times!? Let's think about what a negative sign means a little more. When we append a negative sign to a number (say 4, for example), we are basically saying go four units in the opposite direction. We want to do the opposite of multiplication four times. In other words, we want to divide by 2 four times. Therefore, $2^{-4}=\frac 1{2^4}.$

Basic Properties

Listed below are some important properties of exponents (with explanations and notes):

  • $b^x\cdot b^y = b^{x+y}$
    • We are multiplying $b$ together $x$ times and then $y$ times, so in total, we are multiplying $b$ together $x+y$ times.
  • $b^0 = 1$ if $b \neq 0$
    • From the property of same base multiplication, $b^x \cdot b^0 = b^{x+0} = b^x$, so dividing both sides by $b^x$ results in $b^0 = 1$.
    • $0^0$ is undefined.
  • $b^{-x} = \frac{1}{b^x}$ iif $b \neq 0$
    • From the property of same base multiplication and zero exponent, $b^x \cdot b^{-x} = b^{x + -x} = b^0 = 1$, so dividing both sides by $b^x$ results in $b^{-x} = \frac{1}{b^x}$.
  • $\frac{b^x}{b^y} = b^{x-y}$
    • This results from using the property of same base multiplication and negative exponent property.
  • $(b^x)^y = b^{xy}$
    • We are multiplying $b^x$ by itself $y$ times, and because of the first property, we are multiplying $b$ by itself $x \cdot y$ times.
  • $(ab)^x = a^x b^x$
    • We are multiplying $ab$ together $x$ times, which is the same as multiplying $a$ together $x$ times and $b$ together $x$ times.

Fractional Exponents

So far we discussed expressions with integer exponents. However, it is also possible to extend the exponential function to all non-integers.


How could we make sense of an expression like $b^{\frac{1}{2}}$? If you don't already know the answer, this is a good exercise; I recommend puzzling over it for awhile.


Answer: Hoping that property 1 will remain true when $x$ or $y$ is a fraction, we see that $b^{\frac{1}{2}} b^{\frac{1}{2}}$ should (hopefully) be equal to $b^{\frac{1}{2} + \frac{1}{2}} = b^1 = b$. Thus, we define $b^{\frac{1}{2}}$ to be $\sqrt{b}$, in order to make this be true.


For the time being, how to deal with other fractions in the exponent can be an exercise for the reader.

Hint: What would $b^{\frac{1}{3}}$ be? What about $b^{\frac{1}{4}}$? Do you notice anything?

Try to figure out $b^{\frac{2}{3}}$ -- how does it relate to $b^{\frac{1}{3}}$?

Problems

  • Practice Problems on Alcumus
    • General Positive Exponents (Prealgebra)
    • Negative and Zero Exponents (Prealgebra)

See also