summaryrefslogtreecommitdiff
path: root/1871/CH5/EX5.28/Ch05Ex28.sce
diff options
context:
space:
mode:
Diffstat (limited to '1871/CH5/EX5.28/Ch05Ex28.sce')
-rwxr-xr-x1871/CH5/EX5.28/Ch05Ex28.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1871/CH5/EX5.28/Ch05Ex28.sce b/1871/CH5/EX5.28/Ch05Ex28.sce
new file mode 100755
index 000000000..808f398b8
--- /dev/null
+++ b/1871/CH5/EX5.28/Ch05Ex28.sce
@@ -0,0 +1,9 @@
+// Scilab code Ex5.28: Pg:236 (2008)
+clc;clear;
+Lambda = 5500e-08; // Wavelength of the visible light, cm
+theta = 30; // Semi-angle of the cone of light, degree
+x = 1.22*Lambda/(2*sind(theta)); // Distance between the two nearby objects just resolved by the microscope, cm
+printf("\nThe resolving limit of the microscope = %3.1e cm", x);
+
+// Result
+// The resolving limit of the microscope = 6.7e-005 cm \ No newline at end of file