benchmarks.wiki / Public workspace
SciCode / 44.2 / Let r_(i) denote the concentration of all chains ending with monomer i, and…
Problem
Answer published by the source. Consult the official source to check your work against its answer.
step background
Background
- The concentration of chains ending with i can be counted by
- The concentration of chains starting with i can be counted by
Plain-text mathematical notation (without MathML)
Background - The concentration of chains ending with i can be counted by r_(i)(t)=c_(i)−∑_(k)d_(ik)(t) - The concentration of chains starting with i can be counted by l_(i)(t)=c_(i)−∑_(k)d_(ki)(t)
Original LaTeX notation
Background
- The concentration of chains ending with i can be counted by $r_i(t)=c_i-\sum_k d_{i k}(t)$
- The concentration of chains starting with i can be counted by $l_i(t)=c_i-\sum_k d_{k i}(t)$step description prompt
Let denote the concentration of all chains ending with monomer i, and the concentration of all chains starting with monomer j. They can be calculated from the concentration of each type of monomer (which is a constant throughout the process) and the 2-mer concetrations . In the night phase, when 2 ends i and j of such chains meet due to hybridization with a complementary template j'i', they are ligated at rate and form a new 2-mer ij; in the day phase, 2-mers break up spontaneously at a given rate. Let's describe this process by the master euqation
$\dot{d}_{ij}(t)=\lambda_{i j} \cdot r_i(t) \cdot l_j(t) \cdot d_{j' i'}(t)-d_{i j}(t)$, where all the breakage rates are set to 1 for simplicity. To integrate this ODE method, write a function that returns the change of (flattened to 1d) during timestep . The inputs are the following: the time t; the flattened matrix, noted as y; the concentration of each type of monomer , and the ligation rate matrix .Plain-text mathematical notation (without MathML)
Let r_(i) denote the concentration of all chains ending with monomer i, and l_(j) the concentration of all chains starting with monomer j. They can be calculated from the concentration of each type of monomer c_(i) (which is a constant throughout the process) and the 2-mer concetrations d_(ij). In the night phase, when 2 ends i and j of such chains meet due to hybridization with a complementary template j'i', they are ligated at rate λ_(ij) and form a new 2-mer ij; in the day phase, 2-mers break up spontaneously at a given rate. Let's describe this process by the master euqation $\dot{d}_{ij}(t)=\lambda_{i j} \cdot r_i(t) \cdot l_j(t) \cdot d_{j' i'}(t)-d_{i j}(t)$, where all the breakage rates are set to 1 for simplicity. To integrate this ODE method, write a function that returns the change of d_(ij) (flattened to 1d) during timestep δt. The inputs are the following: the time t; the flattened d_(ij) matrix, noted as y; the concentration of each type of monomer c_(i), and the ligation rate matrix λ_(ij).Original LaTeX notation
Let $r_i$ denote the concentration of all chains ending with monomer i, and $l_j$ the concentration of all chains starting with monomer j. They can be calculated from the concentration of each type of monomer $c_i$ (which is a constant throughout the process) and the 2-mer concetrations $d_{ij}$. In the night phase, when 2 ends i and j of such chains meet due to hybridization with a complementary template j'i', they are ligated at rate $\lambda_{ij}$ and form a new 2-mer ij; in the day phase, 2-mers break up spontaneously at a given rate. Let's describe this process by the master euqation $\dot{d}_{ij}(t)=\lambda_{i j} \cdot r_i(t) \cdot l_j(t) \cdot d_{j' i'}(t)-d_{i j}(t)$, where all the breakage rates are set to 1 for simplicity. To integrate this ODE method, write a function that returns the change of $d_{ij}$ (flattened to 1d) during timestep $\delta t$. The inputs are the following: the time t; the flattened $d_{ij}$ matrix, noted as y; the concentration of each type of monomer $c_i$, and the ligation rate matrix $\lambda_{ij}$.Discussion
No discussion posts on this page yet. Share a minimal failing example, an algorithm with its complexity, or a reproducible command and result. Use the posting template.
See answer Answer published by the source
Artifacts
Code, notes and reproducible work shared by participants. Files are served from a separate origin.
No artifacts on this page yet. Share reproducible code or notes in a contribution. Share a minimal failing example, an algorithm with its complexity, or a reproducible command and result. Use the posting template.
Source and history
initial import