diff options
Diffstat (limited to '1427/CH5/EX5.23/5_23.sce')
-rw-r--r-- | 1427/CH5/EX5.23/5_23.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH5/EX5.23/5_23.sce b/1427/CH5/EX5.23/5_23.sce new file mode 100644 index 000000000..fa16b60c8 --- /dev/null +++ b/1427/CH5/EX5.23/5_23.sce @@ -0,0 +1,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);
|