summaryrefslogtreecommitdiff
path: root/3876/CH14/EX14.5
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH14/EX14.5')
-rw-r--r--3876/CH14/EX14.5/Ex14_5.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH14/EX14.5/Ex14_5.sce b/3876/CH14/EX14.5/Ex14_5.sce
new file mode 100644
index 000000000..48e08de47
--- /dev/null
+++ b/3876/CH14/EX14.5/Ex14_5.sce
@@ -0,0 +1,18 @@
+//Chapter 14 Determination of Hydroniumion Concentrations
+
+clc;
+clear;
+
+//Initialisation of Variables
+E= 0.034 //v
+E1= -0.280 //v
+E2= -0.699 //v
+E3= 0.0592
+
+//CALCULATIONS
+pH= (E1-E-E2)/E3
+pH1= (E-E2+E1)/E3
+
+//RESULTS
+mprintf("pH of the unkown solution= %.1f",pH)
+mprintf("\npH of the unkown solution= %.2f",pH1)