diff options
Diffstat (limited to '1427/CH24/EX24.11')
-rw-r--r-- | 1427/CH24/EX24.11/24_11.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH24/EX24.11/24_11.sce b/1427/CH24/EX24.11/24_11.sce new file mode 100644 index 000000000..8685c93d1 --- /dev/null +++ b/1427/CH24/EX24.11/24_11.sce @@ -0,0 +1,8 @@ +//ques-24.11
+//Calculating degree of dissociation of acid
+clc
+C1=0.72/500;//concentration of acid in ether layer (in g/mL)
+C2=6/500;//concentration of acid in aqueous layer (in g/mL)
+K=0.16;//partition coefficient
+deg=1-C1/(C2*K);
+printf("The degree of dissociation of acid is %.2f.",deg);
|