summaryrefslogtreecommitdiff
path: root/3876/CH9/EX9.11/Ex9_11.sce
blob: be2d7804b31001695346b7356f0367a85be62149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chapter 9 Ionic Equilibria and Buffer Action

clc;
clear;

//Initialisation of Variables
c= 0.050 //M
Kb= 1.8*10**-5
T= 25 //C
Kw= 10**-14

//CALCULATIONS
C= sqrt(Kw*c/Kb)

//RESULTS
mprintf("Concentration of hydronium ion = %.2e mol per litre",C)