blob: 7d1397138e41bb8e431fba569a38cb2e7fcf51e4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 22
clc;
//Declaration of Variables
solubility = 7.5 * 10 ** - 5 // mol per L
// Solution
Ksp = 4 * (solubility ** 3)
mprintf("Solubility product of the salt is %.3e mol cube L cube",Ksp)
|