f : A -> B
f(a) = b
graph(f) = { (a, f(b)) | a β A }
βa β A. βb β B. f(a) = b βaβb.[a β A β b β B -> f(a) = b]
βaa' β A. f(a) = f(a') <=> a = a' βaa'.[(a β A β a' β A) -> (f(a) = f(a') <=> a = a')]
βb β B. βa β A. f(a) = b
βbβa β A. fβ»ΒΉ(b) = a <=> f(a) = b
βb β B. βa β A. fβ»ΒΉ(b) = a <=> f(a) = b
A total function (or just function) is a relation where each member of the domain is associated with (at most) one element of the codomain.
Properties:
all elements of the domain are engaged
some elements of the codomain are engaged
a distinct domain element,
x
, cannot be associated with more than one codomain element:
A function is a special relation R
between two sets A
and B
, consisting of a set of ordered pairs (a,b)
where a β A
and b β B
R β A β¨― B
denoted f : A -> B
, and
f : A -> B graph(f) = { (x, yβ), (x, yβ) }
f(x) = y β f(x) = z β y β z
in non-injective and non-surjective if
Last updated
Was this helpful?