1.
Use and an integer so that (a) divides the order of and (b) has no subgroup of order (Do not use the group for since this is in the text.) Provide a single line of Sage code that has all the logic to produce the desired as its output. (You can give your group a simple name on a prior line and then just reference the group by name.) Here is a very simple example that might help you structure your answer.
.subgroups()
to find an example of a group xxxxxxxxxx
a = 5
b = 10
c = 6
d = 13
a.divides(b)
xxxxxxxxxx
not (b in [c,d])
xxxxxxxxxx
a.divides(b) and not (b in [c,d])