blob: 47a2f1098b607caa00c6543caeaa3714d89526fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Section-14,Example-2,Page no.-PC.129
//To find the Molarity of given sulphuric acid solution.
clc;
N_T=0.1354 //(N)
V_T=42.20 //(ml)
V_S=50.00 //(ml)
//N_S=N_H_2SO_4(let) and M_S=M_H_2SO_4
N_S=(N_T*V_T)/V_S //(N)
M_S=(N_S/2) //(M)
disp(M_S,'Molarity of H_2SO_4')
|