diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH23/EX14.23.26/Ex14_23_26.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3428/CH23/EX14.23.26/Ex14_23_26.sce')
-rw-r--r-- | 3428/CH23/EX14.23.26/Ex14_23_26.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3428/CH23/EX14.23.26/Ex14_23_26.sce b/3428/CH23/EX14.23.26/Ex14_23_26.sce new file mode 100644 index 000000000..bd8cf4310 --- /dev/null +++ b/3428/CH23/EX14.23.26/Ex14_23_26.sce @@ -0,0 +1,9 @@ +//Section-14,Example-1,Page no.-PC.125
+//To determine the pH of the given solution.
+clc;
+K_a=1.75*10^-5
+pK_a=-log10(K_a)
+[CH_3COOH]=(1000/(60*100))
+[CH_3COONa]=((1.5*1000)/(82*100))
+pH=(pK_a+ (log10([CH_3COONa]/[CH_3COOH])))
+disp(pH,'pH of the given solution')
|