summaryrefslogtreecommitdiff
path: root/3718/CH5/EX5.7/Ex5_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH5/EX5.7/Ex5_7.sce')
-rw-r--r--3718/CH5/EX5.7/Ex5_7.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3718/CH5/EX5.7/Ex5_7.sce b/3718/CH5/EX5.7/Ex5_7.sce
new file mode 100644
index 000000000..8c910d166
--- /dev/null
+++ b/3718/CH5/EX5.7/Ex5_7.sce
@@ -0,0 +1,12 @@
+//Chapter 5: Chemical Kinetics and Catalysis
+//Problem: 7
+clc;
+
+//Declaration of Variables
+t05 = 30 //in minutes
+a = 0.1 //in M
+
+// Solution
+mprintf("For second order reaction,\n t0.5 = 1 / Ka\n")
+K = 1 / (a * t05)
+mprintf(" The rate constant is %.3f mol per lit per min",K)