theorem
  max(0,i-j) is Element of NAT
proof
  per cases;
  suppose
    i <= j;
    hence thesis by Th2;
  end;
  suppose
A1: j <= i;
    then i - j is Element of NAT by NAT_1:21;
    hence thesis by A1,Th3;
  end;
end;
