diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2939/CH4/EX4.23/Ex4_23.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2939/CH4/EX4.23/Ex4_23.sce')
-rwxr-xr-x | 2939/CH4/EX4.23/Ex4_23.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2939/CH4/EX4.23/Ex4_23.sce b/2939/CH4/EX4.23/Ex4_23.sce new file mode 100755 index 000000000..9bbbf28b8 --- /dev/null +++ b/2939/CH4/EX4.23/Ex4_23.sce @@ -0,0 +1,23 @@ +
+//Ex4_23
+clc;
+
+// Given:
+
+t=1.83*10^9;// in years
+// Solution:
+// Part (a)
+k=(0.693)/(t*3.16*10^7);
+k1=(0.693*10^17)/(t*3.16*10^7);// in 10^-17 s^-1
+printf("\n The overall decay constant will be %f*10^-17 s^-1",k1)
+// Part (b)
+a=(6.022*10^23)/40; // atoms of K(40)
+A=a*k;// activity
+printf("\n The activity for k(40) is %f beta/s",A)
+
+// Part (c)
+a1=(6.022*10^23*1.2*10^-4)/41; // atoms of K(41)
+A1=a1*k;// activity
+printf("\n The activity for k(41) is %f beta/s",A1)
+
+
|