theorem Th4:
a >= 0 & b > 0 implies a to_power b >= 0
proof
   assume A1: a >= 0;
   assume b > 0; then
   a = 0 implies a to_power b >= 0 by POWER:def 2;
   hence thesis by A1,POWER:34;
end;
