S1-2

Two kinds of cells: prokaryotic vs eukaryotic

12 min

All life on Earth is built from cells, but the cells come in two deeply different architectures. Almost every living thing you can name falls into one camp or the other, and the split is not about size or shape. It is about one structural choice: does the cell keep its parts in separate rooms, or not.

That single choice ripples out into almost everything else. So it is worth getting the two designs clear before we go deeper.

The two floor plans

A prokaryote is a cell with no internal compartments. The word literally means "before the nucleus." Bacteria are the prokaryotes you have heard of. Picture a small sealed bag. Inside is one open space. The DNA floats loose in that space, the machinery that reads it floats there too, and the machines that build proteins float there as well. Everything shares one room. Prokaryotic cells are also small, typically about one to two microns across (a micron is a millionth of a meter).

A eukaryote is a cell that has internal compartments walled off by membranes. The word means "true nucleus." Your cells are eukaryotic. So are the cells of every animal, plant, fungus, and the single-celled amoebae in pond water. A eukaryotic cell is larger, often ten to a hundred times the diameter of a bacterium (which is roughly a thousand times or more in volume), and inside it is partitioned into rooms called organelles. The most important room is the nucleus, a membrane-wrapped vault that holds the DNA. Other organelles handle power, packaging, recycling, and shipping. We will tour them in the next lessons.

The programmer analogy, and where it breaks

Here is a way to hold the two designs in your head.

A prokaryote is a single-file script with everything in global scope. All the state, all the logic, all the data sit in one namespace. Any part can touch any other part directly, right now, with no barrier between them. It is fast, it is compact, and it has almost no ceremony.

A eukaryote is a modular program. State is hidden behind boundaries. The DNA lives in its own module (the nucleus) and the rest of the program cannot reach in and read it directly. To use the code inside, the program has to export a copy across the boundary. That structure costs overhead, but it lets the cell get much bigger and more complicated without everything colliding.

Why a wall around the DNA forces a messenger step

This is the payoff, and it is worth deriving rather than memorizing.

To build a protein, a cell must read the relevant stretch of DNA and use that instruction to assemble the protein. In a prokaryote both jobs happen in the same open room, so the protein-building machines can grab the DNA instruction almost as it is being read. The two steps are practically touching. There is no need for a courier.

Now put a wall around the DNA. In a eukaryote the DNA is locked in the nucleus, but the machines that build proteins (called ribosomes, which we will meet properly later) sit outside the nucleus, in the surrounding space. So the instruction and the builder are now in different rooms, separated by a membrane. The DNA cannot leave the nucleus, and the builders cannot get in.

So how does the instruction reach the factory floor? The cell makes a disposable working copy of just the needed stretch of DNA, and sends that copy out through the wall. That copy is messenger RNA, usually written mRNA. The mRNA is read from the DNA inside the nucleus, then it travels out to the ribosomes, which read it and build the protein.

The messenger step is not an arbitrary extra. It is the direct consequence of putting the DNA in a separate room. Two rooms, so you need a courier between them. This is the shape of the central dogma you will study in depth in module S5: DNA to RNA to protein. The RNA middle step exists, in part, because of a wall.

The central dogma: DNA is transcribed into RNA, which is translated into protein.DNAdouble helixtranscriptionRNAmessengertranslationproteinfolded chain

The myth to unlearn: bacteria are not primitive

It is tempting to line the two designs up as a ladder: simple bacteria first, complex eukaryotes as the improved version. That story is wrong, and it will mislead you for years if you keep it.

Yes, prokaryotes came first in time, by well over a billion years. But "came first" is not "primitive," and it is not "on the way to becoming us." Bacteria did not stop evolving when eukaryotes appeared. They kept going, and they are staggeringly good at what they do.

Consider the scale. Bacteria are the most abundant cellular life on the planet by a wide margin. Estimates put the total number of bacterial cells on Earth at roughly five thousand billion billion billion (a 5 followed by about 30 zeros). They live in boiling vents, in rock kilometers underground, in the acid of your stomach, and there are more bacterial cells in and on your body than you might expect (roughly on par with your own cell count). They also evolve fast, because they copy quickly and can even swap useful genes sideways between individuals. That is why antibiotic resistance can spread through a population in a matter of years.

Key terms

prokaryote
A cell with no internal membrane-bound compartments, with its DNA loose in one open space. Bacteria are the familiar example.
eukaryote
A cell partitioned by membranes into internal rooms called organelles, including a nucleus that holds the DNA. Our cells are eukaryotic.
nucleus
The membrane-wrapped compartment in a eukaryotic cell that stores the DNA and separates it from the rest of the cell.
organelle
A membrane-bound room inside a eukaryotic cell that specializes in one job, such as the nucleus or the power-generating mitochondria.
compartmentalization
The use of internal membranes to divide a cell into separate rooms. Present in eukaryotes, absent in prokaryotes.
messenger RNA (mRNA)
A disposable working copy of a stretch of DNA that carries the instruction out of the nucleus to the protein-building machinery.

Where this leaves you

Two floor plans. One open room versus many walled rooms. The wall around the DNA is the hinge: it lets eukaryotic cells grow large and organized, and it forces the messenger-RNA courier step that the whole central dogma is built around. And neither design is the "primitive" one. They are two long-running, successful answers to the problem of staying alive and making more of yourself.

Next we open the doors and walk through the eukaryotic rooms one at a time.

Check yourself

1. What is the single structural feature that defines a eukaryote and separates it from a prokaryote?

2. In a eukaryotic cell, the DNA stays in the nucleus but proteins are built outside it. What does this arrangement force the cell to do?

3. Which statement about bacteria is accurate?

4. A prokaryote reads a gene and builds the protein in the same open space, with no messenger step needed. Which analogy best captures why?

4 unanswered