Domain And Range Of A Function Practice Problems

7 min read

Understanding the domain and range of a function is a foundational skill in algebra and calculus. That said, while the definitions are straightforward—domain is the set of all possible inputs (x-values), and range is the set of all possible outputs (y-values)—applying them to complex equations, graphs, and real-world scenarios requires practice. It defines the boundaries within which a mathematical relationship operates, telling you exactly which inputs are allowed and which outputs are possible. This guide provides a structured approach to solving domain and range practice problems, categorized by function type, with detailed walkthroughs to build your confidence.

Why Domain and Range Matter

Before diving into practice problems, it helps to visualize why these concepts exist. A function is essentially a machine: you feed it an input, it performs a specific operation, and it spits out an output. Consider this: the domain represents all the raw materials the machine can accept without breaking. The range represents all the finished products the machine can possibly create.

If you try to input a negative number into a square root function (in the real number system), the machine jams. If you try to divide by zero in a rational function, the machine explodes. Worth adding: identifying the domain prevents these errors. Identifying the range helps you understand the limitations of the model you are building.

Category 1: Polynomial Functions

Polynomials are the most forgiving functions regarding domain.

Problem 1: Standard Polynomial

Find the domain and range of $f(x) = 3x^4 - 5x^2 + 2x - 7$.

Solution:

  • Domain: Polynomials are defined for all real numbers. There are no denominators to vanish, no even roots of negative numbers, and no logarithmic arguments.
    • Domain: $(-\infty, \infty)$ or $\mathbb{R}$.
  • Range: This is an even-degree polynomial (degree 4) with a positive leading coefficient (3). As $x \to \pm\infty$, $f(x) \to +\infty$. The graph opens upward. It has an absolute minimum value but no absolute maximum. To find the exact minimum, you would typically use calculus (derivative) or a graphing utility. For the purpose of standard practice, recognizing the behavior is key.
    • Range: $[y_{min}, \infty)$. (Where $y_{min}$ is the y-coordinate of the global minimum vertex).

Problem 2: Quadratic in Vertex Form

Find the domain and range of $g(x) = -2(x - 3)^2 + 5$.

Solution:

  • Domain: All real numbers, $(-\infty, \infty)$.
  • Range: This is a parabola opening downward (coefficient $-2$ is negative). The vertex is at $(3, 5)$. This vertex represents the absolute maximum.
    • Range: $(-\infty, 5]$.

Key Takeaway: For polynomials, the domain is always all real numbers. On top of that, the range depends entirely on the degree (even vs. odd) and the sign of the leading coefficient That's the part that actually makes a difference..

Category 2: Rational Functions (Fractions)

The primary restriction for rational functions is division by zero. Here's the thing — the domain excludes any x-value that makes the denominator zero. Finding the range is often trickier and frequently involves finding the inverse function or analyzing horizontal asymptotes and "holes Worth knowing..

Problem 3: Simple Rational Function

Find the domain and range of $h(x) = \frac{4}{x - 2}$.

Solution:

  • Domain: Set denominator $\neq 0$. $x - 2 \neq 0 \implies x \neq 2$.
    • Domain: $(-\infty, 2) \cup (2, \infty)$.
  • Range: Can the output $y$ ever be 0? Set $y = \frac{4}{x-2}$. Solve for $x$: $y(x-2) = 4 \implies x-2 = \frac{4}{y} \implies x = \frac{4}{y} + 2$. This new expression for $x$ is valid for all $y$ except $y = 0$ (division by zero again). Since $y=0$ has no corresponding $x$, 0 is excluded from the range.
    • Range: $(-\infty, 0) \cup (0, \infty)$.

Problem 4: Rational Function with a "Hole"

Find the domain and range of $r(x) = \frac{x^2 - 4}{x - 2}$.

Solution:

  • Domain: Denominator $x - 2 \neq 0 \implies x \neq 2$.
    • Domain: $(-\infty, 2) \cup (2, \infty)$.
  • Simplification: Factor the numerator: $\frac{(x-2)(x+2)}{x-2}$. For $x \neq 2$, this simplifies to $y = x + 2$.
  • Range Analysis: The function behaves exactly like the line $y = x + 2$, except at $x = 2$. At $x = 2$, the line would give $y = 4$. Since $x=2$ is not in the domain, $y=4$ is not in the range (this is the "hole").
    • Range: $(-\infty, 4) \cup (4, \infty)$.

Pro Tip: Always simplify rational functions first to identify holes. The domain restrictions from the original denominator always apply, even if factors cancel out.

Category 3: Radical Functions (Even Roots)

For functions involving square roots, fourth roots, or any even index ($n$), the radicand (expression inside the root) must be greater than or equal to zero.

Problem 5: Basic Square Root

Find the domain and range of $s(x) = \sqrt{x + 5}$.

Solution:

  • Domain: Radicand $\ge 0$. $x + 5 \ge 0 \implies x \ge -5$.
    • Domain: $[-5, \infty)$.
  • Range: The square root symbol $\sqrt{\cdot}$ denotes the principal (non-negative) root. The smallest value is $\sqrt{0} = 0$. It increases without bound.
    • Range: $[0, \infty)$.

Problem 6: Quadratic Radicand

Find the domain and range of $t(x) = \sqrt{9 - x^2}$.

Solution:

  • Domain: $9 - x^2 \ge 0 \implies x^2 \le 9 \implies -3 \le x \le 3$.
    • Domain: $[-3, 3]$.
  • Range: Let $y = \sqrt{9 - x^2}$. Since $y \ge 0$, square both sides: $y^2 = 9 - x^2 \implies x^2 + y^2 = 9$. This is the equation of a circle centered at the origin with radius 3. Because $y = \sqrt{\dots}$ implies $y \ge 0$, we only have the upper half of the circle. The maximum $y$ occurs at $x=0$: $y = \sqrt{9} = 3$. The minimum is $0$.
    • Range: $[0, 3]$.

Problem 7: Radical in the Denominator

Find the domain of $u(x) = \frac{1}{\sqrt{x - 1}}$.

Solution:

  • Restriction 1: Radicand $\ge 0 \implies x - 1 \ge 0 \implies x \ge 1$.

Restriction 2:** Denominator $\neq 0 \implies \sqrt{x - 1} \neq 0 \implies x - 1 \neq 0 \implies x \neq 1$. * Range: Since $\sqrt{x - 1} > 0$ for all $x > 1$, the denominator is always positive and approaches $0$ as $x \to 1^+$ (making $u(x) \to \infty$), and grows without bound as $x \to \infty$ (making $u(x) \to 0^+$). The function never reaches 0 or negative values. In real terms, * Domain: $(1, \infty)$. Combining both restrictions gives $x > 1$. * Range: $(0, \infty)$.

Pro Tip: When a radical is in the denominator, use a strict inequality (${content}gt;$) rather than ($\ge$) for the radicand to avoid division by zero Turns out it matters..

Category 4: Piecewise and Special Functions

Some functions are defined by different rules over different intervals, or have unique behaviors that require case-by-case analysis.

Problem 8: Absolute Value Function

Find the domain and range of $v(x) = |x - 3| + 2$.

Solution:

  • Domain: Absolute value is defined for all real numbers.
    • Domain: $(-\infty, \infty)$.
  • Range: The expression $|x - 3| \ge 0$ for all $x$. Because of this, $|x - 3| + 2 \ge 2$. The minimum value is 2 (at $x = 3$), and it increases without bound.
    • Range: $[2, \infty)$.

Problem 9: Piecewise Linear Function

Find the domain and range of: $ w(x) = \begin{cases} x + 1 & \text{if } x < 0 \ x^2 & \text{if } x \ge 0 \end{cases} $

Solution:

  • Domain: The pieces cover $x < 0$ and $x \ge 0$, so all real numbers are included.
    • Domain: $(-\infty, \infty)$.
  • Range: For $x < 0$, $w(x) = x + 1$ yields values in $(-\infty, 1)$. For $x \ge 0$, $w(x) = x^2$ yields values in $[0, \infty)$. The union of these sets is $(-\infty, 1) \cup [0, \infty) = (-\infty, \infty)$.
    • Range: $(-\infty, \infty)$.

Conclusion

Finding the domain and range of a function is a systematic process that depends entirely on the function's structure. Practically speaking, by categorizing the function—whether it is a polynomial, rational, radical, or piecewise—you can apply the appropriate rules: excluding zeros in denominators, restricting even roots to non-negative radicands, and simplifying to reveal hidden holes. Always verify your results graphically when possible, as the shape of the curve confirms the intervals of valid input and output. With consistent practice across these categories, determining domain and range becomes a reliable and intuitive step in any calculus or algebra problem.

Currently Live

New and Fresh

Others Went Here Next

Expand Your View

Thank you for reading about Domain And Range Of A Function Practice Problems. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home