summaryrefslogtreecommitdiff
path: root/2465/CH9/EX9.9/Example_9.sce
blob: b0181a82283f2b6cfa1b0625864acc3a0b9515c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Chapter-9,Example 9,Page 221
clc();
close();

strength =0.05   //strength of CH3COOH

Ka=1.8*10^-5

//              CH3COOH <---> CH3COO- +  H+
//intially  =     0.05          0        0
//dissolution                   a 
//at equilibrium= 0.05(1-a)   0.05*a   0.05*a
//Ka =(0.05*a*0.05*a)/(0.05(1-a))
//Ka=0.05*a^2      a=negligible   1-a=1

a=sqrt(Ka/strength)

printf('the degree of dissolution is %.4f ',a)