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