blob: f304c443795c3195637b018bd98c4b6e7054d096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Chapter 5: Chemical Kinetics and Catalysis
//Problem: 1
clc;
//Declaration of Variables
K = 3.5 * 10 ** - 2 // Rate constant
// Solution
mprintf("First order reaction = 0.693 / K\n")
t = 0.693 / K
mprintf(" Time taken for half the initial concentration to react:%.1f minutes", t)
|