summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.24/5_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH5/EX5.24/5_24.sce')
-rw-r--r--1427/CH5/EX5.24/5_24.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH5/EX5.24/5_24.sce b/1427/CH5/EX5.24/5_24.sce
new file mode 100644
index 000000000..0796edd58
--- /dev/null
+++ b/1427/CH5/EX5.24/5_24.sce
@@ -0,0 +1,8 @@
+//ques-5.24
+//Calculating percentage ionization of acetic acid
+clc
+Ka=1.74*10^-5;
+M=0.1;//molarity of acetic acid
+x=sqrt(Ka*M);//content of acetate ion
+a=(x/M)*100;//percentage ionization
+printf("Percentage ionization of acetic acid is %.1f.",a);