summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.4/16_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.4/16_4.sce')
-rw-r--r--1427/CH16/EX16.4/16_4.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH16/EX16.4/16_4.sce b/1427/CH16/EX16.4/16_4.sce
new file mode 100644
index 000000000..bde0ca8df
--- /dev/null
+++ b/1427/CH16/EX16.4/16_4.sce
@@ -0,0 +1,9 @@
+//ques-16.4
+//Determining rate law and order with respect to A and B
+clc
+//R=k*[A]^x*[B]^y
+//2R=k*[A]^x*[2*B]^y
+//8*R=k*[2*A]^x*[2*B]^y
+x=log10(4)/log10(2);
+y=log10(2)/log10(2);
+printf("Order with respect to A is %d and B is %d and rate law is k*[A]^2*[B].",x,y);