Reproductive System & Development
Level 5 Mastery Examination Paper
Time limit: 75 minutes Total marks: 60 Instructions: Answer ALL three questions. This is a cross-domain mastery paper combining biology, mathematics, physics, and computational reasoning. Show all working. Use for inline math and state assumptions clearly.
Question 1 — Hormonal Control as a Feedback System (20 marks)
The menstrual cycle is governed by feedback loops linking the hypothalamus (GnRH), pituitary (LH, FSH), and ovary (estradiol, progesterone).
(a) Describe the negative feedback and the switch to positive feedback of estradiol on the hypothalamic–pituitary axis, and explain how the mid-cycle LH surge is generated. (6 marks)
(b) Model estradiol concentration late in the follicular phase as exponential growth, , where pg/mL at days and pg/mL at days. Determine the growth constant (give exact form and numeric value to 3 s.f.), and compute the time at which first reaches the positive-feedback threshold of pg/mL. (6 marks)
(c) Consider a simple linear negative-feedback model for FSH: with from part (b) and . Derive by integration, and determine whether FSH is rising or falling at days. Interpret this biologically. (8 marks)
Question 2 — Physics of Sperm Motility and Fertilization (20 marks)
A sperm cell (head radius ) swims through cervical mucus modelled as a fluid of dynamic viscosity at a constant speed .
(a) Using Stokes' law for the drag on the head, compute the drag force. Estimate the Reynolds number (take ) and explain, with reference to the physics, why sperm locomotion operates in the low-Reynolds-number regime and what this implies about coasting. (8 marks)
(b) The journey from cervix to the ampulla of the oviduct is about cm. Assuming the effective average forward speed accounting for tortuosity is one-fifth of , estimate the minimum transit time in minutes. Comment on how this compares to the ~30 min observed and what biological mechanisms (muscular, ciliary) close the gap. (6 marks)
(c) Describe the acrosome reaction and the cortical reaction, and explain how the cortical reaction establishes the block to polyspermy. Relate the energetic cost of motility to why only a tiny fraction of the initial ~ sperm reach the egg. (6 marks)
Question 3 — Modelling Cleavage & a Contraception Probability Problem (20 marks)
(a) During cleavage, a zygote undergoes synchronous divisions with negligible growth, producing the morula then blastula. Write a recurrence for cell number after cleavage divisions, and give a closed form. If total embryo volume is conserved, express the mean volume per cell and hence the ratio of total surface area to the original single-cell surface area after divisions (assume spherical cells). (8 marks)
(b) Write clear pseudocode (or Python) for a function cleavage_cells(n) returning cell count, and surface_ratio(n) returning the total-surface-to-original ratio derived in (a). State the outputs for . (6 marks)
(c) A contraceptive pill has per-cycle failure probability with perfect use. Assuming independence between cycles, derive an expression for the probability of at least one failure over cycles (one year), evaluate it, and compare conceptually with a method of per-cycle failure (typical use). Briefly explain, at the hormonal level, how combined oral contraceptives prevent ovulation. (6 marks)
End of paper
Answer keyMark scheme & solutions
Question 1
(a) (6 marks)
- Low–moderate estradiol from developing follicle exerts negative feedback, suppressing GnRH/LH/FSH secretion (keeps gonadotropins low during early follicular phase). (2)
- When estradiol rises above a threshold and is sustained (~200 pg/mL for ~48 h), feedback switches to positive — high estradiol now stimulates GnRH and sensitises pituitary gonadotropes. (2)
- This triggers the massive LH surge (and smaller FSH surge), which induces meiosis I completion in the oocyte and ovulation ~24–36 h later. (2)
(b) (6 marks)
- . (2)
- Numeric: . (2)
- Threshold: days. (2)
(c) (8 marks)
- . (1)
- Integrate: . (2)
- Apply : . With , so . (2)
- Thus . (1)
- Slope at : ⇒ FSH still rising at but slowing. (1)
- Biological interpretation: as estradiol climbs, its inhibitory term grows; FSH growth decelerates and will turn to decline — the mid-follicular FSH dip produced by negative feedback selects the dominant follicle. (1)
Question 2
(a) (8 marks)
- Drag: . N. (3)
- Reynolds: . (3)
- : viscous forces dominate inertia; there is no coasting — if flagellar beating stops, the sperm halts almost instantly (motion is time-reversible / "scallop theorem"), so continuous non-reciprocal beating is needed. (2)
(b) (6 marks)
- Effective speed m/s. (1)
- Time s. (2)
- min. (1)
- This is far longer than ~30 min observed; the gap is closed by uterine/oviductal muscular contractions and ciliary currents actively transporting sperm, not sperm swimming alone. (2)
(c) (6 marks)
- Acrosome reaction: on contact with zona pellucida (ZP3 binding), the sperm acrosome releases hydrolytic enzymes (acrosin) digesting a path through the zona pellucida. (2)
- Cortical reaction: fusion triggers release; cortical granules exocytose enzymes that harden/modify the zona (zona reaction), creating a slow block to polyspermy (fast block = membrane depolarisation). (2)
- Motility is energetically costly (ATP for flagellum) and the tract is long/hostile (acidic vagina, immune cells, mucus); attrition means only ~hundreds reach the egg from ~. (2)
Question 3
(a) (8 marks)
- Recurrence: ; closed form . (2)
- Volume per cell: (total volume conserved). (2)
- Cell radius: since . Surface per cell . (2)
- Total surface . Ratio . (2)
(b) (6 marks)
def cleavage_cells(n):
return 2**n
def surface_ratio(n):
return 2**(n/3) # total surface / original single-cell surface- : cells , ratio . (2)
- : cells , ratio . (2)
- : cells , ratio . (2) (Increasing surface-to-volume aids nutrient/gas exchange as blastula forms.)
(c) (6 marks)
- No failure in one cycle: . Over independent cycles: . (1)
- At least one failure: . (1)
- Perfect use , : . (2)
- Typical use : — dramatically higher, showing adherence matters enormously. (1)
- Mechanism: combined pills deliver estrogen+progestin that negatively feed back on the hypothalamus/pituitary, suppressing FSH/LH and preventing the LH surge → no ovulation (also thicken cervical mucus, thin endometrium). (1)
[
{"claim":"Estradiol growth constant k = 3 ln2 /4 ≈ 0.5199",
"code":"k = ln(8)/4; result = abs(float(k) - 0.5199) < 1e-3"},
{"claim":"Threshold time t* = ln5/k ≈ 3.096 days",
"code":"k = ln(8)/4; t = ln(5)/k; result = abs(float(t) - 3.096) < 1e-2"},
{"claim":"dF/dt at t=2 is about 4.34 (>0, FSH rising)",
"code":"k = ln(8)/4; dF = 10 - 0.05*40*exp(2*k); result = abs(float(dF) - 4.343) < 1e-2"},
{"claim":"Stokes drag F ~ 2.356e-11 N",
"code":"F = 6*pi*Rational(1,100)*Rational(25,10)*1e-6*50*1e-6; result = abs(float(F) - 2.356e-11) < 1e-13"},
{"claim":"Reynolds number = 1.25e-5",
"code":"Re = (1000*50e-6*2.5e-6)/1e-2; result = abs(float(Re) - 1.25e-5) < 1e-8"},
{"claim":"Surface ratio at n=4 is 2^(4/3) ≈ 2.52",
"code":"s = 2**(Rational(4,3)); result = abs(float(s) - 2.5198) < 1e-3"},
{"claim":"Pill perfect-use annual failure prob ≈ 0.1136",
"code":"P = 1 - 0.99**12; result = abs(float(P) - 0.1136) < 1e-3"},
{"claim":"Typical-use annual failure prob ≈ 0.6775",
"code":"P = 1 - 0.91**12; result = abs(float(P) - 0.6775) < 1e-3"}
]