Functions
Functions
mathematical appetizer is
about…
Functions
12/27/24 1
Functions
A function f from a set A to a set B is an
assignment of exactly one element of B to each
element of A.
We write
f(a) = b
if b is the unique element of B assigned by the
function f to the element a of A.
If f is a function from A to B, we write
f: AB
(note: Here, ““ has nothing to do with if…
then)
12/27/24 2
Functions
If f:AB, we say that A is the domain of f and B
is the codomain of f.
12/27/24 3
Functions
Let us take a look at the function f:PC with
P = {Linda, Max, Kathy, Peter}
C = {Boston, New York, Hong Kong, Moscow}
f(Linda) = Moscow
f(Max) = Boston
f(Kathy) = Hong Kong
f(Peter) = New York
12/27/24 4
Functions
f(Linda) = Moscow
f(Max) = Boston
f(Kathy) = Hong Kong
f(Peter) = Boston
12/27/24 6
Functions
If the domain of our function f is large, it is
convenient to specify f with a formula, e.g.:
f:RR
f(x) = 2x
12/27/24 7
Functions
Let f1 and f2 be functions from A to R.
Then the sum and the product of f1 and f2 are
also functions from A to R defined by:
(f1 + f2)(x) = f1(x) + f2(x)
(f1f2)(x) = f1(x) f2(x)
Example:
f1(x) = 3x, f2(x) = x + 5
(f1 + f2)(x) = f1(x) + f2(x) = 3x + x + 5 = 4x + 5
(f1f2)(x) = f1(x) f2(x) = 3x (x + 5) = 3x2 + 15x
12/27/24 8
Functions
12/27/24 10
Properties of Functions
12/27/24 11
Properties of Functions
And again…
f(Linda) = Moscow g(Linda) = Moscow
f(Max) = Boston g(Max) = Boston
f(Kathy) = Hong Kong g(Kathy) = Hong Kong
f(Peter) = Boston g(Peter) = New York
Is f one-to-one? Is g one-to-one?
12/27/24 15
Properties of Functions
A function f:AB is called onto, or surjective, if
and only if for every element bB there is an
element aA with f(a) = b.
In other words, f is onto if and only if its range is
its entire codomain.
12/27/24 16
Properties of Functions
Examples:
In the following examples, we use the arrow
representation to illustrate functions f:AB.
12/27/24 17
Properties of Functions
Linda Boston
Is f injective?
Max New No.
York Is f surjective?
Kathy Hong No.
Kong Is f bijective?
Peter Moscow No.
12/27/24 18
Properties of Functions
Linda Boston
Is f injective?
Max New No.
York Is f surjective?
Kathy Hong Yes.
Kong Is f bijective?
Peter Moscow No.
Paul
12/27/24 19
Properties of Functions
Linda Boston
Is f injective?
Max New Yes.
York Is f surjective?
Kathy Hong No.
Kong Is f bijective?
Peter Moscow No.
Lübeck
12/27/24 20
Properties of Functions
Linda Boston
Is f injective?
Max New No! f is not even
York a function!
Kathy Hong
Kong
Peter Moscow
Lübeck
12/27/24 21
Properties of Functions
Linda Boston
Is f injective?
Max New Yes.
York Is f surjective?
Kathy Hong Yes.
Kong Is f bijective?
Peter Moscow Yes.
Helena Lübeck
12/27/24 22
Inversion
12/27/24 23
Inversion
Example: The inverse function f-
1
is given by:
f(Linda) = Moscow f-1(Moscow) = Linda
f(Max) = Boston f-1(Boston) = Max
f(Kathy) = Hong Kong f-1(Hong Kong) = Kathy
f(Peter) = Lübeck f-1(Lübeck) = Peter
f(Helena) = New York f-1(New York) = Helena
12/27/24 25
Composition
The composition of two functions g:AB
and f:BC, denoted by fg, is defined by
(fg)(a) = f(g(a))
This means that
• first, function g is applied to element
aA,
mapping it onto an element of B,
• then, function f is applied to this element
of
B, mapping it onto an element of C.
• Therefore, the composite function maps
from A to C.
12/27/24 26
Composition
Example:
12/27/24 27
Composition
(f-1f)(x) = f-1(f(x)) = x
12/27/24 28
Graphs
12/27/24 29
Floor and Ceiling Functions
The floor and ceiling functions map the real
numbers onto the integers (RZ).
The floor function assigns to rR the largest
zZ with z r, denoted by r.
Examples: 2.3 = 2, 2 = 2, 0.5 = 0, -3.5 = -
4
The ceiling function assigns to rR the
smallest zZ with z r, denoted by r.
Examples: 2.3 = 3, 2 = 2, 0.5 = 1, -3.5 = -
3
12/27/24 30