The four arithmetic operations on functions cover the same essential pattern — combine outputs pointwise — but each has its own properties, restrictions, and idiomatic forms. The table below collects all four side by side as a reference card: the pointwise definition, the key algebraic properties, and an example of the combined formula. Use it to check at a glance which operations are commutative, which need an extra domain caution, and what kind of expression to expect from each.
| Operation |
Pointwise definition |
Key properties |
Example with f and g |
| Sum |
(f + g)(x) = f(x) + g(x) |
commutative; associative |
f = x², g = 5x − 3 ⇒ x² + 5x − 3 |
| Difference |
(f − g)(x) = f(x) − g(x) |
neither commutative nor associative; (g − f) = −(f − g) |
f = 3x + 7, g = x² ⇒ −x² + 3x + 7 |
| Product |
(fg)(x) = f(x) · g(x) |
commutative; associative; distributes over addition |
f = x + 2, g = x − 3 ⇒ x² − x − 6 |
| Quotient |
(f ⁄ g)(x) = f(x) ⁄ g(x) |
neither commutative nor associative; requires g(x) ≠ 0 |
f = x² − 1, g = x + 1 ⇒ x − 1 (x ≠ −1) |