import proveit
# Prepare this notebook for defining the axioms of a theory:
%axioms_notebook # Keep this at the top following 'import proveit'.
from proveit import x, y
from proveit.logic import Equals, Exists, Forall, InSet
from proveit.numbers import Integer
from proveit.numbers import Divides, frac
%begin axioms
divides_def = Forall(
(x, y),
Equals(Divides(x, y), InSet(frac(y, x), Integer)))
%end axioms