summaryrefslogtreecommitdiff
path: root/2939/CH4/EX4.7/Ex4_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2939/CH4/EX4.7/Ex4_7.sce')
-rwxr-xr-x2939/CH4/EX4.7/Ex4_7.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2939/CH4/EX4.7/Ex4_7.sce b/2939/CH4/EX4.7/Ex4_7.sce
new file mode 100755
index 000000000..ec33900fb
--- /dev/null
+++ b/2939/CH4/EX4.7/Ex4_7.sce
@@ -0,0 +1,19 @@
+
+//Ex4_7
+clc;
+
+// Given:
+dA = 206-238;
+dA_Beta=0;
+dA_Alpha = -4;
+
+dZ_Alpha = -2;
+dZ_Beta = 1;
+nBeta=0; //random initialisation
+dZ = 82 -92;
+// Solution:
+nAlpha = (dA- (dA_Beta* nBeta))/dA_Alpha;
+
+nBeta = (dZ- (dZ_Alpha * nAlpha))/dZ_Beta;
+
+printf("Number of alpha decays =%f and number of beta decays = %f",nAlpha,nBeta);