diff options
Diffstat (limited to '3850/CH46/EX46.5/Ex46_5.sce')
-rw-r--r-- | 3850/CH46/EX46.5/Ex46_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3850/CH46/EX46.5/Ex46_5.sce b/3850/CH46/EX46.5/Ex46_5.sce new file mode 100644 index 000000000..03da3dddb --- /dev/null +++ b/3850/CH46/EX46.5/Ex46_5.sce @@ -0,0 +1,15 @@ + +//To Calculate the fraction of Orignal Activity remaining after 40 hours
+//Example 46.5
+
+clear;
+
+clc;
+
+t=40;//Duration of Radioactive Decay in hours
+
+thalf=20;//Half Life of Radioactive Nuclide in hours
+
+Ar=1/2^(t/thalf);//Fraction of Orignal Activity remaining after 40 hours
+
+printf("Fraction of Orignal Activity remaining after 40 hours = %.2f",Ar);
|