blob: 6c8cbba0914d7653dea0930691c81bc77e14da3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 23
clc;
//Declaration of Variables
Ti = 25 // C
S = 0.00179 // g / L
// Solution
S =S / 170 // mol / L
Ksp = S ** 2
mprintf("Solubility product at 25 C is %.4e mol square L square",Ksp)
|