diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1847/CH2/EX2.70/Ch02Ex70.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1847/CH2/EX2.70/Ch02Ex70.sce')
-rwxr-xr-x | 1847/CH2/EX2.70/Ch02Ex70.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1847/CH2/EX2.70/Ch02Ex70.sce b/1847/CH2/EX2.70/Ch02Ex70.sce new file mode 100755 index 000000000..2ad10e75b --- /dev/null +++ b/1847/CH2/EX2.70/Ch02Ex70.sce @@ -0,0 +1,12 @@ +// Scilab Code Ex2.70:: Page-2.57(2009) +clc; clear; +N = 250; // Number of fringes crossing the field of view +delta_x = 0.0595e-01; // Displacement in movable mirror, cm +// As N*lambda/2 = delta_x, solving for lambda +lambda = 2*delta_x/N; // Wavelength of light used, cm + +printf("\nThe wavelength of monochromatic light used = %4.0f ansgtrom", lambda/1e-008); + +// Result +// The wavelength of monochromatic light used = 4760 ansgtrom +// Answer is given wrong in the textbook |