diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3845/CH29/EX29.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3845/CH29/EX29.8')
-rw-r--r-- | 3845/CH29/EX29.8/Ex29_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH29/EX29.8/Ex29_8.sce b/3845/CH29/EX29.8/Ex29_8.sce new file mode 100644 index 000000000..9e7a8b364 --- /dev/null +++ b/3845/CH29/EX29.8/Ex29_8.sce @@ -0,0 +1,12 @@ +//Example 29.8
+delta_x=0.01*10^-9;//Uncertainty in position (m)
+h=6.63*10^-34;//Planck's constant (J.s)
+delta_p=h/(4*%pi*delta_x);//Uncertainty in momentum (kg.m/s)
+m=9.11*10^-31;//Mass of an electron (kg)
+delta_v=delta_p/m;//Uncertainty in velocity (m/s)
+printf('a.Electron''s uncertainty in velocity = %0.2e m/s',delta_v)
+KE_e=(1/2)*m*delta_v^2;//Kinetic energy of electron (J)
+KE_e=KE_e*1/(1.60*10^-19);//Kinetic energy of electron(eV)
+printf('\nb.Kinetic energy of electron = %0.1f eV',KE_e)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|