blob: 04c757c809012f89ea509ec87372af7bd84a62bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 5: Chemical Kinetics and Catalysis
//Problem: 2
clc;
//Declaration of Variables
t = 40 //in minutes
// Solution
mprintf("Rate constant = 0.693 / t\n")
K = 0.693 / t
mprintf(" Rate constant = %.4f / min",K)
|