diff options
Diffstat (limited to '3535/CH5/EX5.2/Ex5_2.sce')
-rw-r--r-- | 3535/CH5/EX5.2/Ex5_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3535/CH5/EX5.2/Ex5_2.sce b/3535/CH5/EX5.2/Ex5_2.sce new file mode 100644 index 000000000..9648501f4 --- /dev/null +++ b/3535/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,12 @@ +//Chapter 5, Example 5.2, Page 117 +clc +clear +//Probablility of decay by positron emission +//3 decay modes +LBp = 0.009497 +LBm = 0.02129 +LEC = 0.02381 +L = LBp+LBm+LEC +P = LBp/L +printf("\n Probability of decay = %f ",P); +//Answer may vary due to round off error |