#Given
R0=1.2*10**-15 #m
A=208
A1=16
#calculation
R=R0*A**0.33
R1=R0*A1**0.33
#Result
print"Nuclear radius of lead is", round(R*10**15,1),"fm"
print"Nuclear radius of oxygen is", round(R1*10**15,0),"fm"
#Given
me=9.1*10**-31
c=3*10**8
e=1.6*10**-19
mp=1.673*10**-27
mn=1.675*10**-27
#Calculation
E=(me*c**2)/e
E1=(mp*c**2)/e
E2=(mn*c**2)/e
#Result
print"(i) Equivalent energy of electron is",round(E*10**-6,2),"Mev"
print"(ii) Equivalent energy of proton is",round(E1*10**-6,1),"Mev"
print"(iii) Equivalent energy of neutron is",round(E2*10**-6,1),"Mev"
#Given
m=10**-3 #m
c=3*10**8 #m/s
a=3.6*10**6 #J
#Calculation
E=(m*c**2)/a
#Result
print E*10**-7,"*10**7 KWh"
#Given
Z=17
A=35
Z1=92
A1=235
Z2=4
A2=9
#Calculation
n=A-Z
n1=A1-Z1
n2=A2-Z2
#Calculation
print"Number of neutron in 17Cl35 is",n
print"Number of neutron in 92U235 is",n1
print"Number of neutron in 4Be9 is",n2
#Given
A2=235
A1=16.0
R1=3*10**-15 #m
#Calculation
R=(A2/A1)**0.33
R2=R*R1
#Result
print"Nuclear radius is", round(R2*10**15,3),"fermi"
#Given
me=55.85
u=1.66*10**-27 #Kg
R=1.2*10**-15
#Calculation
import math
m=me*u
a=(3*u)/(4.0*math.pi*R**3)
#Result
print"Nuclear density is", round(a*10**-17,2)*10**17,"Kg/m**3"
#Given
M=4.001509 #a.m.u
N=1.008666
N1=1.007277
a=1.66*10**-27
c=3*10**8
e=1.6*10**-19
n=4.0
#Calculation
A=2*N1+2*N
M1=A-M
Eb=M1*a*c**2/e
B=Eb/n
#Result
print"(i) Mass defect is",M1,"a.m.u"
print"(ii) Binding energy is",round(Eb*10**-6,1),"Mev"
print" Binding energy per nucleon is",round(B*10**-6,2),"Mev"
#Given
ma=1.00893
m1=1.00813
m2=2.01473
a=931.5
a1=4.00389
#Calculation
m=ma+m1-m2
Eb=m*a
m3=2*ma+2*m1-a1
Eb1=m3*a
#Result
print"(i) Binding energy when one neutron and one proton combined together is", round(Eb,2),"Mev"
print"(ii) Binding energy when two neutrons and two protons are combined is",round(Eb1,1) ,"Mev"
#Given
a=1.66*10**-27 #Kg
c=3*10**8
mp=1.00727
mn=1.00866
mo=15.99053
#Calculation
E=(a*c**2)/1.6*10**-19
m1=8*mp+8*mn-mo
a1=m1*E
#Result
print"Energy equivalent of one atomic mass unit is", round(a1*10**32,1),"Mev/c**2"
#Given
mp=1.007825
mn=1.008665
m=39.962589
a2=931.5
Z=40.0
#Calculation
E=20*mp+20*mn
m1=E-m
Eb=m1*a2
B=Eb/Z
#Result
print"Binding energy per nucleon is", round(B,3),"Mev/nucleon"
#Given
t=5000 #Days
t1=2000.0
a=0.693
#Calculation
import math
dt=(a*t)/t1
N=math.log10(dt)
l=a*N/(t1)
#Result
print"(i) The fraction remaining after 5000 days is", round(N,3)
print"(ii) The activity of sample after 5000 days is",round(l*10**5,1),"*10**8 Bq"
#Given
N=3.67*10**10 #dis/second
r=226.0
A=6.023*10**23
#Calculation
n=A/r
l=N/n
D=0.693/l
a=D/(3600.0*24.0*365.0)
#Result
print" Half life of radium is",round(a,0),"years"
#Given
N0=475
N=270.0
t=5.0
#Calculation
import math
a=N0/N
l=math.log(a)/t
T=1/l
T1=0.693/l
#Result
print"(i) The decay constant is",round(l,3),"/minute"
print"(ii) Mean life is",round(T,2),"minute"
print"(iii) Half life is",round(T1,2),"minute"
#Given
t=1500
N=0.01
N0=0.999
#Calculation
import math
T=t*math.log(N)/math.log(0.5)
T1=t*math.log(N0)/math.log(0.5)
#Result
print"(i) Years will reduce to 1 centigram is",round(T,1),"years"
print"(ii) Years will lose 1 mg is",round(T1,2),"years"
#Given
a=2*10**12
b=9.0*10**12
T=80
#Calculation
import math
c=math.log(a/b)
t=-(c*T)/0.693
#Result
print"Time required is",round(t,0),"second"
#Given
T=6.0
A=6.023*10**23
W=99.0
#Calculation
import math
l=0.693/T
N0=A*10**-12/W
A0=l*N0
N=N0*(1/math.log10(l))
A1=-(l*N)
#Result
print" Activity in the beginning and after one hour",round(A1*10**-8,3),"/h"
#Given
T=30.0
#Calculation
import math
l=0.693/T
T1=1/l
t=math.log(4)/l
t1=math.log(8)/l
#Result
print"(i) average life is",round(l,4),"/day"
print"(ii) The time taken for 3/4 of the original no. to disintegrate is",round(T1,2),"days"
print"(iii) Time taken is",round(t,0),"days"
print"(iv) Time taken is",round(t1,0),"days"
#Given
l=1620.0
l1=405.0
#Calculation
import math
T=(1/l)+(1/l1)
t=math.log(4)/T
#Result
print"The time during which three-fourths of a sample will decay is",round(t,0),"years"
#Given
C=3.7*10**10 #disintegrations/s
A=6.02*10**23
B=234
#Calculation
D=(C*B)/A
#Result
print"Mass ofuranium atoms disintegrated per second is",round(D*10**11,3)*10**-11,"g"
#Given
M=0.075 #kg /mol
m=1.2*10**-6 #kg
A=6.0*10**23 #/mol
t=9.6*10**18
N=170
#Calculation
n=(A*m)/M
l=N/t
T=0.693/l
#Result
print"Number of K-40 atoms in the sample is", n
print"Half life of K-40 is", round(T/(24.0*3600.0*365)*10**-9,3),"*10**9 years"
#Given
mp=232.03714
mn=228.02873
m0=4.002603
a=931.5
A=232.0
e=1.6*10**-19
m=1.66*10**-27
#Calculation
M=mp-mn-m0
Q=M*a
K=(A-4)*Q/A
S=math.sqrt((2*K*e)/(4.0*m))
#Result
print"(i) Kinetic energy is", round(K,1),"Mev"
print"(ii) Speed of particle is", round(S*10**-4,1),"*10**7 m/s"
#Given
b=238
c=206
d=92
e=82
#Calculation
a=(b-c)/4.0
A=-d+(2*a)+e
#Result
print"(i) The emission of alpha particle will reduce the mass number by 4a and charge number by 2a"
print"(ii) Number of alpha particle is", a
print"Number of beta particle is",A
#Given
a=218
b=84
#Calculation
A=a-4
Z=b-2
#Result
print"Atomic number of new element formed is", A
print"Mass number of new element formed is",Z
#Given
mp=10.016125
mn=4.003874
mp1=13.007490
mn1=1.008146
a=931.5
#Calculation
Mr=mp+mn
Mp=mp1+mn1
Md=Mr-Mp
A=a*Md
#Result
print"Energy released in the reaction is",round(A,3),"Mev"
#Given
a=10**6 #J/s
E=200*10**6*1.6*10**-19
#Calculation
N=a/E
#Result
print"Number of fission per second is", round(N*10**-16,2)*10**16
#Given
P=3*10**8 #W
E=200*10**6*1.6*10**-19
a=235
m=6.023*10**23
#Calculation
E1=P*3600
N=E1/E
M1=(a*N)/m
#Result
print"Mass of uranium fissioned per hour is", round(M1,2),"g"
#Given
m=6.023*10**26
a=235.0
t=30 #Days
E=200*10**6*1.6*10**-19
#Calculation
N=(2/a)*m
A=N/(t*24*60.0*60.0)
P=E*A
#Result
print"Power output is", round(P*10**-6,1),"Mev"
#Given
m=1.0076
mp=4.0039
a=931.5*10**6 #ev
#Calculation
Mr=4*m
Md=Mr-mp
E=Md*a*1.6*10**-19
#Result
print"Energy released is", round(E*10**13,2)*10**-13,"J"
#Given
a=6*10**-3 #Kg
c=3*10**8
#Calculation
E=a*c**2
#Result
print"Energy liberated is", E,"J"