diff options
Diffstat (limited to '2465/CH8/EX8.8')
-rw-r--r-- | 2465/CH8/EX8.8/Ex8_8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2465/CH8/EX8.8/Ex8_8.sce b/2465/CH8/EX8.8/Ex8_8.sce new file mode 100644 index 000000000..7e43b504c --- /dev/null +++ b/2465/CH8/EX8.8/Ex8_8.sce @@ -0,0 +1,19 @@ +//Chapter-8,Example 8,Page 197
+clc();
+close();
+
+Ksp=8*10^-12 //solubility product of SrF2
+
+//Ksp= [Sr+2]*[F-]^2.....F=0.1 M
+
+F=0.1 //concentration of F in SrF2
+
+S=Ksp/F^2
+
+printf('the solubility of SrF2 is')
+
+disp(S)
+
+printf('mol/litre')
+
+//mistake in textbook
|