diff options
Diffstat (limited to '3537/CH1/EX1.44/Ex1_44.sce')
-rw-r--r-- | 3537/CH1/EX1.44/Ex1_44.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3537/CH1/EX1.44/Ex1_44.sce b/3537/CH1/EX1.44/Ex1_44.sce new file mode 100644 index 000000000..67ae0ffdb --- /dev/null +++ b/3537/CH1/EX1.44/Ex1_44.sce @@ -0,0 +1,9 @@ +//Example 1_44
+clc();
+clear;
+//To find the refractive index of the transparent sheet
+lemda=5460*10^-8 //units in cm
+t=6.3*10^-4 //units in cm
+n=6
+u=(n*lemda)/t+1
+printf("The refractive index of the transparent sheet is %.2f",u)
|