summaryrefslogtreecommitdiff
path: root/3717/CH18/EX18.7/Ex18_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3717/CH18/EX18.7/Ex18_7.sce')
-rw-r--r--3717/CH18/EX18.7/Ex18_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3717/CH18/EX18.7/Ex18_7.sce b/3717/CH18/EX18.7/Ex18_7.sce
new file mode 100644
index 000000000..8a0572f22
--- /dev/null
+++ b/3717/CH18/EX18.7/Ex18_7.sce
@@ -0,0 +1,13 @@
+// Ex18_7 Page:359 (2014)
+clc;clear;
+m_AX = 11.011433; // Mass of parent nucleus, MeV
+m_AX_prime = 11.009305; // Mass of daughter nucleus, MeV
+m_e = 0.511; // Mass of an electron, MeV
+Q_min = 0;
+Q = (m_AX - m_AX_prime)*931.5 - 2*m_e; // Q value for the decay, MeV
+printf("\nThe maximum energy of the neutrino = %4.2f MeV", Q);
+printf("\nThe minimum energy of the neutrino = %d MeV", Q_min);
+
+// Result
+// The maximum energy of the neutrino = 0.96 MeV
+// The minimum energy of the neutrino = 0 MeV \ No newline at end of file