theorem
  All(x,y,z,p) = All(t,s,q) implies x = t & y = s & All(z,p) = q
proof
  assume
A1: All(x,y,z,p) = All(t,s,q);
  hence x = t by Th5;
  All(y,z,p) = All(s,q) by A1,Th5;
  hence thesis by Th5;
end;
