blob: 6e0cefb21c09eeebc7b2177c84fb1b640be1a550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Chapter 9 Ionic Equilibria and Buffer Action
clc;
clear;
//Initialisation of Variables
K= 1.8*10**-5
V= 500 //ml
c1= 0.3 //M
c2= 0.2 //M
//CALCULATIONS
x= V*c1/1000
y= V*c2/1000
C= K*y/x
//RESULTS
mprintf("Hydronium-ion concentration = %.2e mole per litre",C)
|