Proof: Get Iterate Expr 13
Let's prove the following theorem:
if the following are true:
- expression state at time 13 = "iterate_args"
- arguments stack at time 13 = [ [ "Smith", [ 25, [ ] ] ], [ ] ]
then the expression at time 14 = "Smith"
Proof:
Given
1 | expression state at time 13 = "iterate_args" |
---|---|
2 | arguments stack at time 13 = [ [ "Smith", [ 25, [ ] ] ], [ ] ] |
# | Claim | Reason |
---|---|---|
1 | the expression at time (13 + 1) = "Smith" | if expression state at time 13 = "iterate_args" and arguments stack at time 13 = [ [ "Smith", [ 25, [ ] ] ], [ ] ], then the expression at time (13 + 1) = "Smith" |
2 | 13 + 1 = 14 | 13 + 1 = 14 |
3 | the expression at time (13 + 1) = the expression at time 14 | if 13 + 1 = 14, then the expression at time (13 + 1) = the expression at time 14 |
4 | the expression at time 14 = "Smith" | if the expression at time (13 + 1) = the expression at time 14 and the expression at time (13 + 1) = "Smith", then the expression at time 14 = "Smith" |
Comments
Please log in to add comments