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.12 | |
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.12')
-rwxr-xr-x | 1172/CH3/EX3.12/3_12.txt | 5 | ||||
-rwxr-xr-x | 1172/CH3/EX3.12/Example3_12.sce | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH3/EX3.12/3_12.txt b/1172/CH3/EX3.12/3_12.txt new file mode 100755 index 000000000..9c058fa4f --- /dev/null +++ b/1172/CH3/EX3.12/3_12.txt @@ -0,0 +1,5 @@ +# Problem 12 #
+
+ Standard formula Used
+ delta_p * delta_x >= h /(2*pi)
+ Uncertainty in momentum is 5.272803e-21 Kg-m/s.
diff --git a/1172/CH3/EX3.12/Example3_12.sce b/1172/CH3/EX3.12/Example3_12.sce new file mode 100755 index 000000000..0fe6556db --- /dev/null +++ b/1172/CH3/EX3.12/Example3_12.sce @@ -0,0 +1,11 @@ +clc
+//Given that
+r = 1e-14 // radius of nucleus of atom in meter
+h = 6.626e-34 // Plank's constant
+//Sample Problem 12 page No. 140
+printf("\n\n\n # Problem 12 # \n")
+printf("\n Standard formula Used \n delta_p * delta_x >= h /(2*pi)")
+del_x = 2 * r //calculation of Uncertainty in position
+del_p = h / (2 * %pi * del_x) //calculation of Uncertainty in momentum
+printf ("\n Uncertainty in momentum is %e Kg-m/s. ", del_p )
+
|