import proveit
# Prepare this notebook for defining the theorems of a theory:
%theorems_notebook # Keep this at the top following 'import proveit'.
from proveit import x, Lambda
from proveit.logic import InSet
from proveit.numbers import one, two, Div, Exp, MonDecFuncs, RealPos
# from ... import ...
%begin theorems
one_over_x_sqrd_in_mon_dec_fxns = (
InSet(Lambda(x, Div(one, Exp(x, two))),
MonDecFuncs(RealPos)))
%end theorems