diff options
Diffstat (limited to '3718/CH1/EX1.7/Ex1_7.sce')
-rw-r--r-- | 3718/CH1/EX1.7/Ex1_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3718/CH1/EX1.7/Ex1_7.sce b/3718/CH1/EX1.7/Ex1_7.sce new file mode 100644 index 000000000..9de3521e4 --- /dev/null +++ b/3718/CH1/EX1.7/Ex1_7.sce @@ -0,0 +1,16 @@ +//Chapter 1: Structure and Bonding
+//Problem: 7
+clc;
+
+//Declaration of Constants
+m = 9.1 * 10 ** -31 // Mass of electron, kg
+h = 6.626 * 10 ** -34 // Plank's constant, J.sec
+pi = 3.141 // Pi
+
+// Variable
+delta_x = 1 * 10 ** -10 // Uncertainty in Velocity, m
+
+// Solution
+delta_v = h / (4 * pi * m * delta_x)
+
+mprintf( "Uncertainty in position of electron >= :%.1e m/s",delta_v)
|