summaryrefslogtreecommitdiff
path: root/3876/CH9/EX9.9/Ex9_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH9/EX9.9/Ex9_9.sce')
-rw-r--r--3876/CH9/EX9.9/Ex9_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3876/CH9/EX9.9/Ex9_9.sce b/3876/CH9/EX9.9/Ex9_9.sce
new file mode 100644
index 000000000..672cc1bad
--- /dev/null
+++ b/3876/CH9/EX9.9/Ex9_9.sce
@@ -0,0 +1,19 @@
+//Chapter 9 Ionic Equilibria and Buffer Action
+
+clc;
+clear;
+
+//Initialisation of Variables
+c= 0.010 //M
+Ksp= 1.56*10**-10
+M= 108 //gms
+C= 10**-3 //M
+
+//CALCULATIONS
+K= Ksp/C
+m= M*K
+m1= M*c
+
+//RESULTS
+mprintf("Quantity = %.2e gms",m)
+mprintf("\nQuantity = %.2e gms",m1)