diff options
Diffstat (limited to '3755/CH6/EX6.18')
-rw-r--r-- | 3755/CH6/EX6.18/Ex6_18.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3755/CH6/EX6.18/Ex6_18.sce b/3755/CH6/EX6.18/Ex6_18.sce new file mode 100644 index 000000000..d3be5cdcc --- /dev/null +++ b/3755/CH6/EX6.18/Ex6_18.sce @@ -0,0 +1,14 @@ +clear
+//
+//
+//
+
+//Variable declaration
+h=6.6*10^-34; //planck's constant(J-sec)
+deltax=4*10^-10; //uncertainity in position of electron(m)
+
+//Calculations
+delta_px=h/deltax; //uncertainity in momentum(kg m/sec)
+
+//Result
+printf("\n uncertainity in momentum is %e kg m/sec",delta_px)
|