summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.22/16_22.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.22/16_22.sce')
-rw-r--r--1427/CH16/EX16.22/16_22.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH16/EX16.22/16_22.sce b/1427/CH16/EX16.22/16_22.sce
new file mode 100644
index 000000000..64eecd046
--- /dev/null
+++ b/1427/CH16/EX16.22/16_22.sce
@@ -0,0 +1,8 @@
+//ques-16.22
+//Determining order of the reaction
+clc
+r1=0.76; r2=1.07;//rate of reaction (in torr/s)
+x1=5; x2=20;//percentage of decomposition
+a1=1-(x1/100); a2=1-(x2/100);
+n=log10(r2/r1)/log10(a1/a2);//order
+printf("The order of the reaction is %.0f.",n);