edited by
1,784 views
1 votes
1 votes
There exist 3 sets(A,B,C) and 2 functions f and g.

g be a function from set A to set B
f be a function from set B to set C

then composition of both the functions is denoted by $f \circ g$ which exists.

Then what is the necessary condition for the following 2 functions for the existence of $g \circ f$

a) Injection
b) Surjection
c) Bijection
d) None of these
edited by

1 Answer

1 votes
1 votes

For simplicity let's check bijection first. If bijection can't guarantee the existence of gof then neither Injectivity nor Surjectivity can.

Let,

  • Set A = {1, 2, 3}
  • Set B = {4, 5, 6}
  • Set C = {7, 8, 9}
  • g(A->B) is as follows g(1) = 4, g(2) = 5, g(3) = 6 , which is a bijection
  • f(B->C) is as follows f(4) = 7, f(5) = 8, f(6) = 9, which is also a bijection

Let's check if fog exists. So,

  • f(g(1)) = f(4) = 7
  • f(g(2)) = f(5) = 8
  • f(g(3)) = f(6) = 9
    So, fog exists.

Let's check if gof exists. If bijection were sufficient then gof should exist.

  • g(f(4)) = g(7) = not defined
  • g(f(5)) = g(8) = not defined
  • g(f(6)) = g{9} = not defined

So, it turns out that gof still doesn't exist. Hence, correct answer is D) None of these

Related questions

0 votes
0 votes
0 answers
1
radha gogia asked Sep 7, 2018
359 views
Here Domain and co-Domain is Integers.I am getting fog=gof , what's wrong in this approach ?
0 votes
0 votes
0 answers
4
Markzuck asked Jan 10, 2019
3,254 views
How to take composition of a Relation? here used concept of function but when to go with the transitivity rule concept as mentioned below?Please clarify in general when t...