diff options
Diffstat (limited to '3875/CH4/EX4.20/Ex4_20.sce')
-rw-r--r-- | 3875/CH4/EX4.20/Ex4_20.sce | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/3875/CH4/EX4.20/Ex4_20.sce b/3875/CH4/EX4.20/Ex4_20.sce index d7db69871..5d462a526 100644 --- a/3875/CH4/EX4.20/Ex4_20.sce +++ b/3875/CH4/EX4.20/Ex4_20.sce @@ -3,8 +3,12 @@ clear; R=100 //radius of curvature in cm
D_5=0.3 //diameter of the 5th dark ring in cm
D_25=0.8 //diameter of the 25th dark ring in cm
-p=20 //difference in no of fringes
+n5=5 //fifth dark ring
+n25=25 //twenty fifth ring
//calculation
-lambda=(D_25^2-D_5^2)/(4*p*R)
+p = n25 - n5 //difference in no of fringes
+lambda=((D_25^2)-(D_5^2))/(4*p*R)
+
mprintf("The wavelength of light used is = %1.2e cm",lambda)
+//The answer provided in the textbook is wrong.
|