diff options
Diffstat (limited to '3537/CH1/EX1.54/Ex1_54.sce')
-rw-r--r-- | 3537/CH1/EX1.54/Ex1_54.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH1/EX1.54/Ex1_54.sce b/3537/CH1/EX1.54/Ex1_54.sce new file mode 100644 index 000000000..ad0c5a94e --- /dev/null +++ b/3537/CH1/EX1.54/Ex1_54.sce @@ -0,0 +1,10 @@ +//Example 1_54
+clc();
+clear;
+//To find the wavelength of the light
+R=70 //units in cm
+//Diameter of the 10th dark ring
+D=0.433 //units in cm
+n=10
+lamda=D^2/(4*R*n) //units in cm
+printf("The wavelength of the light is %f cm",lamda)
|