theorem Th2:
  seq is nonnegative implies seq is summable & SUM seq = Sum seq
proof
  assume seq is nonnegative;
  then
A1: Partial_Sums seq is non-decreasing by MESFUNC9:16;
  then Partial_Sums seq is convergent by RINFSUP2:37;
  hence seq is summable;
  lim Partial_Sums seq = sup Partial_Sums seq by A1,RINFSUP2:37;
  hence Sum seq = SUM seq by Th1;
end;
