blob: 657c315e1a72598e9dc293631fb1d3eceb0e1eff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Redox Titrations
clear;
clc;
printf("\t Example 4.12\n");
MKMnO4=0.1327;//molarity of KMnO4, M
VKMnO4=16.42;//volume of KMnO4, mL
nKMnO4=MKMnO4*VKMnO4/1000;
nFeSO4=5*nKMnO4;
VFeSO4=25;//volume of FeSO4, mL
MFeSO4=nFeSO4/VFeSO4*1000;
printf("\t the molarity of FeSO4 solution is : %4.4f M\n",MFeSO4);
//End
|