summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.13/16_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.13/16_13.sce')
-rw-r--r--1427/CH16/EX16.13/16_13.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1427/CH16/EX16.13/16_13.sce b/1427/CH16/EX16.13/16_13.sce
new file mode 100644
index 000000000..ee9a02f8b
--- /dev/null
+++ b/1427/CH16/EX16.13/16_13.sce
@@ -0,0 +1,13 @@
+//ques-16.13
+//To show that the reaction is of first order
+clc
+a=24.09+10.74;//(in degrees)
+//t in min; r in degrees
+t2=6.18; r2=21.4;
+t3=18; r3=17.7;
+t4=27.05; r4=15;
+r=10.74;
+k2=(2.303/t2)*log10(a/(r2+r));
+k3=(2.303/t3)*log10(a/(r3+r));
+k4=(2.303/t4)*log10(a/(r4+r));
+printf("As values of k are nearly same, so reaction is of first order.");