diff options
Diffstat (limited to '3876/CH9/EX9.2/Ex9_2.sce')
-rw-r--r-- | 3876/CH9/EX9.2/Ex9_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3876/CH9/EX9.2/Ex9_2.sce b/3876/CH9/EX9.2/Ex9_2.sce new file mode 100644 index 000000000..66f93c345 --- /dev/null +++ b/3876/CH9/EX9.2/Ex9_2.sce @@ -0,0 +1,17 @@ +//Chapter 9 Ionic Equilibria and Buffer Action + +clc; +clear; + +//Initialisation of Variables +k= 1.8*10**-5 +C= 0.2 //M +T= 25 //C + +//CALCULATIONS +x= sqrt(C*k) +a= x/C +C1= a*C + +//RESULTS +mprintf("Hydronium-ion concentration = %.2e mole per litre",C1) |