diff options
Diffstat (limited to '3876/CH9/EX9.1/Ex9_1.sce')
-rw-r--r-- | 3876/CH9/EX9.1/Ex9_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH9/EX9.1/Ex9_1.sce b/3876/CH9/EX9.1/Ex9_1.sce new file mode 100644 index 000000000..e2fb10cb8 --- /dev/null +++ b/3876/CH9/EX9.1/Ex9_1.sce @@ -0,0 +1,18 @@ +//Chapter 9 Ionic Equilibria and Buffer Action + +clc; +clear; + +//Initialisation of Variables +c= 0.1 //M +p= 1.34 //per cent +T= 25 //C + +//CALCULATIONS +C1= c*p/100 +C2= c*p/100 +C3= c-C1 +Ka= C1*C2/C3 + +//RESULTS +mprintf("Ionization constant = %.2e",Ka) |