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

clc;
clear;

//Initialisation of Variables
kw= 10**-14
Ka= 1.8*10**-5

//CALCULATIONS
Kb= Ka
B= sqrt(kw/(Ka*Kb))

//RESULTS
mprintf("Degree of Hydrolysis = %.2e",B)