Book IX · Proposition 33
If a number have its half odd, it is even-times odd only.Heath, 1908
Needs: nothing earlier.
Rests on: Def.VII.9
Depth: 0 steps of argument above the first principles. Parallel postulate: not needed.
Nothing. It draws no intersections and reads nothing off the picture.
@proposition("IX.33", THEOREM,
sample=lambda rng: (2 * rng.randint(1, 20) + 1,))
def prop_IX_33(half: int) -> Out:
number = 2 * half
hypothesis("the half is odd", not measures(2, half))
claim("the number is even-times odd only", "Def.VII.9",
measures(2, number) and not measures(4, number))
return Out(number=number)