summaryrefslogtreecommitdiff
path: root/858/CH2/EX2.10/example_10.sce
blob: 89a458150b75280837cb29ecf91745d26a1d3d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clc
clear 
printf("example 2.10 page number 74\n\n")

//to find amount of KClO3 precipitated

solubility_70=30.2     //in gm/100gm
w_solute=solubility_70*350/130.2;     //in gm

w_water=350-w_solute;
solubility_30=10.1    //in gm/100gm
precipitate=(solubility_70-solubility_30)*w_water/100

printf("amount precipitated = %f gm",precipitate)