Description
Main idea
Many models of interest (especially, in life sciences) have linear first integrals (for example, conservation of mass, etc.). If there is such a first integral a_1 * x_1 + ... + a_n * x_n
, where x_1, ..., x_n
are the states and a_1, ...., a_n
are constants (maybe involving parameters), one can do the following:
- introduce a new parameter
C = a_1 * x_1 + ... + a_n * x_n
- use
x_1 = 1 / a_1 * (C - a_2 * x_2 - ... - a_n * x_n)
to eliminatex_1
from the system
As a result, we reduce the number of states by one at the expense of having one more parameter. Since the typical bottleneck of the algorithm is differential elimination, this will very likely speed up the computation.
Motivating example
As a motivating/illustrating example, we consider this CRN model but with only one output:
ode = @ODEmodel(
x1'(t) = -k1 * x1(t) * x2(t) + k2 * x4(t) + k4 * x6(t),
x2'(t) = -k1 * x1(t) * x2(t) + k2 * x4(t) + k3 * x4(t),
x3'(t) = k3 * x4(t) + k5 * x6(t) - k6 * x3(t) * x5(t),
x4'(t) = k1 * x1(t) * x2(t) - k2 * x4(t) - k3 * x4(t),
x5'(t) = k4 * x6(t) + k5 * x6(t) - k6 * x3(t) * x5(t),
x6'(t) = -k4 * x6(t) - k5 * x6(t) + k6 * x3(t) * x5(t),
y1(t) = x3(t)
)
This model is quite hard, it does not finish in an hour (and I remember trying it earlier, I think it just took all my memory in a couple of hours).
One can observe that x5(t) + x6(t)
is constant. Thus, we can introduce C1 = x5(t) + x6(t)
and eliminate x5(t)
:
ode = @ODEmodel(
x1'(t) = -k1 * x1(t) * x2(t) + k2 * x4(t) + k4 * x6(t),
x2'(t) = -k1 * x1(t) * x2(t) + k2 * x4(t) + k3 * x4(t),
x3'(t) = k3 * x4(t) + k5 * x6(t) - k6 * x3(t) * (C1 - x6(t)),
x4'(t) = k1 * x1(t) * x2(t) - k2 * x4(t) - k3 * x4(t),
x6'(t) = -k4 * x6(t) - k5 * x6(t) + k6 * x3(t) * (C1 - x6(t)),
y1(t) = x3(t)
)
Doing the same with first integrals C2 = x2(t) + x4(t)
and C3 = x1(t) - x2(t) + x3(t) + x6(t)
, we arrive at the following model with only three states:
ode = @ODEmodel(
x1'(t) = -k1 * x1(t) * x2(t) + k2 * (C2 - x2(t)) + k4 * x6(t),
x2'(t) = -k1 * x1(t) * x2(t) + k2 * (C2 - x2(t)) + k3 * (C2 - x2(t)),
x6'(t) = -k4 * x6(t) - k5 * x6(t) + k6 * (C3 - x1(t) + x2(t) - x6(t)) * (C1 - x6(t)),
y1(t) = (C3 - x1(t) + x2(t) - x6(t))
)
Now global identifiability is successfully analyzed in 60 seconds (and computing the input-output equation takes only 15 seconds)
What to do
The substantial speedup above can be achieved automatically if we can
- find all linear first integrals
- perform a reduction using this integrals
- add this as a preprocessing in
assess_global_identifiability