Partition Coefficient Formula
Last Updated :
19 Dec, 2023
Partition coefficient is defined as a chemical's concentration ratio between two mediums at equilibrium. In another way, a partition coefficient is the ratio of a substance's concentration in one medium or phase to its concentration in a second medium or phase when the two concentrations are at equilibrium. Gases such as air, liquids such as water or olive oil, or complex mixes such as blood or other tissues can be used as media. However, in general, the partition coefficients of an uncharged solute in two separate two-phase systems with similar are uneven.
Formula
The formula for partition coefficient equals the ratio of solute's concentration when it is stationary to the solute's concentration when it shows mobility. It is directly proportional to the amount of stable solute but inversely proportional to the moving solute. It is denoted by the symbol Kd and is a unitless quantity as it is the ratio of two same quantities.
Kd = Cs/Cm
where,
Kd is the partition coefficient,
Cs is the concentration of solute in stationary mode,
Cm is the concentration of solute in mobility mode,
Sample Problems
Problem 1. Calculate the partition coefficient if the concentration of solute in the stationary phase is 9 M and 5 M in the mobile phase.
Solution:
We have,
Cs = 9
Cm = 5
Using the formula we get,
Kd = Cs/Cm
= 9/5
= 1.8
Problem 2. Calculate the partition coefficient if the concentration of solute in the stationary phase is 12 M and 8 M in the mobile phase.
Solution:
We have,
Cs = 12
Cm = 8
Using the formula we get,
Kd = Cs/Cm
= 12/8
= 1.5
Problem 3. Calculate the partition coefficient if the concentration of solute in the stationary phase is 20 M and 17 M in the mobile phase.
Solution:
We have,
Cs = 20
Cm = 17
Using the formula we get,
Kd = Cs/Cm
= 20/17
= 1.17
Problem 4. Calculate the concentration of solute in the stationary phase if the partition coefficient is 2.5 and the concentration in the mobile phase is 10 M.
Solution:
We have,
Kd = 2.5
Cm = 10
Using the formula we get,
Kd = Cs/Cm
=> Cs = Kd Cm
= 2.5 (10)
= 25 M
Problem 5. Calculate the concentration of solute in the stationary phase if the partition coefficient is 1.6 and the concentration in the mobile phase is 7 M.
Solution:
We have,
Kd = 1.6
Cm = 7
Using the formula we get,
Kd = Cs/Cm
=> Cs = Kd Cm
= 1.6 (7)
= 11.2 M
Problem 6. Calculate the concentration of solute in the mobile phase if the partition coefficient is 3.75 and the concentration in the stationary phase is 12 M.
Solution:
We have,
Kd = 3.75
Cm = 12
Using the formula we get,
Kd = Cs/Cm
=> Cm = Cs/Kd
= 12/3.75
= 3.2 M
Problem 7. Calculate the concentration of solute in the mobile phase if the partition coefficient is 1.9 and the concentration in the stationary phase is 5 M.
Solution:
We have,
Kd = 1.9
Cm = 5
Using the formula we get,
Kd = Cs/Cm
=> Cm = Cs/Kd
= 5/1.9
= 2.63 M
Similar Reads
Permutation Formula Permutation is a fundamental concept in mathematics that deals with arranging a set of objects in a specific order. It focuses on the different ways items can be ordered when the arrangement matters. Permutations are widely used in various fields, including probability, computer science, and data an
6 min read
Hoare's Partition Algorithm Given an array arr[], the task is to partition the array by assuming first element as pivot element. The partition of an array must satisfy the following two conditions:Elements smaller than pivot element must appear at index less than or equal to partition index.Elements larger than or equal to piv
7 min read
nCr| Combinations Formula nCr represents the number of ways to choose r items from a set of n distinct items without regard to the order of selection. Combinations Formula is one of the countless formulas in the world of mathematics, which plays a pivotal role in solving problems. nCr is expressed as n!/r!(n-r)!They are wide
8 min read
partition_copy in C++ STL partition_copy is the inbuilt function defined in <algorithm> library in STL. partition_copy function duplicates the partitioned elements into the various containers given in its parameters. It requires 5 arguments which are the beginning and ending position of the container, the beginning pos
4 min read
GROUP BY vs PARTITION BY in MySQL MySQL, like many relational database management systems, provides powerful tools for manipulating and analyzing data through the use of SQL (Structured Query Language). Two commonly used clauses, GROUP BY and PARTITION BY, play essential roles in aggregate queries and window functions, respectively.
5 min read