summaryrefslogtreecommitdiff
path: root/3875/CH4/EX4.7/Ex4_7.sce
blob: c5a2eeb66d3e5db08203f9c9f8cbaddf290f3c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc;
clear;
d1=0.42*10^-3 //distance between images obtained at position 1 in m
d2=1.21*10^-3 //distance between images obtained at position 2 in m
Beta_1=0.4*10^-3 //bandwidth in m at position 1
Beta_2=0.5*10^-3 //bandwidth in m at position 2
D2_minus_D1=0.60 //displacement in position in m

//calculation

d=sqrt(d1*d2) //distance between sources in m
lambda=(d*(Beta_2-Beta_1))/D2_minus_D1

mprintf("The wavelength of the source is = %1.3e m",lambda)
//The answer provided in the textbook is wrong.