Q5: Compute the separations for M1 to HCG7 and M13 for HCG7 using the small-angle approximation: s = sqrt((Δα)^(2)cos^(2)δ_(ave)+(Δδ)^(2)). Where Δα and Δδ are the difference in RA and Dec respectively, and δ_(ave) is the average Dec of both objects.
(Hint: if you use only Quantity operations, you shouldn't have to think about units at all)
In [103]: import math
print(M1)
print(M13)
print(HCG7)
am1 = M1.ra - HCG7.ra
am13 = M13.ra - HCG7.ra
m1 = M1.dec - HCG7.dec
m13 = M13.dec - HCG7.dec
ave1 = (M1.dec + HCG7.dec) / 2
ave2 = (M13.dec + HCG7.dec) / 2