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 --- 1949/CH1/EX1.16/1_16.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 1949/CH1/EX1.16/1_16.sce (limited to '1949/CH1/EX1.16') diff --git a/1949/CH1/EX1.16/1_16.sce b/1949/CH1/EX1.16/1_16.sce new file mode 100755 index 000000000..5643f393e --- /dev/null +++ b/1949/CH1/EX1.16/1_16.sce @@ -0,0 +1,26 @@ +//Chapter-1,Example 1_16,Page 1-42 +clc() + +//Given Data: +lam=6*10^-7 //wavelength of light +k=0.125*10^-4 //k=D(n+1)^2-Dn^2. +u=1 //Refractive index of medium between lens and plate +//Calculations: + +//i) +lam1=4.5*10^-7 //new wavelength of light +//Difference between squres of diameters of successive rings is directly proportional to wavelength.So, +k1=lam1/lam*k //new Difference between squres of diameters of successive rings after changing wavelength +printf('New Difference between squres of diameters of successive rings after changing wavelength is =%.8f m^2 \n',k1) + +//ii) +u2=1.33 //Refractive index of liquid introduced between lens and plate +//Difference between squres of diameters of successive rings is inversely proportional to Refractive index.so, +k2=u/u2*k //new Difference between squres of diameters of successive rings after changing refractive index +printf(' New Difference between squres of diameters of successive rings after changing refrective index is =%.8f m^2 \n',k2) + +//iii) +//Difference between squres of diameters of successive rings is directly proportional to Radius of curvature.So, +//after doubling radius of curvature, +k3=2*k //new Difference between squres of diameters of successive rings after doubling radius of curvature +printf(' New Difference between squres of diameters of successive rings after doubling radius of curvature is =%.8f m^2 \n',k3) -- cgit