Systems Biology & Frontiers
Level 5 — Mastery (cross-domain: math + physics + computation) Time limit: 90 minutes Total marks: 60
Instructions: Answer ALL three questions. Show full derivations. Justify modeling assumptions. Where numerical answers are required, give exact expressions and decimal values to 3 significant figures.
Question 1 — Gene Regulatory Network Dynamics & Emergent Bistability (24 marks)
Consider a single gene whose product (protein concentration) activates its own transcription (positive autoregulation) while being degraded linearly. The dynamics are:
where is the maximal production rate, the activation threshold, the Hill coefficient (cooperativity), and the degradation rate.
(a) Explain the biological meaning of each term and state why is a signature of cooperative transcription-factor binding, linking this to the concept of emergent behavior in systems biology. (4 marks)
(b) For , , , (all in consistent units), find all steady states analytically by solving . (6 marks)
(c) Determine the linear stability of each steady state by evaluating at each . Classify each as stable or unstable. (6 marks)
(d) Explain how this bistable switch constitutes cellular memory, and describe how single-cell sequencing (rather than bulk methods) would experimentally reveal the two coexisting expression states. (4 marks)
(e) State the general condition on the Hill coefficient required for bistability to be possible in a positive-autoregulation loop, and justify physically. (4 marks)
Question 2 — Metabolic Network Modeling: Flux Balance Analysis (20 marks)
A minimal cell has a small metabolic network with internal metabolites , and three reactions:
- : uptake
- :
- : biomass (objective)
with stoichiometry such that consumes 1 producing 2 , and consumes 1 .
(a) Write the stoichiometric matrix for internal metabolites and impose the steady-state condition . Derive the relationships among . (6 marks)
(b) Given the constraint and objective maximize , solve the linear program for the optimal flux vector. (6 marks)
(c) Explain why FBA requires no kinetic parameters, and state two biological assumptions that make the steady-state approximation valid. (4 marks)
(d) Discuss how multi-omics integration (transcriptomics + proteomics + metabolomics) can constrain or refine a genome-scale FBA model beyond pure stoichiometry. (4 marks)
Question 3 — Signal Transduction, Spatial Omics & Synthetic Genomes (16 marks)
(a) A signaling cascade converts input signal to output response through a series of ultrasensitive stages, each with effective Hill coefficient . Argue mathematically (using composition of Hill functions) why the overall dose–response steepness increases with cascade length, and give the approximate effective Hill coefficient. (6 marks)
(b) Spatial transcriptomics preserves the tissue coordinates lost in dissociated single-cell RNA-seq. Explain, with a concrete example, one biological question answerable ONLY with spatial (not dissociated) data, and one that dissociated single-cell data answers better. (6 marks)
(c) Minimal cells (e.g., JCVI-syn3.0) retain ~473 genes yet ~⅓ have unknown function. Discuss one scientific and one ethical/societal implication of building synthetic minimal genomes. (4 marks)
Answer keyMark scheme & solutions
Question 1
(a) (4 marks)
- : saturating production driven by autoactivation; the fraction is the probability the promoter is bound/active (1 mark).
- : first-order degradation/dilution, rate proportional to concentration (1 mark).
- indicates cooperative binding of multiple TF molecules (or multimerization) giving a sigmoidal/switch-like response rather than hyperbolic (1 mark).
- Emergence: the sharp switch/bistability is a system-level property not present in any single molecule — arising from the nonlinear feedback loop, illustrating holistic systems behavior (1 mark).
(b) (6 marks) Set with : (1) is a root (1). For divide by : (2) (1) Steady states: (1).
(c) (6 marks) Let . Then (2)
- At : → stable (low "OFF" state) (1).
- At : , ; ; → unstable (threshold/separatrix) (1.5).
- At : , squared ; ; → stable (high "ON" state) (1.5).
(d) (4 marks)
- The two stable states (ON/OFF) let a cell "remember" a transient stimulus after it's removed — hysteresis/memory (2).
- Bulk RNA-seq averages populations, reporting an intermediate mean that masks bimodality. Single-cell sequencing measures per-cell expression, revealing a bimodal distribution (two peaks) — the physical signature of coexisting states (2).
(e) (4 marks)
- Requires (cooperativity / ultrasensitivity) (2).
- Justification: with the production curve is hyperbolic and can intersect the degradation line at most once (besides origin), giving a single state. makes production sigmoidal so it can cross the straight degradation line up to three times → bistability geometrically requires the S-shape from cooperative binding (2).
Question 2
(a) (6 marks) Rows = metabolites ; columns = : (3) Steady state :
- A: (1.5)
- B: (1.5)
(b) (6 marks) Objective , increasing in (2). Constraint ⇒ optimum at (2). Optimal flux vector: , giving (2).
(c) (4 marks)
- FBA imposes only mass-balance (stoichiometry) + flux bounds and optimizes an objective; concentrations' time-derivatives set to zero eliminate the need for rate constants/ (2).
- Valid assumptions: (i) internal metabolite pools are at quasi-steady state (fast relative to growth/environmental change); (ii) cell is under an evolutionary optimality objective (e.g., maximal growth) — any two acceptable (2).
(d) (4 marks)
- Transcriptomics/proteomics indicate which enzymes are expressed → allow switching reactions off or bounding (integrating expression as flux constraints) (2).
- Metabolomics provides measured concentrations/exchange fluxes to further constrain uptake/secretion, resolving the many alternate-optima degeneracy of pure stoichiometric FBA (2).
Question 3
(a) (6 marks) Each stage: , a sigmoid of local steepness ~. Composing stages, (2). Near the switch point the local logarithmic sensitivity multiplies: the effective Hill coefficient of a composition is approximately the product of stage sensitivities, so (2). Thus a cascade of moderately cooperative steps produces a very steep (near-digital) response — cascades amplify ultrasensitivity, sharpening decision-making (2). (Accept style arguments if reasoned; full marks for multiplicative reasoning.)
(b) (6 marks)
- Spatial-only: e.g., mapping the boundary/gradient of gene expression across a tumor margin, or ligand–receptor signaling between physically adjacent cell types (niche interactions) — requires preserved coordinates (3).
- Dissociated-better: e.g., discovering rare cell types or full transcriptome-depth cell-type classification, where higher gene capture/sensitivity per cell (and unbiased whole-tissue sampling) outperforms spatial platforms (3).
(c) (4 marks)
- Scientific: unknown-function genes reveal gaps in our understanding of the minimal requirements for life; a chassis for engineering/defining core biology (2).
- Ethical/societal: biosafety/biosecurity concerns (engineered/synthetic organisms, dual-use), plus questions on ownership, containment, and "creating life" — need governance (2).
[
{"claim":"Nonzero steady states of Q1(b) are 2±√3","code":"x=symbols('x'); sols=solve(Eq(4*x**2/(1+x**2)-x,0),x); vals=set(sols); result = ({0,2-sqrt(3),2+sqrt(3)}==vals)"},
{"claim":"f'(x)=8x/(1+x^2)^2 -1 and f'(0)=-1 (stable), f'(2+√3)<0 (stable), f'(2-√3)>0 (unstable)","code":"x=symbols('x'); f=4*x**2/(1+x**2)-x; fp=diff(f,x); a=fp.subs(x,0); b=simplify(fp.subs(x,2+sqrt(3))); c=simplify(fp.subs(x,2-sqrt(3))); result = (a==-1) and (b<0) and (c>0)"},
{"claim":"FBA optimum: v1=v2=10, v3=20, Zmax=20","code":"v1=10; v2=v1; v3=2*v2; result = (v2==10 and v3==20)"}
]