#Given
A1=197
A2=107.0
#Calculation
R=(A1/A2)**(0.3)
#Result
print"The ratio of the nuclear radii of the gold and silver isotope is",round(R,3)
#Given
R=1.2*10**-15 #m
M=1.67*10**-27 #kg
P1=10**3 #kg m**-3
#Calculation
import math
V=1.3*math.pi*(R**3)
P=M/V
A=P/P1
#Result
print"Nuclear matter is denser than water is",round(A*10**-14,3),"*10**14","times"
#Given
Mh=4.00150 #a.m.u.
Mp=1.00728 #a.m.u.
Mn=1.00867 #a.m.u.
W0=931.5 #MeV
#Calculation
A=((2*Mp)+(2*Mn))-Mh
A1=A*W0
#Result
print"Binding energy of a-particle is",round(A1,2),"MeV"
#Given
Mp=1.007275 #a.m.u.
Mn=1.008665 #a.m.u.
Mh=2.013553 #a.m.u.
S=2.0
U=931.5
#Calculation
A=(Mp+Mn)-Mh
P=A/S
W=A*U
L=W/S
#Result
print"The mass defect is",A,"a.m.u."
print"The packing fraction is",P,"a.m.u."
print"The binding energy of deutron is",round(W,2),"MeV"
print"The binding energy of per nucleon of deutron is",round(L,2),"MeV"
#Given
Mh=1.007825 #a.m.u.
Mn=1.008665 #a.m.u.
Mp=55.934939 #a.m.u.
Mb=208.980388 #a.m.u.
A=56.0
Z=26
S=931.5
A1=209.0
Z1=83
#Calculation
W=A-Z
Q=((Z*Mh+W*Mn)-Mp)*S
R=Q/A
W1=A1-Z1
Q1=((Z1*Mh+W1*Mn)-Mb)*S
R1=Q1/A1
#Result
print"The binding energy of the nuclri of Fe is",round(Q,2),"MeV"
print"The binding energy of the nuclei of Bi is",round(Q1,2),"MeV"
print"Binding energy per nucleon of Fe is",round(R,2),"MeV"
print"Binding energy per nucleon of Bi is",round(R1,3),"MeV"