summaryrefslogtreecommitdiff
path: root/2465/CH8/EX8.5
diff options
context:
space:
mode:
Diffstat (limited to '2465/CH8/EX8.5')
-rw-r--r--2465/CH8/EX8.5/Example_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2465/CH8/EX8.5/Example_5.sce b/2465/CH8/EX8.5/Example_5.sce
new file mode 100644
index 000000000..90551f959
--- /dev/null
+++ b/2465/CH8/EX8.5/Example_5.sce
@@ -0,0 +1,15 @@
+//Chapter-8,Example 5,Page 196
+clc();
+close();
+
+pKa=4.74
+
+salt=0.1
+
+acid=0.1
+
+//according to Henderson equation pH of buffer solution
+
+pH = pKa + log10(salt/acid)
+
+printf('the pH of buffer solution is pH = %.2f ',pH)