blob: fca7af85458b67166cc156938cdbfe3ae8ac4a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
clear;
alpha=0.01 //wedge angle in radian
lambda=6000*10^-10 //wavelength in m
n=10 //the fringe observed
//calculation
x=((2*n-1)*lambda)/4*alpha
mprintf("The distance at which the 10th fringe will be obtained from the edge of the wedge is =%1.2e m",x)
//The answer provided in the textbook is wrong.
|