blob: c1d46499925c2d68d6fce8101a8882f100b31b61 (
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
n= 1.31*10**-4 //mole
T= 25 //C
//CALCULATIONS
N= 2*n
Ksp= N**2*n
//RESULTS
mprintf("Ksp = %.1e",Ksp)
|