Defining a function or explaining how it works can involve a lot of words and can get rather lengthy and awkward. Imagine having to write, "Square the input, multiply that result by 2, and then subtract 3." Mathematicians are an efficient lot, and they prefer a more precise, quicker way of writing their instructions. Function notation is just that.
First, functions are generally named with letters — the most frequently used is the oh-so-obvious f. (Mathematicians are efficient, but they're not necessarily original or creative.)
If you want the function f to be the rule for squaring a number, multiplying that result by 2, and then subtracting 3, write the function as f(x) = 2x2 – 3. You read the function like this: "f of x is equal to two times x squared minus 3."
The x is a variable — in this case, the input variable. Whatever you put in the parentheses after the f replaces any x in the rule. In the first equation that follows, an 8 replaces the x. In the second equation, a –4 replaces the x. Each time, the function produces only one answer:
f(8) = 2(8)2 – 3 = 128 – 3 = 125
f(–4) = 2(–4)2 –3 = 32 – 3 = 29
Don't feel bound to the f, though. You can use other letters to name the functions and the input variables. Sometimes you use letters that represent what's going on or what you're using the formula for, such as finding area, interest, or cost:
A(r) = πr2
I(t) = 1,000e0.04t
C(x) = –0.04x2 + 8x + 100
And, of course, you have the trig functions. Some trig functions involving sine, cosine, and secant are