summaryrefslogtreecommitdiff
path: root/884/CH4/EX4.11/Example4_11.sce
blob: b9e06c48f009f2d627fd65bc73e3e834b76f0627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Acid Base Titrations

clear;
clc;

printf("\t Example 4.11\n");

MNaOH=0.610;//molarity of NaOH, M
VH2SO4=20;//volume of H2SO4, mL
MH2SO4=0.245;//molarity of H2SO4, M
nH2SO4=MH2SO4*VH2SO4/1000;//moles of H2SO4

VNaOH=2*nH2SO4/MNaOH;//Volume of NaOH, L

printf("\t the volume of NaOH solution is : %4.1f mL\n",VNaOH*1000);

//End