diff options
Diffstat (limited to '3875/CH4/EX4.21/Ex4_21.sce')
-rw-r--r-- | 3875/CH4/EX4.21/Ex4_21.sce | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/3875/CH4/EX4.21/Ex4_21.sce b/3875/CH4/EX4.21/Ex4_21.sce index e57549561..c0b88ce7f 100644 --- a/3875/CH4/EX4.21/Ex4_21.sce +++ b/3875/CH4/EX4.21/Ex4_21.sce @@ -1,9 +1,10 @@ clc;
clear;
-X2_minus_X1=0.05896*10^-3 //displacement of mirror in m
+disp_X=0.05896*10^-3 //displacement of mirror in m
n=200 //no of fringes
//calculation
-lambda=(2*X2_minus_X1)/n
+lambda=(2*disp_X)/n
+
mprintf("The wavelength of the light is = %1.3e m",lambda)
//The answer provided in the textbook is wrong.
|