diff options
Diffstat (limited to '2465/CH8/EX8.6/Example_6.sce')
-rw-r--r-- | 2465/CH8/EX8.6/Example_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2465/CH8/EX8.6/Example_6.sce b/2465/CH8/EX8.6/Example_6.sce new file mode 100644 index 000000000..984f0c31f --- /dev/null +++ b/2465/CH8/EX8.6/Example_6.sce @@ -0,0 +1,17 @@ +//Chapter-8,Example 6,Page 196
+clc();
+close();
+
+pH= 7.4 //of blood
+
+H= 10^(-pH)
+
+//assume ratio of HCO3- and H2CO3 is r
+
+Ka= 4.5*10^-7
+
+// Ka = [H+]*[HCO3-]/[H2CO3]
+
+r=Ka/H
+
+printf('the ratio of HCO3- and H2CO3 is %.f',r)
|