summaryrefslogtreecommitdiff
path: root/1271/CH2/EX2.40
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.40
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.40')
-rwxr-xr-x1271/CH2/EX2.40/40.txt1
-rwxr-xr-x1271/CH2/EX2.40/example2_40.sce11
2 files changed, 12 insertions, 0 deletions
diff --git a/1271/CH2/EX2.40/40.txt b/1271/CH2/EX2.40/40.txt
new file mode 100755
index 000000000..9bd004606
--- /dev/null
+++ b/1271/CH2/EX2.40/40.txt
@@ -0,0 +1 @@
+ The separation of two points on moon = 50.996000 meter \ No newline at end of file
diff --git a/1271/CH2/EX2.40/example2_40.sce b/1271/CH2/EX2.40/example2_40.sce
new file mode 100755
index 000000000..e31f566e8
--- /dev/null
+++ b/1271/CH2/EX2.40/example2_40.sce
@@ -0,0 +1,11 @@
+clc
+// Given that
+lambda = 5.5e-7 // wavelength of light in meter
+a = 5 // diameter of objective lens of telescope in meter
+R = 3.8e8 // distance of moon in meter
+// Sample Problem 40 on page no. 2.53
+printf("\n # PROBLEM 40 # \n")
+theta = (1.22 * lambda) / a // calculation for angle
+x = (R * theta) // calculation for the separation of two points on moon
+printf("\n Standard formula used \n theta = (1.22 * lambda) / a. \n x = (R * theta). \n")
+printf("\n The separation of two points on moon = %f meter",x)