Book IX · Proposition 1
If two similar plane numbers by multiplying one another make some number, the product will be square.Heath, 1908
Needs: nothing earlier.
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.1",
THEOREM,
sample=similar_planes,
)
def prop_IX_1(a: int, b: int, c: int, d: int) -> Out:
hypothesis("the sides are genuine numbers",
a > 1 and b > 1 and c > 1 and d > 1, guard=True)
hypothesis("the two are similar plane numbers, their sides proportional",
a * d == b * c)
first, second = a * b, c * d
claim("their product is square", "IX.1", is_square(first * second))
return Out(product=first * second)