summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.15/5_15.sce
blob: 7e6cc5bcda6311bc04650074c3e63377b8e8c2f0 (plain)
1
2
3
4
5
6
7
//ques-5.15
//Calculating solubility product of AgCl
clc
S=0.00179;//solubility of AgCl (in g/L)
S=(S/170)*100000;//solubility (in mol/L x10^-5)
K=S^2;//solubility product (x10^-10)
printf("The solubility product of given AgCl is %.4f x 10^-10 mol^2/L^2.",K);