summaryrefslogtreecommitdiff
path: root/1427/CH24/EX24.7
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH24/EX24.7')
-rw-r--r--1427/CH24/EX24.7/24_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1427/CH24/EX24.7/24_7.sce b/1427/CH24/EX24.7/24_7.sce
new file mode 100644
index 000000000..2a4fde729
--- /dev/null
+++ b/1427/CH24/EX24.7/24_7.sce
@@ -0,0 +1,11 @@
+//ques-24.7
+//Calculating concentration of an ethereal solution
+clc
+//1st case
+C1=0.07/10;//concentration of water (in g/mL)
+C2=0.013/10;//concentration of ether (in g/mL)
+K=C1/C2;//partition coefficient
+//2nd case
+C1=0.024/10;//concentration of water (in g/mL)
+C2=C1/K;
+printf("The concentration of the ethereal solution is %.7f g/mL.",C2);