Loading [MathJax]/jax/output/HTML-CSS/jax.js

Friday, 5 April 2013

Function and its Properties

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:XY, X is called the domain of function f, and Y codomain or range

If AX, then f(A) is called the image of A under f. Refer to the below diagram, the yellow area is image.

If BY, then f1(B) is called the preimage of B under f.

From Wikipedia

Identity function
id:XXx:Xid(x)=x

Injective function, or one-to-one function
a,b:Xf(a)=f(b)a=b
For example,
  • identity function
  • inclusion function
  • f(x)=2x+1
  • f(x)=ex

Inclusion function
a:X,b:YXYf(a)=a

Surjective function (Onto)
y:Yx:Xf(x)=y
From Wikipedia

For example,
  • identity function
  • f(x)=2x+1
  • f:RR,f(x)=ex is not surjective since there is no x such that f(x) is negative
  • f:RR,f(x)=x2 is not surjective since there is no x such that f(x) is negative
  • f:RRnn,f(x)=x2 is surjective since for each y there is a x that x2=y
Partial Function
A function f from X to Y is partial if it doesn't map every element in X to Y. Formally,
x:Xf(x) is undefined
For example,
  • f:NN, and f(x)=x

Total Function
Every element in X is defined.
x:Xy:Yf(x)=y
For example,
  • f:NN, f(x)=x

Monotonic
x1,x2:Xx1<x2f(x1)<f(x2)

Idempotent
nf(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