theorem
  for x being Element of D holds x in dom R iff ex y being Element of E
  st [x,y] in R
proof
  let x be Element of D;
  thus x in dom R implies ex y being Element of E st [x,y] in R
  proof
    assume x in dom R;
    then consider y being object such that
A1: [x,y] in R by XTUPLE_0:def 12;
    reconsider b = y as Element of E by A1,ZFMISC_1:87;
    take b;
    thus thesis by A1;
  end;
  given y being Element of E such that
A2: [x,y] in R;
  thus thesis by A2,XTUPLE_0:def 12;
end;
