summaryrefslogtreecommitdiff
path: root/2243/CH8/EX8.3
diff options
context:
space:
mode:
Diffstat (limited to '2243/CH8/EX8.3')
-rwxr-xr-x2243/CH8/EX8.3/Ex8_3.sce10
-rwxr-xr-x2243/CH8/EX8.3/Res8_3.txt1
2 files changed, 11 insertions, 0 deletions
diff --git a/2243/CH8/EX8.3/Ex8_3.sce b/2243/CH8/EX8.3/Ex8_3.sce
new file mode 100755
index 000000000..dfcb20c8f
--- /dev/null
+++ b/2243/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,10 @@
+clc();
+clear;
+//Given :
+mp = 1.007276470 ; // proton mass in u
+mn = 1.008665012; // neutron mass in u
+md = 2.013553215; // deuteron mass in u
+//E = ( mp + mn - md)*c^2
+// 1 u * c^2 = 931.5 MeV , where 1 u = 1.66*10^-27 kg and c = 3*10^8 m/s
+E = (mp + mn - md)*931.5; // Binding energy in MeV
+printf("Binding energy : %.3f MeV",E);
diff --git a/2243/CH8/EX8.3/Res8_3.txt b/2243/CH8/EX8.3/Res8_3.txt
new file mode 100755
index 000000000..81ffc17e4
--- /dev/null
+++ b/2243/CH8/EX8.3/Res8_3.txt
@@ -0,0 +1 @@
+ Binding energy : 2.225 MeV \ No newline at end of file