#Given
k=7.68*10**6*1.6*10**-19 #J
e=1.6*10**-19
Z=29
m=9*10**9
#Calculation
r=(m*2*Z*e**2)/k
#Result
print"The distance of the closest approach is",round(r*10**14,1)*10**-14,"m"
#Given
a=10 #degree
e=1.6*10**-19
Z=79
m=9*10**9
a=5.0*1.6*10**-13
#Calculation
import math
b=(Z*e**2*(1/(math.tan(5*3.14/180.0)))*m)/a
#Result
print"Impact parameter is", round(b*10**13,1)*10**-13,"m"
#Given
Z=79
m=9*10**9
e=1.6*10**-19
r=4.0*10**-14
#Calculation
K=(m*2*Z*e**2)/(r*1.6*10**-13)
#Result
print"Energy is", round(K,2),"Mev"
#Given
v=2.1*10**7 #m/s
a=4.8*10**7 #C/Kg
Z=79
e=1.6*10**-19
m=9*10**9
#Calculation
r0=(2*m*Z*e*a)/v**2
#Result
print"Distance of the closest approach is", round(r0*10**14,1)*10**-14,"m"
#Given
Z=79
e=1.6*10**-19 #C
v=1.6*10**-12
m=9*10**9
#Calculation
import math
b=(m*Z*e**2*(1/(math.tan(45*3.14/180.0))))/v
#Result
print"(a) Scattering angle is 180 degree"
print"(b) The value of scattering angle decreases"
print"(c) Impact parameter is", round(b*10**14,1)*10**-14,"m"
print"(d) The scattering of particle takes place due to charge on the nucleus",
print"(e) Scattering angle is increase with decrease in impact parameter"
#Given
e=8.854*10**-12
h=6.62*10**-34
m=9*10**-31
e1=1.6*10**-19
#Calculation
import math
r1=((e*h**2)/(math.pi*m*e1**2))*10**10
v1=e1**2/(2*e*h)
n=2*r1
#Result
print"Radius of first orbit is", round(r1,2),"A"
print"Velocity of electron is",round(v1*10**-6,1),"*10**6 m/s"
print"Size of hydrogen atom is",round(n,2),"A"
#Given
n=1.0
n1=2.0
n2=3.0
a=0.53*10**-10
Z=3.0
#Calculation
r1=(a*n)/Z
r2=(a*n1**2)/Z
r3=(a*n2**2)/Z
E1=(-13.6*Z**2)/n**2
E2=(-13.6*Z**2)/n1**2
E3=(-13.6*Z**2)/n2**2
E=E3-E1
#Result
print"(i) Radii of three lowest allowed orbits is", round(r1*10**10,2),"A,",round(r2*10**10,2),"A and",r3*10**10,"A"
print"(ii) Energy of three lowest allowed orbits is",E1,"ev,",E2,"ev and",E3,"ev"
print"Energy of the photon is",E,"ev"
#Given
n=2.0
n1=3.0
#Calculation
E2=-13.6/n**2
E3=-13.6/n1**2
#Result
print"Energies of two energy level is",E2,"ev and",round(E3,2),"ev"
#Given
Rh=1.097*10**7
#Calculation
l=9/(8.0*Rh)
#Result
print"Wavelength of second line is",round(l*10**10,0),"A"
#Given
Rh=1.097*10**7
#Calculation
l=4/Rh
#Result
print"Shortest wavelength is",round(l*10**10,0),"A"
#Given
Rh=1.097*10**7
#Calculation
l=4/(3.0*Rh)
#Result
print"Longest wavelength is",round(l*10**10,0),"A"
#Given
n=1.0
h=6.62*10**-34
c=3*10**8
f=1.6*10**-19
Z=2
#Calculation
E1=(-13.6*Z**2)/n**2
l=-(h*c)/(E1*f)
#Result
print"Minimum wavelength is", round(l*10**10,0),"A"
#Given
n=1
Z=1.0
a=0.53*10**-10
Z1=4.0
#Calculation
import math
rh=(a*n)/Z**2
n1=math.sqrt((a*Z1/rh))
Eh=(-13.6*Z**2)/n**2
Ebe=(-13.6*Z1**2)/n1**2
E=Ebe/Eh
#Result
print"Energy of two states is",E
#Given
Z=2
e=1.6*10**-19
e1=8.854*10**-12
n=3
h=6.62*10**-34
c=3*10**8
#Calculation
v=(Z*e**2)/(2*e1*n*h)
a=v/c
#Result
print"Speed of the electron is",round(a,3 )
#Given
r=10**-10
R=10**-15
Rs=7*10**8
#Calculation
R1=r/R
Re=R1*Rs
#Result
print"Radius of the earth's orbit is",Re,"m. Thus the earth would be much farther away from the sun"
#Given
E=-13.6*1.9*10**-19 #J
m=9*10**9
e=1.6*10**-19
n=1
c=3*10**8
#Calculation
r=(-e**2*m)/(2.0*E)
v=c/(137*n)
#Result
print"Orbital radius is", round(r*10**11,1)*10**-11,"m"
print"Velocity of the electron is",round(v*10**-6,1),"*10**6 m/s"
#Given
v=2.2*10**6
r=5.3*10**-11
#Calculation
import math
f=v/(2*math.pi*r)
#Result
print"Initial frequency of light is",round(f*10**-15,1)*10**15,"Hz"
#Given
m=10 #Kg
T=2*60*60 #S
rn=8*10**6 #m
h=6.62*10**-34
#Calculation
import math
vn=(2*math.pi*rn)/T
n=(2*math.pi*rn*vn)/h
#Result
print"Quantum number is",round(n*10**-44,1)*10**45
#Given
E2=18.70
E1=16.70
h=6.62*10**-34
c=3*10**8
#Calculation
E=E2-E1
l=(h*c)/(E*1.6*10**-19)
#Result
print"Wavelength is", round(l*10**9,0),"nm"
#Given
n1=2
n2=3
lb=6563
a=20
b=108.0
#Calculation
l1=(lb*a)/b
#Result
print"Wavelength of first member is",round(l1,0),"A"
#Given
Rh=1.097*10**7 #/m
h=6.63*10**-34
c=3*10**8
n=2.0
n1=4.0
#Calculation
E=(h*c*Rh*(1/n**2-1/n1**2))/1.6*10**-19
#Result
print"Minimum energy is", round(E*10**38,2),"ev"
#Given
Rh=1.097*10**7
n2=4.0
n1=3.0
#Calculation
lm=1/(Rh*(1/n1**2-1/n2**2))
lm1=9/Rh
#Result
print"Wavelength is", round(lm1*10**9,1),"nm. This wavelength is in infrared part"