Given a while loop and a predicate, show that if the predicate is true before entry to the loop, then it is also true after exit from the loop.
predicate: m^3 > n^2
while (m ≥ 0 and m ≤ 100) do
m := 3 · m
n := 5 · n
end while
I tried to plug the $m$ and $n$ values into the predicate, but just got '27m^3>25n^2`.