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