Skip to main content
返回术语表
functions难度:基础functionsrangedomain
Share

值域zhíyù

range
4 分钟阅读
更新于 2025-01-24
已完成

Core Concept

The range of a function ff is the set of all possible output values (y-values) that the function can produce.

Mathematical Definition

Range(f)={yy=f(x) for some xDomain(f)}\text{Range}(f) = \{y \mid y = f(x) \text{ for some } x \in \text{Domain}(f)\}

The range is also called the codomain image or simply the image of the function.

Domain vs. Range

ConceptSymbolDescription
DomainDfD_fSet of all valid input values (x)
RangeRfR_fSet of all output values (y)

Key relationship: The range depends on both the function rule AND the domain.

Methods to Find Range

Method 1: Direct Analysis (观察法)

For simple functions, analyze the behavior directly.

Example: f(x)=x2f(x) = x^2, xRx \in \mathbb{R}

Since x20x^2 \geq 0 for all real xx, and x2x^2 can be arbitrarily large:

Range: [0,+)[0, +\infty)

Method 2: Inverse Function Method (反函数法)

  1. Write y=f(x)y = f(x)
  2. Solve for xx in terms of yy
  3. Find values of yy for which xx is defined

Example: f(x)=2x+1x1f(x) = \dfrac{2x + 1}{x - 1}, x1x \neq 1

Let y=2x+1x1y = \dfrac{2x + 1}{x - 1}

Solve for xx: y(x1)=2x+1y(x - 1) = 2x + 1 xyy=2x+1xy - y = 2x + 1 xy2x=y+1xy - 2x = y + 1 x(y2)=y+1x(y - 2) = y + 1 x=y+1y2x = \dfrac{y + 1}{y - 2}

For xx to exist, y2y \neq 2.

Range: {yy2}=(,2)(2,+)\{y \mid y \neq 2\} = (-\infty, 2) \cup (2, +\infty)

Method 3: Monotonicity Method (单调性法)

Use the function's monotonicity to find range from domain.

Example: f(x)=2xf(x) = 2^x, x[1,2]x \in [-1, 2]

Since f(x)=2xf(x) = 2^x is strictly increasing:

  • Minimum: f(1)=21=12f(-1) = 2^{-1} = \dfrac{1}{2}
  • Maximum: f(2)=22=4f(2) = 2^2 = 4

Range: [12,4][\dfrac{1}{2}, 4]

Method 4: Completing the Square (配方法)

For quadratic functions f(x)=ax2+bx+cf(x) = ax^2 + bx + c.

Example: f(x)=x24x+5f(x) = x^2 - 4x + 5, xRx \in \mathbb{R}

Complete the square: f(x)=(x2)2+1f(x) = (x - 2)^2 + 1

Since (x2)20(x - 2)^2 \geq 0, the minimum is 1 at x=2x = 2.

Range: [1,+)[1, +\infty)

Method 5: Substitution (换元法)

Example: f(x)=x+x1f(x) = x + \sqrt{x - 1}, x1x \geq 1

Let t=x1t = \sqrt{x - 1}, where t0t \geq 0

Then x=t2+1x = t^2 + 1, so: f=t2+1+t=t2+t+1=(t+12)2+34f = t^2 + 1 + t = t^2 + t + 1 = (t + \dfrac{1}{2})^2 + \dfrac{3}{4}

Since t0t \geq 0, the minimum occurs at t=0t = 0: fmin=0+0+1=1f_{\min} = 0 + 0 + 1 = 1

Range: [1,+)[1, +\infty)

CSCA Practice Problems

💡 Note: The following practice problems are designed based on the CSCA exam syllabus.

Example 1: Basic (Difficulty ★★☆☆☆)

Find the range of f(x)=3x2f(x) = 3x - 2, x[0,4]x \in [0, 4].

Solution: Linear function is strictly increasing.

  • At x=0x = 0: f(0)=2f(0) = -2
  • At x=4x = 4: f(4)=10f(4) = 10

Answer: [2,10][-2, 10]


Example 2: Intermediate (Difficulty ★★★☆☆)

Find the range of f(x)=x22x+3f(x) = x^2 - 2x + 3, x[1,2]x \in [-1, 2].

Solution:

Complete the square: f(x)=(x1)2+2f(x) = (x - 1)^2 + 2

Vertex at x=1x = 1 (within domain), minimum = 2

Check endpoints:

  • f(1)=1+2+3=6f(-1) = 1 + 2 + 3 = 6
  • f(2)=44+3=3f(2) = 4 - 4 + 3 = 3

Answer: [2,6][2, 6]


Example 3: Advanced (Difficulty ★★★★☆)

Find the range of f(x)=x2+1x2+2f(x) = \dfrac{x^2 + 1}{x^2 + 2}, xRx \in \mathbb{R}.

Solution:

Let y=x2+1x2+2y = \dfrac{x^2 + 1}{x^2 + 2}

Cross multiply: y(x2+2)=x2+1y(x^2 + 2) = x^2 + 1

yx2+2y=x2+1yx^2 + 2y = x^2 + 1

x2(y1)=12yx^2(y - 1) = 1 - 2y

x2=12yy1x^2 = \dfrac{1 - 2y}{y - 1}

For real xx, need x20x^2 \geq 0: 12yy10\dfrac{1 - 2y}{y - 1} \geq 0

This requires (12y)(1 - 2y) and (y1)(y - 1) to have the same sign.

  • Case 1: Both positive: y<12y < \dfrac{1}{2} and y>1y > 1 → impossible
  • Case 2: Both negative: y>12y > \dfrac{1}{2} and y<1y < 112<y<1\dfrac{1}{2} < y < 1

Also, as x2+x^2 \to +\infty, y1y \to 1 (never equals 1). At x=0x = 0: y=12y = \dfrac{1}{2} (achievable).

Answer: [12,1)[\dfrac{1}{2}, 1)

Common Mistakes

❌ Mistake 1: Ignoring Domain Restrictions

Wrong: Range of f(x)=xf(x) = \sqrt{x} is R\mathbb{R}

Correct: Range of f(x)=xf(x) = \sqrt{x} is [0,+)[0, +\infty)

❌ Mistake 2: Using Wrong Method for Bounded Domain

Wrong: For f(x)=x2f(x) = x^2, x[1,3]x \in [1, 3], range is [0,9][0, 9]

Correct: Range is [1,9][1, 9] (minimum at x=1x = 1, not x=0x = 0) ✓

❌ Mistake 3: Forgetting to Check Endpoints

Always verify function values at domain boundaries.

Study Tips

  1. Identify function type first: Linear, quadratic, rational, etc.
  2. Check if domain is bounded: Use monotonicity if bounded
  3. For quadratics, locate vertex: Is it inside the domain?
  4. For fractions, use inverse method: Solve for xx in terms of yy

💡 Exam Tip: For bounded domains, always check both the vertex (for quadratics) AND the endpoints!

Practice Exercises

Practice to reinforce your understanding