diff options
Diffstat (limited to '2939/CH4/EX4.35/Ex4_35.sce')
-rwxr-xr-x | 2939/CH4/EX4.35/Ex4_35.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2939/CH4/EX4.35/Ex4_35.sce b/2939/CH4/EX4.35/Ex4_35.sce new file mode 100755 index 000000000..2253c2706 --- /dev/null +++ b/2939/CH4/EX4.35/Ex4_35.sce @@ -0,0 +1,14 @@ +
+// Ex4_35
+clc;
+
+// Given:
+
+t1=2.7;// h
+t2=3.6;// h
+// Solution:
+k1=0.693/t1;
+k2=.693/t2;
+
+tmax=(log(k2/k1))/(k2-k1);
+printf("The time when daughter activity reaches maximum is %f and this is same when activities of both are equal.",tmax)
|