this window to return to the main page.
Factorial and Exponential Operations



¶Factorials

The exclamation mark in an expression such as x! (read as "x factorial") is a computational recipe indicating that you should take x, along with all positive integers smaller than x, and string them together with multiplication signs. Note that 0! and 1! are both equal to 1. Thus
0! = 1
1! = 1
2! = 2x1 = 2
3! = 3x2x1 = 6
4! = 4x3x2x1 = 24
5! = 5x4x3x2x1 = 120
6! = 6x5x4x3x2x1 = 720
etc.


¶Exponentiation

An expression of the general form xn can be read as "x to the nth power" or "x to the power of n." The quantity n is spoken of as the exponent of x, and the process of raising any number to the nth power is spoken of as exponentiation. As a computational recipe, xn simply means "take n instances of x and string them together with multiplication signs." Note that any number raised to the power of zero is equal to 1, and any number raised to the power of 1 is equal to itself. Thus
.40 = 1
.41 = .4
.42 = .4x.4 = .16
.43 = .4x.4x.4 = .064
.44 = .4x.4x.4x.4 = .0256
.44x.63 = (.4x.4x.4x.4)x(.6x.6x.6) = .00553
etc.


this window to return to the main page.