diff options
Diffstat (limited to '1847/CH3/EX3.45/Ch03Ex45.sce')
-rwxr-xr-x | 1847/CH3/EX3.45/Ch03Ex45.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1847/CH3/EX3.45/Ch03Ex45.sce b/1847/CH3/EX3.45/Ch03Ex45.sce new file mode 100755 index 000000000..cf8535560 --- /dev/null +++ b/1847/CH3/EX3.45/Ch03Ex45.sce @@ -0,0 +1,13 @@ +// Scilab Code EX3.45:: Page-3.58 (2009) +clc;clear; +lambda = 5500e-010; // Wavelength of light used, m +a = 0.01; // Diameter of objective of telescope, m +f = 3.0; // Focal length of tlescope objective, m +// For telescope, the limit of resolution, +// theta = x/f = 1.22*lambda/a, solving for x +x = 1.22*lambda/a*f; // Distance between centres of imgaes of the two stars + +printf("\nThe distance between centres of imgaes of the two stars = %4.2e m", x); + +// Result +// The distance between centres of imgaes of the two stars = 2.01e-04 m |