blob: 8c910d16630d3b2878ce1fa94bd4af733578a0c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
|