summaryrefslogtreecommitdiff
path: root/1271/CH2/EX2.42
diff options
context:
space:
mode:
Diffstat (limited to '1271/CH2/EX2.42')
-rwxr-xr-x1271/CH2/EX2.42/42.txt1
-rwxr-xr-x1271/CH2/EX2.42/example2_42.sce9
2 files changed, 10 insertions, 0 deletions
diff --git a/1271/CH2/EX2.42/42.txt b/1271/CH2/EX2.42/42.txt
new file mode 100755
index 000000000..215c1d1dc
--- /dev/null
+++ b/1271/CH2/EX2.42/42.txt
@@ -0,0 +1 @@
+ Diameter of telescope objective = 0.300000 meter \ No newline at end of file
diff --git a/1271/CH2/EX2.42/example2_42.sce b/1271/CH2/EX2.42/example2_42.sce
new file mode 100755
index 000000000..437bb3e15
--- /dev/null
+++ b/1271/CH2/EX2.42/example2_42.sce
@@ -0,0 +1,9 @@
+clc
+// Given that
+lambda = 6e-7 // wavelength of light in meter
+theta = 2.44e-6 // separation angle of stars in radian
+// Sample Problem 42 on page no. 2.54
+printf("\n # PROBLEM 42 # \n")
+a = (1.22 * lambda) / theta // calculation for diameter of telescope objective
+printf("\n Standard formula used \n a = (1.22 * lambda) / theta. \n")
+printf("\n Diameter of telescope objective = %f meter",a)