4.5.5 · D3Biomolecules

Worked examples — Nucleic acids — DNA, RNA; base pairing, double helix, replication, transcription, translation (overview)

2,472 words11 min readBack to topic

Before we count anything, one reminder that we will lean on constantly. Base pairing is held together by hydrogen bonds, and the pairing is specific: A only meets T (or U in RNA), G only meets C. That single fact is the engine behind every example below.


The scenario matrix

Here is the full landscape of cases this topic can throw at you. Each later example is labelled with the cell it fills.

# Case class What makes it tricky Example
1 Standard base counting (one % given) just apply Chargaff Ex 1
2 Degenerate 50/50 input %A = %G — is that even allowed? Ex 2
3 Zero / extreme input %A = 0, or %GC = 100% Ex 3
4 H-bond total counting mixes pairing rules with bond counts Ex 4
5 Build the complementary strand direction (5′/3′) and antiparallel trap Ex 5
6 Transcription (DNA → mRNA) U-for-T swap + reading direction Ex 6
7 Translation (codon reading) grouping in 3s, start/stop Ex 7
8 Real-world word problem melting temperature vs GC content Ex 8
9 Exam twist (impossible data) data that violates Chargaff → spot the trap Ex 9

The tools we will re-use:


Example 1 — Standard base counting (Cell 1)


Example 2 — The degenerate 50/50 case (Cell 2)


Example 3 — Zero and extreme inputs (Cell 3)


Example 4 — Counting hydrogen bonds (Cell 4)


Example 5 — Build the complementary strand (Cell 5)


Example 6 — Transcription: DNA → mRNA (Cell 6)


Example 7 — Translation: reading codons (Cell 7)


Example 8 — Real-world word problem: melting temperature (Cell 8)


Example 9 — Exam twist: spot the impossible data (Cell 9)


Recall Self-test across the matrix

Cover the answers and try each. If %C = 32%, what is %A? ::: 18% (since %G = 32, A+T = 36, split equally). Is 25/25/25/25 a legal DNA base composition? ::: Yes — Chargaff holds; it is the degenerate all-equal case. If %A = 0, what is %G? ::: 50% (no A means no T, so G+C fill 100%, split equally). Total H-bonds for 6 A–T + 4 G–C pairs? ::: 24. Complement of 5′-ATGCCA-3′ (written 5′→3′)? ::: 5′-TGGCAT-3′. mRNA from template 3′-TACGTA-5′? ::: 5′-AUGCAU-3′. How many amino acids from AUG-UUU-UAA? ::: 2 (stop codon adds none). Higher GC content ⇒ higher or lower melting temperature? ::: Higher (more H-bonds per pair). Is %A=30, %T=20, %G=25, %C=25 valid for dsDNA? ::: No — %A ≠ %T breaks Chargaff.


See also: the Hinglish overview, and the prerequisite Hydrogen bonding that makes every pairing possible.