• S
    SwaseekhGATE Preparation
General
  • Dashboard
  • Syllabus
  • Questions
  • Aptitude
  • Mock Tests
  • TCS NQT 2026
Account
  • Pricing
  • Contact
  1. GATE CS
  2. PYQs
  3. Discrete Mathematics

Consider the binary relation: S = {(x,y) | y = x+1 and y in {0,1,2}}. The reflexive closure is S. The reflexive transitive closure of S is A. {(x,y) | y > x and y in {0,1,2}} B. {(x,y) | y >= x and y in {0,1,2}} C. {(x,y) | y < x and y in {0,1,2}} D. {(x,y) | y <= x and y in {0,1,2}}

GATE 2004 · Discrete Mathematics · Relations · easy

Answer: B. {(x,y) | y >= x and y in {0,1,2}}

  1. List the original relation S: For y=0: x=-1 giving (-1,0). For y=1: x=0 giving (0,1). For y=2: x=1 giving (1,2).
  2. Add reflexive pairs (z,z) for z in {0,1,2}: Add (0,0),(1,1),(2,2). Note (-1,-1) is excluded because y=-1 is not in {0,1,2}.
  3. Apply transitivity to complete R*: (-1,0)+(0,1)->(-1,1); (0,1)+(1,2)->(0,2); (-1,1)+(1,2)->(-1,2). Final R* = {(-1,0),(-1,1),(-1,2),(0,0),(0,1),(0,2),(1,1),(1,2),(2,2)}.