Book VII · Proposition 13
If four numbers be proportional, they will also be proportional alternately.Heath, 1908
Needs: nothing earlier.
Used by: VII.14
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(
"VII.13",
THEOREM,
sample=_proportional_numbers,
)
def prop_VII_13(a: int, b: int, c: int, d: int) -> Out:
hypothesis("the four are proportional", a * d == b * c)
claim("they are proportional alternately as well", "VII.13", a * d == c * b)
return Out()