diff options
Diffstat (limited to '3850/CH46/EX46.4/Ex46_4.sce')
-rw-r--r-- | 3850/CH46/EX46.4/Ex46_4.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3850/CH46/EX46.4/Ex46_4.sce b/3850/CH46/EX46.4/Ex46_4.sce new file mode 100644 index 000000000..673ca58df --- /dev/null +++ b/3850/CH46/EX46.4/Ex46_4.sce @@ -0,0 +1,21 @@ + +//To calculate the Activity of Copper
+//Example 46.4
+
+clear;
+
+clc;
+
+Na=6*10^23;//Avagadro's Number
+
+m=1*10^-6;//Mass of the Copper Sample in grams
+
+M=63.5;//Atomic Weight of Copper
+
+N=Na*m/M;//Number of Atoms in i microgram of Copper
+
+l=1.516*10^-5;//Decay Constant for Copper
+
+Act=l*N;//Activity of the Copper Sample in disintegrations/s
+
+printf("Activity of 1 microgram of Copper Sample = %.3f Ci",Act/(3.7*10^10));//1Ci = 3.7*10^10 disintegrations/s
|