From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1271/CH2/EX2.40/40.txt | 1 + 1271/CH2/EX2.40/example2_40.sce | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100755 1271/CH2/EX2.40/40.txt create mode 100755 1271/CH2/EX2.40/example2_40.sce (limited to '1271/CH2/EX2.40') 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) -- cgit