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 /615/CH2/EX2.23 | |
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 '615/CH2/EX2.23')
-rwxr-xr-x | 615/CH2/EX2.23/2_23.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/615/CH2/EX2.23/2_23.sce b/615/CH2/EX2.23/2_23.sce new file mode 100755 index 000000000..be9254ba8 --- /dev/null +++ b/615/CH2/EX2.23/2_23.sce @@ -0,0 +1,9 @@ +//acids and bases//
+//example 2.23//
+OH=0.0025;//OH- concentration//
+K=1*10^-14//water ionization constant//
+H=K/OH;
+H=H/10^-12;
+printf("The concentration of H+ ions is %f*10^-12M",H);
+printf("\nThe concentration of OH- ions is %fM",OH);
+printf("\nAs concentration of H+ is lesser than the concentration of OH- the cleaning solution will be basic in nature");
\ No newline at end of file |