Definition 11.5.1. Subsystem.
If is an algebraic system of a certain kind and is a subset of then is a subsystem of if is an algebraic system of the same kind as The usual notation for β is a subsystem of β is
xxxxxxxxxx
def addition_table(n,H):
for a in H:
line=[]
for b in H:
line+=[(a+b)%n]
print(line)
addition_table(15,Set([0,5,10]))