diff options
Diffstat (limited to '1427/CH5/EX5.7/5_7.sce')
-rw-r--r-- | 1427/CH5/EX5.7/5_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH5/EX5.7/5_7.sce b/1427/CH5/EX5.7/5_7.sce new file mode 100644 index 000000000..5ebcf7779 --- /dev/null +++ b/1427/CH5/EX5.7/5_7.sce @@ -0,0 +1,10 @@ +//ques-5.7
+//Calculating concentration of acetate ion and degree of ionization
+clc
+m=3;//weight of acetic acid added (in g)
+Ka=0.000018;//for acetic acid
+N=m/60;//normality of acetic acid
+//Ka = x^2/N
+x=sqrt(N*Ka);//content of acetate ion
+deg=(x/N);//degree of ionization
+printf("The concentration of acetate ion is %.6f mol/L and degree of ionization is %.3f.",x,deg);
|