summaryrefslogtreecommitdiff
path: root/3875/CH10/EX10.31/10_31.sce
diff options
context:
space:
mode:
Diffstat (limited to '3875/CH10/EX10.31/10_31.sce')
-rw-r--r--3875/CH10/EX10.31/10_31.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3875/CH10/EX10.31/10_31.sce b/3875/CH10/EX10.31/10_31.sce
new file mode 100644
index 000000000..cfeff01cb
--- /dev/null
+++ b/3875/CH10/EX10.31/10_31.sce
@@ -0,0 +1,11 @@
+clc;
+clear;
+delta_x=5*10^-14 //diameter of nucleus in m
+h=6.63*10^-34 //plancks constant
+m=1.675*10^-27 //mass in kg
+
+//calculation
+p_min=h/(4*%pi*delta_x) //minimum momentum in kg-m/s
+E_min=((p_min)^2/(2*m))
+
+mprintf("The minimum kinetic energy of the nucleon is = %1.2e J or 0.33*10^-15 J",E_min)