#Given
h=6.6*10**-34 #j-s
v=6*10**14 #/sec
w=6000*10**-10 #m
c=3*10**8
e=1.6*10**-19
#Calculation
E=(h*(v-(c/w)))/e
#Result
print"Energy of photoelectrons is",round(E,3),"ev"
#Given
w=4.8*10**-7
a0=2.3
h=6.6*10**-34
c=3*10**8
e=1.6*10**-19
#Calculation
hv=h*c/(w*e)
K=hv-a0
W=(h*c)/(a0*e)
#Result
print"Maximum kinetic energy is", round(K,2),"ev"
print"Longest wavelength is",round(W*10**7,2)*10**-7,"m"
#Given
h=6.62*10**-34 #joule-sec
m=9.1*10**-31
e=1.6*10**-19
E=1.25 #Joule
#Calculation
import math
w=h/(math.sqrt(2*m*E*e))
#Result
print"Wavelength is",round(w*10**10,0),"A"
#Given
h=6.6*10**-34 #J-s
m=1.674*10**-27 #Kg
w=10**-10 #m
#Calculation
E=(h**2/(2*m*w**2))/e
#Result
print"Energy of neutron is", round(E,4),"ev"
#given
w=4000*10**-10 #m
c=3*10**8 #m/s
h=6.62*10**-34 #js
#Calculation
v=c/w
E=(h*v)/e
#Result
print"Frequency is", v*10**-15,"*10**15 Hz"
print"Energy is",round(E,1),"ev"
#Given
h=6.62*10**-34 #J-s
m=1.67*10**-27 #Kg
K=1.38*10**-23 #Joule/K
T=300 #K
#Calculation
import math
w=h/(math.sqrt(2*m*K*T))
#Result
print"Wavelength is",round(w*10**10,2),"A"
#Given
m=1.67*10**-27 #Kg
h=6.62*10**-34 #joule-sec
V=2000 #V
#Calculation
import math
M=4*m
w=h/(math.sqrt(4*M*e*V))
#Result
print"De-Broglie wavelength is",round(w*10**13,1),"*10**-3 A"
#Given
h=6.626*10**-34 #j-s
m=9.1*10**-31 #Kg
v=10**7
#Calculation
w=h/(m*v)
#Result
print"De-Broglie wavelength is",round(w*10**10,4),"A"