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

定义域dìngyì yù

domain
3 分钟阅读
更新于 2025-10-29
已完成

Core Concept

The domain of a function is the set of all possible values that the independent variable can take. Simply put, it's "what inputs the function can accept."

Mathematical Definition

For function y=f(x)y = f(x), the domain is the set of all xx values for which the function is defined, denoted as DfD_f or dom(f)\text{dom}(f):

Df={xf(x) is defined}D_f = \{x \mid f(x) \text{ is defined}\}

Principles for Finding Domain

1. Rational Functions: Denominator ≠ 0

f(x)=1x2f(x) = \frac{1}{x-2}

Domain: x20x - 2 \neq 0, so x2x \neq 2

Df=(,2)(2,+)D_f = (-\infty, 2) \cup (2, +\infty)

2. Even Roots: Radicand ≥ 0

f(x)=x1f(x) = \sqrt{x - 1}

Domain: x10x - 1 \geq 0, so x1x \geq 1

Df=[1,+)D_f = [1, +\infty)

3. Logarithms: Argument > 0

f(x)=log2(x+3)f(x) = \log_2(x + 3)

Domain: x+3>0x + 3 > 0, so x>3x > -3

Df=(3,+)D_f = (-3, +\infty)

4. Zero Exponents: Base ≠ 0

f(x)=(x1)0f(x) = (x-1)^0

Domain: x10x - 1 \neq 0, so x1x \neq 1

5. Real-World Problems: Meaningful Values

Area, length, time must be positive.

CSCA Practice Problems

💡 Note: The following practice problems are designed based on the CSCA exam syllabus and Chinese standardized test formats to help students familiarize themselves with question types and problem-solving approaches.

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

Find the domain of f(x)=x+2f(x) = \sqrt{x+2}.

Options:

  • A. x>2x > -2
  • B. x2x \geq -2
  • C. x>0x > 0
  • D. x0x \geq 0

Solution:

Even root requires radicand ≥ 0: x+20x + 2 \geq 0 x2x \geq -2

Answer: B


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

Find the domain of f(x)=14x2f(x) = \frac{1}{\sqrt{4-x^2}}.

Solution:

Must satisfy:

  1. 4x2>04 - x^2 > 0 (denominator ≠ 0 and radicand > 0)
  2. Solve: x2<4x^2 < 4, so 2<x<2-2 < x < 2

Answer: (2,2)(-2, 2)


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

Find the domain of f(x)=x1log2(3x)f(x) = \frac{\sqrt{x-1}}{\log_2(3-x)}.

Solution:

Must satisfy:

  1. x10x - 1 \geq 0x1x \geq 1
  2. 3x>03 - x > 0x<3x < 3
  3. log2(3x)0\log_2(3-x) \neq 0x2x \neq 2

Combined: x[1,2)(2,3)x \in [1, 2) \cup (2, 3)

Common Mistakes

❌ Mistake 1: x2=x\sqrt{x^2} = x

Correction: x2=x\sqrt{x^2} = |x|, not xx!

❌ Mistake 2: Forgetting denominator ≠ 0

For f(x)=xx1f(x) = \frac{x}{x-1}, must ensure x1x \neq 1.

❌ Mistake 3: Logarithm argument > 0, not ≥ 0

For f(x)=ln(x)f(x) = \ln(x), domain is x>0x > 0, not x0x \geq 0!

Study Tips

  1. Check systematically: Rational, radical, logarithmic conditions
  2. Find intersection: Multiple conditions → take intersection
  3. Interval notation: Use proper interval notation
  4. Real meaning: Consider practical constraints in word problems

💡 Exam Tip: Domain is fundamental to function problems. Almost every function question involves it. Master all types!

Practice Exercises

Practice to reinforce your understanding