Pharmaceuticals are meant to help patients become healthier. This requires consistent, high quality active pharmaceutical ingredients (APIs), responsible for the therapeutic benefits and which are formulated in the final medicinal products. Hence, potential impurities in the APIs are to be kept as low as possible, as they are most often toxic compounds.

For the related impurities, 3 thresholds are given in the European Pharmacopoeia monograph 2034 (substances for pharmaceutical use), based on the ICH guidelines: impurities above any of these thresholds require an action, which can be (1) to report, (2) to identify or (3) to toxicologically qualify them. The table below gives these thresholds, which are based on the maximum daily dose, and which are expressed in percentage and/or in quantity for the identification and qualification thresholds.

impurity thresholds
Reporting, identification and qualification of organic impurities in active substances.

Assignment

Compute the reporting, identification and qualification thresholds of organic impurities in active substances. You should do this in the following way:

Example

>>> mg2g(0.5)
0.0005
>>> mg2g(1.0)
0.001
>>> mg2g(123.45)
0.12345

>>> threshold(0.5, 0.001, 0.10)
0.1
>>> threshold(2.0, 0.001, 0.10)
0.05
>>> threshold(3.0, 0.001, 0.10)
0.03333333333333333

>>> reportingThreshold(0.5)
0.05
>>> reportingThreshold(2.0)
0.05
>>> reportingThreshold(3.0)
0.03

>>> identificationThreshold(0.5)
0.1
>>> identificationThreshold(2.0)
0.05
>>> identificationThreshold(3.0)
0.05

>>> qualificationThreshold(0.5)
0.15
>>> qualificationThreshold(2.0)
0.05
>>> qualificationThreshold(3.0)
0.05

Resources