diff options
Diffstat (limited to '3875/CH4/EX4.23')
-rw-r--r-- | 3875/CH4/EX4.23/4_23.txt | 1 | ||||
-rw-r--r-- | 3875/CH4/EX4.23/Ex4_23.sce | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3875/CH4/EX4.23/4_23.txt b/3875/CH4/EX4.23/4_23.txt new file mode 100644 index 000000000..dbc8dd8d1 --- /dev/null +++ b/3875/CH4/EX4.23/4_23.txt @@ -0,0 +1 @@ + The wavelength of light used is = 6.0e-04 m
\ No newline at end of file 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.
|