summaryrefslogtreecommitdiff
path: root/1871/CH5/EX5.30/Ch05Ex30.sce
diff options
context:
space:
mode:
Diffstat (limited to '1871/CH5/EX5.30/Ch05Ex30.sce')
-rwxr-xr-x1871/CH5/EX5.30/Ch05Ex30.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1871/CH5/EX5.30/Ch05Ex30.sce b/1871/CH5/EX5.30/Ch05Ex30.sce
new file mode 100755
index 000000000..407954716
--- /dev/null
+++ b/1871/CH5/EX5.30/Ch05Ex30.sce
@@ -0,0 +1,12 @@
+// Scilab code Ex5.30: Pg:236 (2008)
+clc;clear;
+L_1 = 5e-05; // Limit of resolution of microscope, cm
+l = 25; // Least distance of distiinct vision, cm
+theta_1 = 1.5; // Angular limit of resolution of eye, minute
+theta_2 = theta_1/60*%pi/180; // Angular limit of resolution of eye, radian
+L_2 = l*theta_2; // Linear limit of the resolution of eye, cm
+M = L_2/L_1; // Magnifying power of the microscope
+printf("\nThe magnifying power of the microscope = %3d ", M);
+
+// Result
+// The magnifying power of the microscope = 218 \ No newline at end of file