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