theorem Th5:
  a,b // c,d implies a,b // d,c
proof
  assume a,b // c,d;
  then c,d // a,b by Th2;
  then d,c // a,b by Th4;
  hence thesis by Th2;
end;
