theorem Th3:
  a,b // c,d implies a,b // d,c
proof
  assume
A1: a,b // c,d;
  d,c // c,d by Def1;
  hence thesis by A1,Def1;
end;
