Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions doc/v2/documentation_data_format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,20 @@ Detailed field description
Prior distributions
~~~~~~~~~~~~~~~~~~~

The prior distributions supported for the
:ref:`MAP objective function and for Bayesian inference <v2_objective_function>`
are listed below. PEtab only supports univariate prior distributions.
The probability density functions (PDFs) below assume that the parameter bounds
are wide enough to not truncate the distributions. If the parameter bounds
are narrower than the distribution's support, the distributions are truncated,
resulting in the following truncated prior distribution:

.. math::
\pi_{\text{trunc}}(x) = \frac{\pi(x)}{\text{CDF}(\text{upperBound}) - \text{CDF}(\text{lowerBound})}

where :math:`\pi(x)` is the PDF of the non-truncated distribution
and :math:`\text{CDF}(\cdot)` its cumulative distribution function.

Let :math:`x` denote the parameter value and :math:`\Gamma` the
`Gamma function <https://en.wikipedia.org/wiki/Gamma_function>`__.,
then the following prior distributions are supported:
Expand Down