summaryrefslogtreecommitdiff
path: root/3428/CH23/EX14.23.11
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /3428/CH23/EX14.23.11
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '3428/CH23/EX14.23.11')
-rw-r--r--3428/CH23/EX14.23.11/Ex14_23_11.sce13
1 files changed, 7 insertions, 6 deletions
diff --git a/3428/CH23/EX14.23.11/Ex14_23_11.sce b/3428/CH23/EX14.23.11/Ex14_23_11.sce
index 8d68f0791..a6f0210aa 100644
--- a/3428/CH23/EX14.23.11/Ex14_23_11.sce
+++ b/3428/CH23/EX14.23.11/Ex14_23_11.sce
@@ -1,7 +1,8 @@
//Section-14,Example-6,Page no.-PC.84
-//To find the concentration of Ag2+ for the given conditions.
-clc;
-K_spAgI=1.5*10^-16
-K_spAgCl=1.56*10^-10 //C=[I-]/[Cl-]
-C=(K_spAgI)/(K_spAgCl)
-disp(C,'Required concentration of AgCl')
+//To find the concentration of Ag+ ions at which I- and Cl- ions will precipitate.
+clc,
+Ksp_AgI=1.5*10^-16
+Ksp_AgCl=1.56*10^-10
+C=Ksp_AgI/Ksp_AgCl
+disp(C,'concentration of Ag+ ions at which I- and Cl- ions will precipitate')
+//Answer in the book is 9.6*10^-7 approximately equal to 0.0000010.