Proof: Do Object Store At Unchanged 20
Let's prove the following theorem:
if the following are true:
- expression state at time 20 = "iterate_args"
- Python Object Store at time 20 = [ ]
then Python Object Store at time 21 = [ ]
Proof:
Given
1 | expression state at time 20 = "iterate_args" |
---|---|
2 | Python Object Store at time 20 = [ ] |
# | Claim | Reason |
---|---|---|
1 | Python Object Store at time (20 + 1) = Python Object Store at time 20 | if expression state at time 20 = "iterate_args", then Python Object Store at time (20 + 1) = Python Object Store at time 20 |
2 | Python Object Store at time (20 + 1) = [ ] | if Python Object Store at time (20 + 1) = Python Object Store at time 20 and Python Object Store at time 20 = [ ], then Python Object Store at time (20 + 1) = [ ] |
3 | 20 + 1 = 21 | 20 + 1 = 21 |
4 | Python Object Store at time (20 + 1) = Python Object Store at time 21 | if 20 + 1 = 21, then Python Object Store at time (20 + 1) = Python Object Store at time 21 |
5 | Python Object Store at time 21 = [ ] | if Python Object Store at time (20 + 1) = Python Object Store at time 21 and Python Object Store at time (20 + 1) = [ ], then Python Object Store at time 21 = [ ] |
Comments
Please log in to add comments