summaryrefslogtreecommitdiff
path: root/3850/CH46/EX46.5
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH46/EX46.5')
-rw-r--r--3850/CH46/EX46.5/Ex46_5.sce15
-rw-r--r--3850/CH46/EX46.5/Ex46_5.txt2
2 files changed, 17 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);
diff --git a/3850/CH46/EX46.5/Ex46_5.txt b/3850/CH46/EX46.5/Ex46_5.txt
new file mode 100644
index 000000000..41834a4f0
--- /dev/null
+++ b/3850/CH46/EX46.5/Ex46_5.txt
@@ -0,0 +1,2 @@
+
+ Fraction of Orignal Activity remaining after 40 hours = 0.25 \ No newline at end of file