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 --- 1172/CH3/EX3.7/Example3_7.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1172/CH3/EX3.7/Example3_7.sce (limited to '1172/CH3/EX3.7/Example3_7.sce') diff --git a/1172/CH3/EX3.7/Example3_7.sce b/1172/CH3/EX3.7/Example3_7.sce new file mode 100755 index 000000000..ec6a7c53a --- /dev/null +++ b/1172/CH3/EX3.7/Example3_7.sce @@ -0,0 +1,14 @@ +clc +//Given that +angle = %pi/2 // scattering angle of photon +h = 6.624e-34 // plank's constant +v = 2e6 // speed of particle +e = 1.6e-19 // charge on electron +m = 1e-3 // mass of particle in kg +//Sample Problem 7 Page No. 137 +printf("\n\n\n # Problem 7 # \n") +printf("\n Standard formula Used \n lambda = h / (m * v)") +lambda = h / (m * v) //calculation of de Broglie wavelength of particle +printf("\n de Broglie wavelength of particle is %e m.", lambda) +printf("\n Here the de Broglie wavelength is too small to be detected. This wavelength is far smaller than the wavelength of X ray.\n Hence diffraction experiment with such a stream of particle will not be successful.") + -- cgit