p:=1;i:=1
while(i =< n)
{p:=p*i;
i:=i+1}
Suppose the state space is
x
x
, with
a typical state. If input is
, where
are any ``default values'', we get:
| (2.1) | |||
| (2.2) | |||
| (2.3) | |||
| (2.4) | |||
| (2.5) |
This piece of code seems to compute
. How to proive this? How to assert it even?