blob: d6011238b4de4121aeb2df69199cd8bd91180359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//Given that
mu = 1.5 // refractive index of plane glass prism
theta = %pi / 180 // angle of prism
y1 = 10 // separation between slit and biprism in cm
y2 = 100 //separation sbetween biprism and screen in cm
lambda = 0.00005893// wavelength of incident light in cm
//Sample Problem 6 Page No. 48
printf("\n # Problem 6 # \n")
printf("\n Standard formula used \n Beta = (D * lambda) / d")
d = 2 * ( mu -1) * theta * y1
D = y1 + y2
Beta = (D * lambda) / d
printf("\n Fringe width observed at distance 1 meter is %f m", Beta)
|