summaryrefslogtreecommitdiff
path: root/1172/CH3/EX3.7/Example3_7.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH3/EX3.7/Example3_7.sce
downloadScilab-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/Example3_7.sce')
-rwxr-xr-x1172/CH3/EX3.7/Example3_7.sce14
1 files changed, 14 insertions, 0 deletions
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.")
+