blob: 8d68f07919b8b4c5e162fbf17d2a21d9956462f3 (
plain)
1
2
3
4
5
6
7
|
//Section-14,Example-6,Page no.-PC.84
//To find the concentration of Ag2+ for the given conditions.
clc;
K_spAgI=1.5*10^-16
K_spAgCl=1.56*10^-10 //C=[I-]/[Cl-]
C=(K_spAgI)/(K_spAgCl)
disp(C,'Required concentration of AgCl')
|