summaryrefslogtreecommitdiff
path: root/3856/CH11/EX11.4/Ex11_4.sce
blob: 2ac54d7b1b7acdcfaf9f4a02db7f77d82c6aafff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Calculate the pH of of a buffer solution what is pH of the buffer solution after the addition of HCl

//Example 11.4

clc;

clear;

C1=0.40; //Concentration of Acetic acid in M

C2=0.55; //Concentration of Sodium Acetate in M

pH1=4.76+log10(C2/C1); //pH of the Buffer solution before addition of HCl

printf("pH of the Buffer solution = %.2f",pH1);

C3=0.10; //Concentration of HCl in M

pH=4.76+log10((C2-C3)/(C1+C3)); // pH of the Buffer solution after addition of HCl

printf("\n pH of the Buffer solution after addition of HCl = %.2f",pH);