Proof: Get Begin Expr Value 45
Let's prove the following theorem:
if the following are true:
- expression state at time 45 = "begin_expr"
- the expression at time 45 =
__add__(self.x, 5)
- Value Stack at time 45 = [ [ ], [ ] ]
then Value Stack at time 46 = [ [ ], [ [ ], [ ] ] ]
Proof:
Given
1 | expression state at time 45 = "begin_expr" |
---|---|
2 | the expression at time 45 = __add__(self.x, 5) |
3 | Value Stack at time 45 = [ [ ], [ ] ] |
# | Claim | Reason |
---|---|---|
1 | Value Stack at time (45 + 1) = [ [ ], Value Stack at time 45 ] | if expression state at time 45 = "begin_expr" and the expression at time 45 = __add__(self.x, 5) , then Value Stack at time (45 + 1) = [ [ ], Value Stack at time 45 ] |
2 | [ [ ], Value Stack at time 45 ] = [ [ ], [ [ ], [ ] ] ] | if Value Stack at time 45 = [ [ ], [ ] ], then [ [ ], Value Stack at time 45 ] = [ [ ], [ [ ], [ ] ] ] |
3 | Value Stack at time (45 + 1) = [ [ ], [ [ ], [ ] ] ] | if Value Stack at time (45 + 1) = [ [ ], Value Stack at time 45 ] and [ [ ], Value Stack at time 45 ] = [ [ ], [ [ ], [ ] ] ], then Value Stack at time (45 + 1) = [ [ ], [ [ ], [ ] ] ] |
4 | 45 + 1 = 46 | 45 + 1 = 46 |
5 | Value Stack at time (45 + 1) = Value Stack at time 46 | if 45 + 1 = 46, then Value Stack at time (45 + 1) = Value Stack at time 46 |
6 | Value Stack at time 46 = [ [ ], [ [ ], [ ] ] ] | if Value Stack at time (45 + 1) = Value Stack at time 46 and Value Stack at time (45 + 1) = [ [ ], [ [ ], [ ] ] ], then Value Stack at time 46 = [ [ ], [ [ ], [ ] ] ] |
Comments
Please log in to add comments