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 /1172/CH3/EX3.7 | |
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 '1172/CH3/EX3.7')
-rwxr-xr-x | 1172/CH3/EX3.7/3_7.txt | 7 | ||||
-rwxr-xr-x | 1172/CH3/EX3.7/Example3_7.sce | 14 |
2 files changed, 21 insertions, 0 deletions
diff --git a/1172/CH3/EX3.7/3_7.txt b/1172/CH3/EX3.7/3_7.txt new file mode 100755 index 000000000..345639212 --- /dev/null +++ b/1172/CH3/EX3.7/3_7.txt @@ -0,0 +1,7 @@ + # Problem 7 #
+
+ Standard formula Used
+ lambda = h / (m * v)
+ de Broglie wavelength of particle is 3.312000e-37 m.
+ Here the de Broglie wavelength is too small to be detected. This wavelength is far smaller than the wavelength of X ray.
+ Hence diffraction experiment with such a stream of particle will not be successful.
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.")
+
|