summaryrefslogtreecommitdiff
path: root/1172/CH1/EX1.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH1/EX1.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1172/CH1/EX1.9')
-rwxr-xr-x1172/CH1/EX1.9/1_9.txt7
-rwxr-xr-x1172/CH1/EX1.9/Example1_9.sce10
2 files changed, 17 insertions, 0 deletions
diff --git a/1172/CH1/EX1.9/1_9.txt b/1172/CH1/EX1.9/1_9.txt
new file mode 100755
index 000000000..152ccdf13
--- /dev/null
+++ b/1172/CH1/EX1.9/1_9.txt
@@ -0,0 +1,7 @@
+ # Problem 9 #
+
+ Standard formula used
+ (mu – 1 )*t = n* lambda
+
+ Refractive index of sheet is 1.628571 .
+
diff --git a/1172/CH1/EX1.9/Example1_9.sce b/1172/CH1/EX1.9/Example1_9.sce
new file mode 100755
index 000000000..d341aac5f
--- /dev/null
+++ b/1172/CH1/EX1.9/Example1_9.sce
@@ -0,0 +1,10 @@
+clc
+//Given that
+t=0.00035// thickness of glass sheet in cm
+lambda=0.000055// wavelength of incident light in cm
+N=4// order of fringe
+//Sample Problem 9 Page No. 50
+printf("\n # Problem 9 # \n")
+printf(" \n Standard formula used \n (mu – 1 )*t = n* lambda \n")
+mu=N*lambda/t+1
+printf("\n Refractive index of sheet is %f .", mu)