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.2/Ex4_2.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.2/Ex4_2.sce')
-rwxr-xr-x | 2939/CH4/EX4.2/Ex4_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2939/CH4/EX4.2/Ex4_2.sce b/2939/CH4/EX4.2/Ex4_2.sce new file mode 100755 index 000000000..6f713ff17 --- /dev/null +++ b/2939/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,13 @@ +
+// Ex4_2
+clc;
+
+// Given:
+t1=1.3*10^9;// in years
+w=0.0119;// wt %
+
+// Solution:
+N=(w*6.022*10^23)/(40*100);
+k=(0.693*60)/(t1*3.16*10^7);
+sa=N*k;// specific activity
+printf("The specific activity is = %f dis min^-1 g^-1",sa)
|