diff options
Diffstat (limited to '3876/CH9/EX9.10/Ex9_10.sce')
-rw-r--r-- | 3876/CH9/EX9.10/Ex9_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3876/CH9/EX9.10/Ex9_10.sce b/3876/CH9/EX9.10/Ex9_10.sce new file mode 100644 index 000000000..205bf5839 --- /dev/null +++ b/3876/CH9/EX9.10/Ex9_10.sce @@ -0,0 +1,15 @@ +//Chapter 9 Ionic Equilibria and Buffer Action + +clc; +clear; + +//Initialisation of Variables +c= 0.1 //M +Kb= 1.8*10**-5 +Kw= 10**-14 + +//CALCULATIONS +C= sqrt(c*Kw/Kb) + +//RESULTS +mprintf("Concentration of hydronium ion = %.2e mol per litre",C) |