Dms Mod3
Dms Mod3
Whenever sets are being discussed, the relationship between the elements of the sets is
the next thing that comes up. Relations may exist between objects of the same set or
between objects of two or more sets.
Generally an n-ary relation R between sets A1, ... , and An is a subset of the n-ary product
2
A1×...×An. The minimum cardinality of a relation R is Zero and maximum is n in this case.
A binary relation R on a single set A is a subset of A × A.
For two distinct sets, A and B, having cardinalities m and n respectively, the maximum
cardinality of a relation R from A to B is mn.
Examples
The number of vertices in the graph is equal to the number of elements in the set from
which the relation has been defined. For each ordered pair (x, y) in the relation R, there
will be a directed edge from the vertex ‘x’ to vertex ‘y’. If there is an ordered pair (x, x),
there will be self- loop on vertex ‘x’.
Suppose, there is a relation R = {(1, 1), (1,2), (3, 2)} on set S = {1,2,3}, it can be
represented by the following graph:
10
Discrete Mathematics
Types of Relations
1. The Empty Relation between sets X and Y, or on E, is the empty set ∅
4. The Inverse Relation R' of a relation R is defined as: R’= {(b,a) | (a,b) ∈R} Example: If R = {(1, 2), (2,3)} then R’ will be {(2,1),
(3,2)}
5. A relation R on set A is called Reflexive if ∀a∈A is related to a (aRa holds). Example: The relation R = {(a,a), (b,b)} on set X={a,b} is
reflexive
6. A relation R on set A is called Irreflexive if no a∈A is related to a (aRa does not hold).
Example: The relation R = {(1, 2), (2, 1), (3, 2), (2, 3)} on set A={1, 2, 3} is
symmetric.
8. A relation R on set A is called Anti-Symmetric if xRy and yRx implies x=y ∀x ∈ A and ∀y ∈ A.
Example: The relation R = {(1, 2), (3, 2)} on set A= {1, 2, 3} is antisymmetric.
9. A relation R on set A is called Transitive if xRy and yRz implies xRz, ∀x,y,z ∈ A. Example: The relation R = {(1, 2), (2, 3), (1, 3)} on set A= {1, 2,
3} is transitive.
11
4. FUNCTIONS Discrete Mathematics
A Function assigns to each element of a set, exactly one element of a related set.
Functions find their application in various fields like representation of the computational
complexity of algorithms, counting objects, study of sequences and strings, to name a
few. The third and final chapter of this part highlights the important aspects of functions.
Function – Definition
A function or mapping (Defined as f: X→Y) is a relationship from elements of one set X to
elements of another set Y (X and Y are non-empty sets). X is called Domain and Y is called
Codomain of function ‘f’.
Function ‘f’ is a relation on X and Y s.t for each x ∈X, there exists a unique y ∈ Y such that (x,y) ∈ R. x is called pre-image and y is called image of function f.
A function can be one to one, many to one (not one to many). A function f: A→B is said
to be invertible if there exists a function g: B→A
Example
1. f: N →N, f(x) = 5x is injective.
+ + 2
2. f: Z →Z , f(x) = x is injective.
2 2 2
3. f: N→N, f(x) = x is not injective as (-x) = x
Example
+ + 2
1. f : Z →Z , f(x) = x is surjective.
2 2 2
2. f : N→N, f(x) = x is not injective as (-x) = x
12
Discrete Mathematics
Problem:
Prove that a function f: R→R defined by f(x) = 2x – 3 is a bijective function.
Composition of Functions
Two functions f: A→B and g: B→C can be composed to give a composition g o f. This is a
function from A to C defined by (gof)(x) = g(f(x))
Example
Let f(x) = x + 2 and g(x) = 2x, find ( f o g)(x) and ( g o f)(x)
Solution
(f o g)(x) = f (g(x)) = f(2x) = 2x+2
(g o f)(x) = g (f(x)) = g(x+2) =
2(x+2)=2x+4 Hence, (f o g)(x) ≠ (g o f)(x)
13
Discrete Mathematics
14