diff options
Diffstat (limited to '1439/CH15/EX15.1')
-rwxr-xr-x | 1439/CH15/EX15.1/15_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1439/CH15/EX15.1/15_1.sce b/1439/CH15/EX15.1/15_1.sce new file mode 100755 index 000000000..34f301690 --- /dev/null +++ b/1439/CH15/EX15.1/15_1.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+c= 8*10^-5 //molar
+n= 2
+//CALCULATIONS
+Ksp= c^3*n^2
+x= Ksp*10^6
+//RESULTS
+printf ('solubility product = %.1e ',Ksp)
+printf ('\n solubility = %.1e ',x)
|