diff options
Diffstat (limited to '3020/CH14/EX14.11')
-rwxr-xr-x | 3020/CH14/EX14.11/ex14_11.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3020/CH14/EX14.11/ex14_11.sce b/3020/CH14/EX14.11/ex14_11.sce new file mode 100755 index 000000000..7061d7189 --- /dev/null +++ b/3020/CH14/EX14.11/ex14_11.sce @@ -0,0 +1,9 @@ +clc;
+clear all;
+deltax = 1e-9; // Electron in position in meters
+m = 9.1e-31; // Mass of th electron in Kg
+h = 6.6e-34; // Planck's Constant
+deltap = h/deltax;
+deltav = deltap/m;
+disp('m/s',deltav,'The minimum uncertainity in velocity is')
+// Slight variation in answer as compared to textbook
|