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

函数hánshù

function
4 分钟阅读
更新于 2025-10-29
已完成

Core Concept

A function is one of the most fundamental concepts in mathematics, describing the relationship between two variables. Simply put, a function is an "input-output" mechanism: given an input value, according to a specific rule, we get a uniquely determined output value.

Mathematical Definition

Let AA and BB be two non-empty sets of numbers. If, according to a correspondence rule ff, for every element xx in set AA, there is a uniquely determined element yy in set BB, then ff is called a function from AA to BB, written as:

y=f(x),xAy = f(x), \quad x \in A

where:

  • xx is the independent variable
  • yy is the dependent variable
  • AA is the domain
  • The set of all values of f(x)f(x) is called the range

Three Elements of a Function

A function is uniquely determined by three elements:

  1. Domain - The set of all possible input values
  2. Rule/Formula - The correspondence from input to output
  3. Range - The set of all possible output values

Important: Two functions are equal if and only if their domains and correspondence rules are the same.

Common Function Types

1. Linear Function

f(x)=kx+b(k0)f(x) = kx + b \quad (k \neq 0) Graph: straight line

2. Quadratic Function

f(x)=ax2+bx+c(a0)f(x) = ax^2 + bx + c \quad (a \neq 0) Graph: parabola

3. Exponential Function

f(x)=ax(a>0,a1)f(x) = a^x \quad (a > 0, a \neq 1) Feature: rapid growth or decay

4. Logarithmic Function

f(x)=logax(a>0,a1)f(x) = \log_a x \quad (a > 0, a \neq 1) Feature: inverse of exponential function

5. Trigonometric Functions

f(x)=sinx,cosx,tanx,etc.f(x) = \sin x, \cos x, \tan x, \text{etc.} Feature: periodic

Real-World Applications

Application 1: Speed and Time

Car traveling at 60 km/h. Relationship between time tt (hours) and distance ss (km)?

s=f(t)=60ts = f(t) = 60t

Application 2: Profit Calculation

Product costs 50,sellsfor50, sells for 80. Relationship between quantity xx and profit PP?

P=f(x)=30xP = f(x) = 30x

Application 3: Temperature Conversion

Celsius CC to Fahrenheit FF:

F=f(C)=95C+32F = f(C) = \frac{9}{5}C + 32

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 ★★☆☆☆)

Given function f(x)=2x+1f(x) = 2x + 1, find f(3)f(3).

Solution: f(3)=2(3)+1=7f(3) = 2(3) + 1 = 7

Answer: 7


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

Given f(x+1)=x2+2xf(x + 1) = x^2 + 2x, find f(x)f(x).

Solution:

Let t=x+1t = x + 1, then x=t1x = t - 1.

f(t)=(t1)2+2(t1)=t21f(t) = (t-1)^2 + 2(t-1) = t^2 - 1

Therefore: f(x)=x21f(x) = x^2 - 1


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

Given f(x)+2f(1x)=3xf(x) + 2f(\frac{1}{x}) = 3x, find f(x)f(x).

Solution:

From the equation: f(x)+2f(1x)=3xf(x) + 2f(\frac{1}{x}) = 3x ... ①

Replace xx with 1x\frac{1}{x}: f(1x)+2f(x)=3xf(\frac{1}{x}) + 2f(x) = \frac{3}{x} ... ②

Solve: ①×2 - ②: 3f(1x)=6x3x3f(\frac{1}{x}) = 6x - \frac{3}{x} f(1x)=2x1xf(\frac{1}{x}) = 2x - \frac{1}{x}

Replace xx with 1x\frac{1}{x}: f(x)=x+2xf(x) = -x + \frac{2}{x}

Common Mistakes

❌ Mistake 1: A function is just a formula

Correction: A function is a correspondence relationship, not necessarily expressed by a formula. It can be represented by tables, graphs, or descriptions.

❌ Mistake 2: One x can correspond to multiple y values

Correction: A function requires one input corresponds to exactly one output. If one xx gives multiple yy values, it's not a function.

Example: x2+y2=1x^2 + y^2 = 1 (circle equation) is not a function.

❌ Mistake 3: Domain can be arbitrary

Correction: Domain must satisfy:

  • Denominator ≠ 0
  • Even roots ≥ 0
  • Logarithm argument > 0
  • Real-world constraints

Study Tips

  1. Understand essence: Functions are relationships, not just formulas
  2. Three elements: Domain, rule, and range are all essential
  3. Classify types: Know characteristics of common functions
  4. Analyze properties: Monotonicity, parity, periodicity are key
  5. Real applications: Identify functional relationships in life

💡 Exam Tip: Functions are core content in CSCA exams, with about 20% of questions directly or indirectly involving functions. Master them thoroughly!

Practice Exercises

Practice to reinforce your understanding