blob: 83e063133a8ae0bba84c1c7f0a52c5bb42100753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc //Given that
Beta=0.10//fringe width in cm
D=200// separation between source and screen in cm
lambda=0.00055// wavelength of incident light in cm
//Sample Problem 1 Page No. 46
printf ("\n # Problem 1 # \n")
d= (D*lambda)/ (10*Beta)
printf (" \n Standard formula used \n beta= lambda*D/d \n")
printf ("\n Separation between sources is %f cm. \n",d)
|