summaryrefslogtreecommitdiff
path: root/2939/CH4/EX4.28/Ex4_28.sce
diff options
context:
space:
mode:
Diffstat (limited to '2939/CH4/EX4.28/Ex4_28.sce')
-rwxr-xr-x2939/CH4/EX4.28/Ex4_28.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2939/CH4/EX4.28/Ex4_28.sce b/2939/CH4/EX4.28/Ex4_28.sce
new file mode 100755
index 000000000..461bab776
--- /dev/null
+++ b/2939/CH4/EX4.28/Ex4_28.sce
@@ -0,0 +1,15 @@
+
+// Ex4_28
+clc;
+
+// Given:
+t=14.3;// half life in days
+// Solution:
+k=0.693/(t*24*3600);
+N=(3.7*10^10)/(k);// No. of atoms in 1 Ci
+N1=N*(1-(exp(-0.693/14.3)));// atoms of S32 produced
+mass=(N1*32)/(6.022*10^23);
+
+m1=mass*10^6;// in micro grams
+printf("The mass in micro-grams is %f.",m1)
+