A function captures the idea that one quantity is uniquely determined by another. This section introduces functions informally through real-world examples and establishes the notation that will be used throughout all of mathematics and science.
Quick Reference
| Concept | Description |
|---|---|
| Function | A rule that assigns exactly one output to each input |
| Independent variable | The input; the variable we choose freely |
| Dependent variable | The output; its value depends on the input |
| Function notation | ; read "y equals f of x" |
| Explicit function | is isolated: |
| Implicit function | and are mixed in an equation: |
What Is a Function?
We intuitively say that a variable is a function of a second variable when its value depends on the value of the second variable and can be uniquely calculated by some rule when the value of the second variable is given. The first variable is the dependent variable and the second is the independent variable.
Examples of functions from science and everyday life.
- The temperature at which pure water boils is a function of altitude above sea level.
- The area of a circle is a function of its radius : given , we compute uniquely. Conversely, the radius is also a function of the area: . In this example, either variable can serve as the independent one.
- In a triangle, if the lengths and of two sides are fixed, then the length of the third side is determined once the included angle is chosen: Here is a function of (with and treated as parameters).
- The federal income tax rate for a single person is a function of taxable income: different income brackets map to specific rates.
A variable can be a function of more than one other variable. For example, the volume of a circular cylinder depends on both the base radius and the height :
We will study multivariable functions separately.
The Uniqueness Requirement
The word uniquely is crucial. Consider the equation
For each , this gives exactly one value of , so is a function of . But
defines as a function of (each gives one ), yet is not a function of : if , then or , which are two different values. Since one input () produces two outputs for , is not a function of in this case.
Function Notation
In mathematics, we often wish to refer to a generic function without specifying any particular formula, table, or graph. To say that is a function of , we write
read as " is equal to of ." Here represents the function itself, that is, the rule or procedure associating values of with values of .
Other common notations include , , , f'(x), , and so on. When more than one function appears in a problem, we use different letters to distinguish them: , , , etc.
A function can also be thought of as a machine or computer program: for each allowable input, it returns exactly one output.

The map notation is a compact way to say "the function that sends each to its square."
If , find , , , , , and .
Solution
We simply replace with whatever appears inside the parentheses: Because the name of the variable does not matter: \begin{aligned} f(x+h) &= 4(x+h)^2 - 5(x+h) + 1 \\ &= 4(x^2 + 2xh + h^2) - 5x - 5h + 1 \\ &= \underbrace{4x^2 - 5x + 1}_{f(x)} + 8xh - 5h + 4h^2. \end{aligned}
Arrow Diagrams
Another way to picture a function is with an arrow diagram. Each element in set (the domain) is connected by an arrow to its unique image in set (the codomain).


Explicit and Implicit Functions
An explicit function expresses the dependent variable directly in terms of the independent variable, for example . The form is explicit because is isolated.
An implicit function involves an equation where the dependent and independent variables are intermixed and the dependent variable is not isolated. For example, and define implicitly in terms of . The notation indicates that and are implicit functions of each other.
In this course, we almost always work with explicit functions. Implicit functions are encountered occasionally in calculus.