summaryrefslogtreecommitdiff
path: root/858/CH2/EX2.4/example_4.sce
blob: c4a8d2f30f953077323b9fc87799db85f401e3dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clc
clear 
printf("example 2.4 page number 72\n\n")

//to find NaCl content in NaOH solution

w=2   //in gm
m=0.287  //in gm

//precipitate from 58.5gm of NaCl=143.4gm

mNaCl=58.5/143.4*m;

printf("mass of NaCl = %f gm\n",mNaCl )

percentage_NaCl=mNaCl/w*100;
printf("amount of NaCl = %f",percentage_NaCl)