import proveit
# Prepare this notebook for defining the common expressions of a theory:
%common_expressions_notebook # Keep this at the top following 'import proveit'.
from proveit.logic import BooleanSet, TrueLiteral, FalseLiteral
%begin common
Boolean = BooleanSet()
TRUE, FALSE = TrueLiteral(), FalseLiteral()
%end common