#Given
w1=4
w2=9.0
a=25
#Calculation
I=w1/w2
Imax=a/1.0
#Result
print"Ratio of intensity is",Imax
#Given
l=4800*10**-10 #m
b=0.6*10**-2
b1=0.0045
#Calculation
a=l/b
l1=a*b1*2
#Result
print"Wavelenght of the light is", l1*10**10,"A"
#Given
d=1.5*10**-3
D=1 #m
w=3.93 #mm
D1=1.5
#Calculation
b=w/10.0
l=(b*10**-3*d)/D
a=(10*D1*l)/d
#Result
print"Wavelength of the light is", l,"m"
print"Width of 10 fringes is",a*10**3,"*10**-3 m"
#Given
d=0.02 #cm
D=80
l=6*10**-5
n=5
#Calculation
y5=n*D*l/d
#Result
print"Distance of fifth bright fringe is",y5,"cm"
#Given
d=3*10**-4
D=1.5
y4=10**-2 #m
#Calculation
l=y4*d/(4*D)
#Result
print"Wavelength of light is",l,"m"
#Given
d=0.125*10**-3 #m
l=4500*10**-10
D=1
#Calculation
y2=2*D*l/d
y21=2*y2
#Result
print"Seperation between bright fringe on both sides of central maximum is",y21*10**3,"*10**-3 m"
#Given
d=0.012 #m
D=100
l=6000*10**-8 #cm
n=2
#Calculation
y2=(n**2+1)*D*l/(n*d)
#result
print"Distance of 3rd dark band is",y2,"cm"
#Given
d=2*10**-4 #m
D=1.5
y3=1.8*10**-2
#Calculation
l=2*y3*d/(7*D)
#Result
print"Wavelength of the light is", round(l*10**7,2)*10**-7,"m"
#Given
b=2*10**-3
l=6.0*10**-7
u=1.33
#calculation
l1=b/l
b2=(b*l)/(u*l)
#Result
print"Fringe width is",round(b2*10**3,2),"mm"
#Given
l=6000*10**-10 #m
d=10**-3
D=1
n=10
#Calculation
a10=n*l/d
b=(D*l)/d
#Result
print"(a) Angular position of 10th maximum is",a10,"radian"
print"(b) Separation of the two adjacent minima is",b*10**3,"mm"
#Given
l=6000*10**-10 #m
r=0
n=7
#Calculation
t=n*l/2.0
#Result
print"Difference of the film is", t,"m"
#Given
u=1.4
t=10**-4 #cm
n1=4.0
n2=5.0
n3=6.0
n4=7.0
N1=9
N2=11
N3=13
#Calculation
a=2*u*t*10**8
l1=a/n1
l2=a/n2
l3=a/n3
l4=a/n4
L1=2*a/N1
L2=2*a/N2
L3=2*a/N3
#Result
print"(i) Wavelength When the reflection is weak is",l1,"A ,",l2,"A ,",round(l3,0),"A ,",l4,"A"
print"(ii) Wavelength when the reflection is strong is",round(L1,0),"A ,",round(L2,0),"A ,",round(L3,0),"A"
#Given
n1=10
l1=4358*10**-10 #m
l2=5893.0*10**-10
#Calculation
n2=n1*l1/l2
#Result
print"Number of fringes is",round(n2,1)