diff options
Diffstat (limited to '2465/CH8/EX8.4/Example_4.sce')
-rw-r--r-- | 2465/CH8/EX8.4/Example_4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2465/CH8/EX8.4/Example_4.sce b/2465/CH8/EX8.4/Example_4.sce new file mode 100644 index 000000000..a9d10cf1d --- /dev/null +++ b/2465/CH8/EX8.4/Example_4.sce @@ -0,0 +1,24 @@ +//Chapter-8,Example 4,Page 196
+clc();
+close();
+
+alpha1=0.02
+
+Ka=1.8*10^-5
+
+//at equilibrium..
+//[CH3COOH] = C1* (1-alpha1)
+//[H+] = C1* alpha1
+//[CH3COO-] = C1* alpha1
+// Ka =[H+] * [CH3COO-]/[CH3COOH]
+// Ka = C1* alpha1*C1* alpha1/(C1 (1-alpha1))
+
+C1=Ka*(1-alpha1)/alpha1^2
+
+printf('the molar concentration of CH3COOH is C = %.4f molar',C1)
+
+C2=0.01
+
+alpha2= sqrt(Ka/C2)
+
+printf('\n alpha = %.4f ',alpha2)
|