Biomolecules — Carbohydrates & Lipids
Level 5 — Mastery (cross-domain: biochemistry + quantitative modelling + coding) Time limit: 75 minutes Total marks: 60
Instructions: Answer all three questions. Show reasoning, derivations, and any assumptions. Where a computational model is requested, present clean pseudocode or Python-style code plus the numerical result.
Question 1 — Dehydration Synthesis, Stoichiometry & Energy Balance (20 marks)
Amylose (an unbranched starch) is a linear polymer of α-glucose (, molar mass ) joined by glycosidic bonds, each formed by dehydration synthesis releasing one water molecule.
(a) Define monomer and polymer, and explain precisely why the molar mass of an amylose chain of glucose residues is not simply . Derive a general formula for the molar mass of an amylose chain of residues. (6)
(b) A starch granule is fully hydrolysed to free glucose. If hydrolysis of the sample consumes of water, how many glycosidic bonds were broken? State any assumption about chain length. (Molar mass of water .) (4)
(c) Compare the structure–function relationship of starch (amylose + amylopectin), glycogen, and cellulose, referring to: (i) glycosidic bond type ( vs ), (ii) branching, (iii) biological role, and (iv) why cellulose is indigestible to most animals despite being a glucose polymer. (6)
(d) Write short pseudocode (a function chain_mass(n)) that returns from part (a), and state its output for . (4)
Question 2 — Fatty Acids, Saturation & a Melting-Point Model (22 marks)
A triglyceride is formed from glycerol () and three fatty acids by dehydration synthesis.
(a) Draw/describe the general reaction for triglyceride formation, stating how many water molecules are released and why. Explain the amphipathic nature of a phospholipid and contrast it with a triglyceride in terms of behaviour in water. (6)
(b) Stearic acid (, saturated) melts at ; oleic acid (, one cis double bond) melts at . Explain mechanistically (in terms of molecular packing and van der Waals forces) why introducing one cis double bond lowers the melting point so drastically. (6)
(c) A researcher proposes a simple linear model for the melting point of an -carbon fatty acid as a function of the number of cis double bonds : Given the two data points in (b), determine and . Then predict for linoleic acid () and comment on whether a linear model is biologically reasonable across . (6)
(d) Write a Python-style function predict_Tm(d) implementing your model, and give its outputs for . (4)
Question 3 — Membranes, Steroids & Cross-Domain Reasoning (18 marks)
(a) Cholesterol is a steroid embedded in animal cell membranes. Describe the steroid four-ring structure and explain, using the concept of membrane fluidity, why cholesterol acts as a "fluidity buffer" — increasing order at high temperature but preventing tight packing at low temperature. (6)
(b) A spherical lipid vesicle (liposome) has outer radius and a bilayer thickness of . Assuming each phospholipid headgroup occupies of surface area, estimate the total number of phospholipid molecules in the vesicle. Account for both the outer and inner leaflets. Show your geometric reasoning. (8)
(c) Chitin and cellulose are both structural polysaccharides. State the single chemical difference in their monomers, and explain why waxes (long-chain fatty acid + long-chain alcohol esters) are effective as waterproofing on plant cuticles and insect exoskeletons. (4)
Answer keyMark scheme & solutions
Question 1
(a) (6 marks)
- Monomer = small repeating molecular subunit; polymer = large molecule built from many covalently linked monomers. (2)
- Each glycosidic bond forms by dehydration synthesis, removing one ( g/mol). For residues, bonds form, so waters are lost. (2)
- Therefore mass is not because water is removed at each linkage. (2)
(b) (4 marks)
- Moles of water = . (2)
- Each hydrolysed glycosidic bond consumes one water, so bonds broken bonds. (2)
- Assumption: negligible correction for chain ends / assume long chains where bonds ≈ residues, and complete hydrolysis. (within marks)
(c) (6 marks — 1.5 each)
- Bond type: starch & glycogen = (+ branches); cellulose = .
- Branching: amylose unbranched, amylopectin moderately branched, glycogen highly branched (rapid mobilisation), cellulose unbranched straight chains.
- Role: starch = plant energy storage; glycogen = animal energy storage; cellulose = plant cell-wall structural support.
- Indigestibility: the linkage gives straight H-bonded microfibrils; most animals lack cellulase enzymes able to hydrolyse bonds. (2 of the 6 for this point)
(d) (4 marks)
function chain_mass(n):
return 180.16*n - 18.02*(n-1)
- For : . (2 for code, 2 for value)
Question 2
(a) (6 marks)
- Glycerol + 3 fatty acids → triglyceride + 3 water (one ester bond per fatty acid, each by dehydration). (3)
- Phospholipid: hydrophilic phosphate head + two hydrophobic fatty-acid tails = amphipathic; forms bilayers/micelles in water (heads out, tails in). Triglyceride has three tails, no polar head → wholly hydrophobic, forms fat droplets, not bilayers. (3)
(b) (6 marks)
- Saturated stearic acid chains are straight, pack tightly → maximal surface contact → many van der Waals interactions → high melting point. (3)
- A cis double bond introduces a rigid kink/bend, preventing tight packing, reducing contact area and van der Waals forces → lower energy needed to disrupt → much lower melting point (liquid at room temp). (3)
(c) (6 marks)
- Model .
- : . (2)
- : per double bond. (2)
- Prediction : . (1)
- Comment: linear model gives plausible ordering (more unsaturation → lower ) but the effect saturates/is non-linear in reality; extrapolation to () is not physically reliable. (1)
(d) (4 marks)
def predict_Tm(d):
return 69 - 56*d- Outputs: ; ; ; (°C). (2 code, 2 values)
Question 3
(a) (6 marks)
- Steroid = four fused carbon rings (three six-membered + one five-membered), with functional groups; cholesterol has a hydroxyl (—OH) head. (2)
- At high T: cholesterol's rigid ring restrains phospholipid tail motion → reduces excessive fluidity/order it. (2)
- At low T: it wedges between phospholipids, disrupting tight packing/crystallisation → maintains fluidity. Thus "fluidity buffer." (2)
(b) (8 marks)
- Outer leaflet surface at nm: . (2)
- Inner leaflet surface at nm: . (2)
- Molecules per leaflet = area / 0.70:
- Outer: .
- Inner: . (2)
- Total phospholipids. (2) (Acceptable range .)
(c) (4 marks)
- Chitin monomer = N-acetylglucosamine (glucose derivative with an acetylamino group); cellulose monomer = plain glucose — difference is the —NH-COCH₃ group replacing an —OH. (2)
- Waxes: long saturated hydrocarbon chains are highly hydrophobic and tightly packed, forming an impermeable water-repellent layer → reduces water loss/entry on cuticles/exoskeletons. (2)
[
{"claim":"Amylose molar mass for n=1000 residues", "code":"n=1000; M=180.16*n-18.02*(n-1); result=abs(M-162158.02)<0.1"},
{"claim":"Bonds broken from 1.20 g water hydrolysis ~4.01e22", "code":"N=(1.20/18.02)*6.022e23; result=abs(N-4.01e22)/4.01e22<0.01"},
{"claim":"Fatty acid melting model k=56 and Tm(d=2)=-43", "code":"T0=69; k=69-13; Tm2=T0-k*2; result=(k==56) and (Tm2==-43)"},
{"claim":"Liposome total phospholipids ~8.1e4", "code":"import math; Aout=4*math.pi*50**2; Ain=4*math.pi*45**2; N=(Aout+Ain)/0.70; result=abs(N-8.12e4)/8.12e4<0.02"}
]