blob: d4778114c89e3a244b06acffcd14402c060f974e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//Given that
beta=0.0320//fringe width in cm
D=100// separation between source and screen in cm
d=0.184// separation between sources in cm
//Sample Problem 3 Page No. 47
printf ("\n # Problem 3 # \n")
printf(" \n Standard formula used beta=lambda*D/d \n")
lambda=d*beta/D*1e8
printf("\n Wavelength of light used is %d Angstrom.",lambda)
|