Fundamental Examples
Same formula, different function
The expression can define several different functions:
The formula alone is not the whole function. The domain and codomain are part of the object.
Continuous growth
If a quantity grows at a rate proportional to itself, a simple model is Here is often time, is the initial value, and is the growth/decay constant. If , the same form describes decay. This appears in populations, radioactive decay, capacitor discharge, and many linearised physical systems.
Composition
If and , then Composition usually does not commute. Check order carefully, especially in transformations, units conversions, and ML pipelines.
Domain check
The rule is undefined at . A valid real domain is , not all of .
Example: why domains matter
The formula
f(x)=rac{1}{x}looks simple, but it is not a function because is forbidden. A correct version is
f:\mathbb{R}\setminus\{0\} o\mathbb{R},\qquad f(x)=rac{1}{x}.This is the kind of small precision that prevents later calculus disasters.