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 /1271/CH15/EX15.6 | |
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 '1271/CH15/EX15.6')
-rwxr-xr-x | 1271/CH15/EX15.6/6.txt | 5 | ||||
-rwxr-xr-x | 1271/CH15/EX15.6/example15_6.sce | 14 |
2 files changed, 19 insertions, 0 deletions
diff --git a/1271/CH15/EX15.6/6.txt b/1271/CH15/EX15.6/6.txt new file mode 100755 index 000000000..7eff582a9 --- /dev/null +++ b/1271/CH15/EX15.6/6.txt @@ -0,0 +1,5 @@ + # PROBLEM 6 #
+Standard formula used
+ del_x*del_p = h/(4*pi)
+
+ Uncertainty in position is 1.951122 micrometre.
diff --git a/1271/CH15/EX15.6/example15_6.sce b/1271/CH15/EX15.6/example15_6.sce new file mode 100755 index 000000000..a4b285edf --- /dev/null +++ b/1271/CH15/EX15.6/example15_6.sce @@ -0,0 +1,14 @@ +clc +// Given that +M = 5.4e-26 // momentum of electron in kg-m/sec +p = 0.05 // percentage accuracy in momentum +e = 1.6e-19 // charge on an electron in C +m = 9.1e-31 // mass of electron in kg +h = 6.62e-34 // Planck constant in J-sec +// Sample Problem 6 on page no. 15.26 +printf("\n # PROBLEM 6 # \n") +printf("Standard formula used \n") +printf(" del_x*del_p = h/(4*pi) \n") +delta_m = p * M / 100 +delta_x = h / (4 * %pi * delta_m) +printf("\n Uncertainty in position is %f micrometre.",delta_x * 10^6) |