diff options
Diffstat (limited to '2939/CH4/EX4.5')
-rwxr-xr-x | 2939/CH4/EX4.5/Ex4_5.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2939/CH4/EX4.5/Ex4_5.sce b/2939/CH4/EX4.5/Ex4_5.sce new file mode 100755 index 000000000..88ef40aaf --- /dev/null +++ b/2939/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,17 @@ +
+// Ex4_5
+
+clc;
+
+// Given:
+t=5736;// in years
+Nk=16.1;// dis/min
+L=6.022*10^23;
+// Solution:
+k=(0.693*60)/(t*3.16*10^7);
+N1=Nk/k;// atoms per g for C14
+N2=L/12;//
+
+r=(N1*10^12)/N2;// ratio of C14/C12 in atmosphere
+
+printf("The ratio of C14/C12 in atmosphere in 10^-12 is = %f",r)
|