Math Wiki
Register
Advertisement

Exponentiation is a mathematical operation involving raising a base to an exponent. The operation is defined for positive integer exponents as repeated multiplication of the base by itself. In particular:

In the last example above, is the base and the exponent (or, less formally, power).

Logarithmic scale[]

Refer to Logarithmic scale approximations, approximate base in the logarithmic scale and multiply the steps by the exponent.

Example: 1.5^1000≈(2^(7÷12))^1000=2^(7000÷12)≈10^175, 1.5^1000≈(2^(31÷53))^1000=2^(31000÷53)≈11÷8×10^176

Other exponents[]

Negative exponents[]

A negative exponent is defined as one over the base to the power of the exponent. For instance,

Fractional exponents[]

A fractional exponent is the value of the denominator root of the base to the power of the numerator. For example:

Common exponents[]

Square[]

"Squaring" a value means raising it to an exponent of 2, which is merely multiplying the value by itself.

This term, and this simple case of exponentiation, holds a great deal of practicality and implications throughout basic mathematical concepts. Its commonality is emphasized by the fact that many calculators have a "square" button, but not necessarily the capacity for generalized exponentiation.

The term comes from the geometric figure it is named after. The area of any square is the length of its side squared.

Cube[]

"Cubing" a value means raising it to an exponent of 3. Again, the term comes originates from the geometric figure. The volume of a cube is equal to the length of a side cubed.

Evaluating exponents[]

Manual - Square roots[]

Modern calculators and computers allow determining square roots without difficulty. Before their invention, they needed to be done by hand, sometimes to a few decimal points.

For a square root, the number is divided into groups of two digits. In the first group, find the highest number who's square does not exceed the group, then subtract (similar to long division)

    7
 \/56 67
   49
    7 67

The next digit is more complicated. In general, you need to concatinate a test digit with twice of the quotient, then multipliy by the test digit. Again, you need the result to be less than the total.

    7  5
 \/56 67
   49
   --
    7 67
    7 25  (7*2 = 14, 145*5 = 725)
    ----
      42

This may be repeated past the decimal point, for additional digits (if desired).

    7  5. 2
 \/56 67 00
    -------
      42 00
      30 04
      -----
      11 96

Computer - squaring[]

The squaring method works for integer exponents.

Non-integer components[]

Given where

The latter term is subject to a Taylor expansion:

External links[]

  • Cube root - explains process for evaluating a cube root without a calculator.
Advertisement