summaryrefslogtreecommitdiff
path: root/1427/CH24/EX24.12/24_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH24/EX24.12/24_12.sce')
-rw-r--r--1427/CH24/EX24.12/24_12.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH24/EX24.12/24_12.sce b/1427/CH24/EX24.12/24_12.sce
new file mode 100644
index 000000000..6d05e4d05
--- /dev/null
+++ b/1427/CH24/EX24.12/24_12.sce
@@ -0,0 +1,10 @@
+//ques-24.12
+//Calculating quantity of iodine left behind in the aqueous layer
+clc
+xo=4;//initial amount of iodine (in mg)
+v=50;//volume of solution (in mL)
+V=10;//volume of Carbon tetrachloride (in mL)
+K=85;//partition coefficient
+n=1;//1st extraction
+x1=xo*(v/(v+K*V))^n;
+printf("The amount of iodine left in aqueous layer is %.3f mg.",x1);