blob: f533aa6305ab23640fc0b2981b09772f2e1017d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear
//Given
d=0.125*10**-3 //m
l=4500*10**-10 //m
D=1 //m
//Calculation
x2=(2*D*l)/d
d1=2*x2
//Result
printf("\n Separation between the fringes is %0.3f mm", d1*10**3)
|