diff options
Diffstat (limited to '273/CH15/EX15.6')
-rwxr-xr-x | 273/CH15/EX15.6/ex15_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/273/CH15/EX15.6/ex15_6.sce b/273/CH15/EX15.6/ex15_6.sce new file mode 100755 index 000000000..904dca25e --- /dev/null +++ b/273/CH15/EX15.6/ex15_6.sce @@ -0,0 +1,16 @@ +clc;clear;
+//Example 15.6
+//calculation of activity
+
+//given values
+t=28;//half life in years
+m=10^-3;//mass of sample
+M=90;//atomic mass of strontium
+NA=6.02*10^26;//avogadro's number
+
+
+//calculation
+n=m*NA/M;//no of nuclei in 1 mg sample
+k=.693/(t*365*24*60*60);//decay constant
+A=k*n;
+disp(A,'activity of sample(in disintegrations per second) is');
\ No newline at end of file |