blob: a7a1d537e3868c570d9667ee5173290e93ad29d0 (
plain)
1
2
3
4
5
6
7
|
//Chapter 5: Chemical Kinetics and Catalysis
//Problem: 5
clc;
// Solution
t = ((2.303 * log10(100 / (100 - 99.9))) / (2.303 * log10(100 / (100 - 50))))
mprintf("99.9 percent / 50 percent =%.1f",t)
|