summaryrefslogtreecommitdiff
path: root/3718/CH5/EX5.4
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH5/EX5.4')
-rw-r--r--3718/CH5/EX5.4/Ex5_4.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3718/CH5/EX5.4/Ex5_4.sce b/3718/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..019c82985
--- /dev/null
+++ b/3718/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,12 @@
+//Chapter 5: Chemical Kinetics and Catalysis
+//Problem: 4
+clc;
+
+//Declaration of Variables
+t = 60 //in min
+x = "0.5a"
+K = 5.2 * 10 ** - 3 //in per mol L per min
+
+// Solution
+a = 1 / (t * K)
+mprintf("Initial concentration = %.3f mol / L",a)