summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.23/5_23.sce
blob: fa16b60c88afeedb21b532cc16fb955494e24e55 (plain)
1
2
3
4
5
6
7
//ques-5.23
//Calculating concentration of acetic acid solution
clc
a=0.02;//degree of ionization
Ka=1.8*10^-5;
c=(Ka*(1-a))/a^2;//concentration required
printf("The concentration of given actic acid solution is %.3f mol/L.",c);