summaryrefslogtreecommitdiff
path: root/615/CH2/EX2.10/2_10.sce
blob: 2acfad24cc9092486e5ce95ae91ad180fd77d77b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//acids and bases//
//example 2.10//
W=0.092;//weight of Formic acid per litre in grams//
M=46;//molecular weight of Formic acid//
N=W/M;
printf('The normality of Formic acid is %fg.equivalent/lit',N);
V=1/N;
K=2.4*10^-4;//Dissociation constant of Formic acid at 25C//
a=sqrt(K*V);//For weak acids//
printf('\nDegree of dissociation is %f',a);
H=a*N;
printf('\n The H+ concentration of the solution is %fg.ion/lit',H);