Proof: Double Transitive Property Less 2
Let's prove the following theorem:
if the following are true:
- a < b
- x = a
- y = b
then x < y
Proof:
Given
1 | a < b |
---|---|
2 | x = a |
3 | y = b |
# | Claim | Reason |
---|---|---|
1 | x < b | if x = a and a < b, then x < b |
2 | b = y | if y = b, then b = y |
3 | x < y | if b = y and x < b, then x < y |
Comments
Please log in to add comments