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