diff options
Diffstat (limited to '3535/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3535/CH4/EX4.1/Ex4_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3535/CH4/EX4.1/Ex4_1.sce b/3535/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..069bd8e25 --- /dev/null +++ b/3535/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,12 @@ +//Chapter 4, Example 4.1, Page 86 +clc +clear +//Binding energy +mn = 1.0078250 +mp = 1.0086649 +M = 4.0026032 // mass of He +MD = 2*mn+2*mp-M //Mass defect +BE = MD*931.5 +printf("\n Mass defect = %f u",MD); +printf("\n Nuclear binding energy = %f MeV",BE); // answer provided in the textbook is wrong +//Answer may vary due to round off error |