The range of a function refers to the set of all possible output values (dependent variables) that the function can produce for its defined inputs. Understanding how to determine the range is essential when analyzing real-valued functions.
In simple terms, the range includes all values that a function can return when values from its domain are used as inputs.
Notation: If f: A → B
is a function, the range is a subset of B
.
x
in terms of y
, then determine valid values for y
.Example: f(x) = x²
Domain: ℝ
Range: [0, ∞)
since squaring any real number results in a value that is zero or positive.
Example: f(x) = 1 / (x² + 1)
Domain: ℝ
Range: (0, 1]
since x² + 1 ≥ 1
and as x
increases, f(x)
approaches 0 but never reaches it.
Example: f(x) = √(x – 2)
Domain: x ≥ 2
Range: [0, ∞)
because the smallest output is 0 (when x = 2), and values increase as x increases.
Example: f(x) = log(x)
Domain: x > 0
Range: ℝ, because the logarithmic function can output any real number depending on the value of x.