Conceptual Bottlenecks Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
Why is it a conceptual bottleneck to move from 'numbers' to 'functions as objects'? Give an example where treating a function as an object is essential.

Solution

  1. 1
    With numbers, objects are static values like 33 or Ļ€\pi. With functions as objects, we treat the whole rule x↦f(x)x \mapsto f(x) as a single entity.
  2. 2
    This shift is required for: derivatives (the derivative of ff is a new function f′f'), function composition (f∘gf \circ g is a new function), and higher-order functions (a function that takes a function as input).
  3. 3
    Example: integration as a linear operator I(f)=∫01f(x) dxI(f) = \int_0^1 f(x)\,dx takes a function ff as input and returns a number. Without thinking of functions as objects, this concept is inaccessible.

Answer

Functions-as-objectsĀ isĀ requiredĀ forĀ derivatives,Ā composition,Ā andĀ linearĀ operators\text{Functions-as-objects is required for derivatives, composition, and linear operators}
The shift from 'function as a rule applied to a number' to 'function as an object manipulated by operators' is a major conceptual bottleneck in moving from school mathematics to university mathematics.

About Conceptual Bottlenecks

Specific concepts or ideas whose misunderstanding blocks progress across a wide range of related mathematical topics.

Learn more about Conceptual Bottlenecks →

More Conceptual Bottlenecks Examples