diff options
Diffstat (limited to '1694/CH2/EX2.2/EX2_2.sce')
-rw-r--r-- | 1694/CH2/EX2.2/EX2_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1694/CH2/EX2.2/EX2_2.sce b/1694/CH2/EX2.2/EX2_2.sce new file mode 100644 index 000000000..d96b3d17a --- /dev/null +++ b/1694/CH2/EX2.2/EX2_2.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+printf("\nEx2.2\n");
+//page no.-55
+//given
+h=6.625*10^-34;...........//planck's constant in J-s
+m=1.675*10^-27;.........//mass of neutron in Kg
+E=1.6*10^-5;.............//kinetic energy of neutron
+//we knoe , E=m*v^2/2
+
+v=sqrt((2*E)/m);..........//velocity in m/s
+//By debroglie relationship
+
+lambda=h/(m*v)...............//De-Broglie wavelength in m
+
+printf("\nDe-Broglie wavelength is 2.86*10^-15 m\n");
|