summaryrefslogtreecommitdiff
path: root/1427/CH24/EX24.8/24_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH24/EX24.8/24_8.sce')
-rw-r--r--1427/CH24/EX24.8/24_8.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH24/EX24.8/24_8.sce b/1427/CH24/EX24.8/24_8.sce
new file mode 100644
index 000000000..197b09ed7
--- /dev/null
+++ b/1427/CH24/EX24.8/24_8.sce
@@ -0,0 +1,9 @@
+//ques-24.8
+//Calculating moles of succinic acid extracted
+clc
+n=0.025*(100/1000);//moles of succinic acid
+K=0.3;//partition coefficient
+//x mole of it pass to 10mL of ether layer
+//K = ((n-x)/100)/(x/10)
+x=n/4;
+printf("Moles of succinic acid extracted by ether are %.6f.",x);