summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.5/16_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.5/16_5.sce')
-rw-r--r--1427/CH16/EX16.5/16_5.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH16/EX16.5/16_5.sce b/1427/CH16/EX16.5/16_5.sce
new file mode 100644
index 000000000..48300f050
--- /dev/null
+++ b/1427/CH16/EX16.5/16_5.sce
@@ -0,0 +1,10 @@
+//ques-16.5
+//To show a relation at two different times
+clc
+//1st order reaction
+t1=0.693/k;//time for half reaction
+a=1;
+x=0.999;
+t2=(2.303/k)*log10(a/(a-x));//time for 99.9% of reaction
+z=t2/t1;
+printf("Time required for 99.9 percent of reaction to take place is about %.0f times that is required for half the reaction.",z);