A function is a relation between input X and output Y with the property that there is at most one element in Y corresponding to each element in X. For example, relation {(1, 2), (1, 3)} is not a function since 1 has two corresponding elements 2 and 3.If f:X→Y, X is called the domain of function f, and Y codomain or range
If A⊆X, then f(A) is called the image of A under f. Refer to the below diagram, the yellow area is image.
If B⊆Y, then f−1(B) is called the preimage of B under f.
![]() |
From Wikipedia |
Identity function
id:X→X∧∀x:X∙id(x)=x
Injective function, or one-to-one function
∀a,b:X∙f(a)=f(b)⟹a=b
For example,
- identity function
- inclusion function
- f(x)=2x+1
- f(x)=ex
Inclusion function
∀a:X,b:Y∙X⊂Y⟹f(a)=a
Surjective function (Onto)
∀y:Y∙∃x:X∙f(x)=y
![]() |
From Wikipedia |
For example,
- identity function
- f(x)=2x+1
- f:R→R,f(x)=ex is not surjective since there is no x such that f(x) is negative
- f:R→R,f(x)=x2 is not surjective since there is no x such that f(x) is negative
- f:R→Rnn,f(x)=x2 is surjective since for each y there is a x that x2=y
A function f from X to Y is partial if it doesn't map every element in X to Y. Formally,
∃x:X∙f(x) is undefined
For example,
- f:N→N, and f(x)=√x
Total Function
Every element in X is defined.
∀x:X∙∃y:Y∙f(x)=y
For example,
- f:N→N, f(x)=x
Monotonic
∀x1,x2:X∙x1<x2⟹f(x1)<f(x2)
Idempotent
n⏞f(f(...f(x))=f(x)
Associative
f(f(x,y),z)=f(x,f(y,z))
Distributive
f(g(x,y),z)=g(f(x,z),f(y,z))
f is distributive in g.
For example,
- f(x,y)=x×y,g(x,y)=x+y, x×(y+z)=(x×y+x×z)
No comments :
Post a Comment