let a, b, c be Real; :: thesis: ( 0 < a & a <= b & c >= 0 implies a to_power c <= b to_power c )
assume that
A1: 0 < a and
A2: a <= b and
A3: c >= 0 ; :: thesis: a to_power c <= b to_power c
per cases ( c = 0 or c > 0 ) by A3;
end;