diff options
Diffstat (limited to '854/CH13/EX13.8/Example13_8.sce')
-rwxr-xr-x | 854/CH13/EX13.8/Example13_8.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/854/CH13/EX13.8/Example13_8.sce b/854/CH13/EX13.8/Example13_8.sce new file mode 100755 index 000000000..b1af9acd2 --- /dev/null +++ b/854/CH13/EX13.8/Example13_8.sce @@ -0,0 +1,14 @@ +//clear//
+//Caption:Program to find the refractive index of the prism material
+//Example13.8
+//page463
+clear;
+clc;
+n2 =1.00; //refractive index of air
+teta1 = 45; //incident angle in degrees
+teta1 = 45/57.3;//incident angle in radians
+n1 = n2/sin(teta1);
+disp(n1,'refractive index of prism material n1=')
+//Result
+//refractive index of prism material n1=
+// 1.4142954
|