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