summaryrefslogtreecommitdiff
path: root/3718/CH1/EX1.13/Ex1_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH1/EX1.13/Ex1_13.sce')
-rw-r--r--3718/CH1/EX1.13/Ex1_13.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3718/CH1/EX1.13/Ex1_13.sce b/3718/CH1/EX1.13/Ex1_13.sce
new file mode 100644
index 000000000..ebd1ebc3c
--- /dev/null
+++ b/3718/CH1/EX1.13/Ex1_13.sce
@@ -0,0 +1,16 @@
+//Chapter 1: Structure and Bonding
+//Problem: 13
+clc;
+
+//Declaration of Constant
+h = 6.626 * 10 ** -34 // Plank's constant, J.sec
+pi = 3.141 // Pi
+
+// Variables
+m = 0.1 // Mass of base ball, kg
+delta_x = 10 ** -10 // Uncertainty in position, m
+
+// Solution
+delta_v = h / (4 * pi * m * delta_x)
+
+mprintf("Uncertainty in velocity >= %.2e m/s",delta_v)