diff options
Diffstat (limited to '3875/CH4/EX4.23/Ex4_23.sce')
-rw-r--r-- | 3875/CH4/EX4.23/Ex4_23.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3875/CH4/EX4.23/Ex4_23.sce b/3875/CH4/EX4.23/Ex4_23.sce new file mode 100644 index 000000000..9f053e255 --- /dev/null +++ b/3875/CH4/EX4.23/Ex4_23.sce @@ -0,0 +1,10 @@ +clc;
+clear;
+myu=1.5 //refractive index of glass plate
+n=30 //no of fringes
+d=0.018 //thickness of the plate in mm
+
+//calculation
+lambda=(2*(myu-1)*d)/n
+mprintf("The wavelength of light used is = %4.0e m",lambda)
+//The answer provided in the textbook is wrong.
|