summaryrefslogtreecommitdiff
path: root/1271/CH2/EX2.43
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH2/EX2.43
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 '1271/CH2/EX2.43')
-rwxr-xr-x1271/CH2/EX2.43/43.txt1
-rwxr-xr-x1271/CH2/EX2.43/example2_43.sce11
2 files changed, 12 insertions, 0 deletions
diff --git a/1271/CH2/EX2.43/43.txt b/1271/CH2/EX2.43/43.txt
new file mode 100755
index 000000000..b1289cd2b
--- /dev/null
+++ b/1271/CH2/EX2.43/43.txt
@@ -0,0 +1 @@
+ Max. distance of pin holes from microscope = 8.941878 meter \ No newline at end of file
diff --git a/1271/CH2/EX2.43/example2_43.sce b/1271/CH2/EX2.43/example2_43.sce
new file mode 100755
index 000000000..c01fe14fe
--- /dev/null
+++ b/1271/CH2/EX2.43/example2_43.sce
@@ -0,0 +1,11 @@
+clc
+// Given that
+lambda = 5.5e-7 // wavelength of light in meter
+a = 0.004 // diameter of objective lens of telescope in meter
+x = 1.5e-3 // distance between two pin holes in meter
+// Sample Problem 43 on page no. 2.54
+printf("\n # PROBLEM 43 # \n")
+theta = (1.22 * lambda) / a // calculation for angle
+R = x / theta // calculation for max. distance of pin holes from microscope
+printf("\n Standard formula used \n theta = (1.22 * lambda) / a. \n R = x / theta. \n ")
+printf("\n Max. distance of pin holes from microscope = %f meter",R)