LON-2-3

Nutrient sensing, mitochondrial dysfunction, and cellular senescence

16 min

LON-2.1 and LON-2.2 handed you damage that piles up: somatic mutations, fraying telomeres, drifting epigenetic marks, and misfolded proteins the quality-control crews can no longer keep up with. This lesson is about the three hallmarks that decide what a cell does with all that damage. They are also the three most heavily drugged targets in the whole aging field, which is exactly why you need the mechanism before you meet the pills. And two of the three you have already half-built. In S9.3 you wired the nutrient-sensing seesaw. In S9.2 you watched a mitochondrion burn fuel to make ATP. Here they age.

The scheduler: grow now, or maintain and repair

Start from a constraint. A cell has a finite budget of energy, building blocks, and enzyme capacity. It cannot run flat-out anabolic growth (make new protein, copy the genome, divide) and run the slow, expensive maintenance crews (autophagy, DNA repair, antioxidant defense) at full tilt at the same time. Something has to arbitrate. Evolution wired a switch that reads one question: is food here right now? When food is plentiful, grow and reproduce, because that is what selection rewards. When food is scarce, batten down, repair, and wait out the famine. That switch is nutrient sensing, and four sensors run it.

Two push toward growth. Insulin and IGF-1 (insulin-like growth factor 1) are hormones that mean "food and growth signals have arrived." mTOR, the hub kinase you met in S9.3, integrates insulin with the amino acids floating in the cell and, when it fires, drives protein synthesis and shuts autophagy down.

Two push toward maintenance. AMPK is the low-fuel alarm. It reads the ratio of spent to charged energy carriers (a high AMP to ATP ratio, recall the ATP currency from S9.2), and when energy runs low it switches on, turns mTOR down, and turns autophagy up. Sirtuins are a family of enzymes that can only work when they are handed a molecule called NAD+ (the oxidized form of a coenzyme that shuttles electrons in metabolism). NAD+ rises when the cell has been spending its charge, so sirtuins are a second fasting sensor: low energy, high NAD+, sirtuins on, repair and stress-defense genes up.

So the whole system is a seesaw with two riders on each end. Fed inputs (insulin and IGF-1, mTOR) versus fasted inputs (AMPK, sirtuins). Here is the payoff worth memorizing: every famous longevity lever pulls this seesaw toward the fasted, maintenance side. Caloric restriction, intermittent fasting, rapamycin (which blocks mTOR by name), metformin (which nudges the AMPK and energy axis), and NAD+ boosters (aimed at sirtuins) are all the same move made at different points on the same wiring.

If you write software, this is a scheduler. Growth versus maintenance is a scheduler deciding whether to spend cycles on new work or on garbage collection and repair. mTOR is the "run the workload at full priority" vote. AMPK and the sirtuins are the "we are low on resources, pause and clean up" vote. Autophagy is not a metaphor here, it is literally garbage collection: the cell digests its own worn-out parts back into raw materials.

Here is that switch as a caricature in code. Read it as a mnemonic for the wiring, not a model of the real kinetics.

nutrient_sensing.py
# TOY model of nutrient sensing. Not real kinetics, a mnemonic for the wiring.
# Each sensor reads the cell state, and mTOR is the tiebreaker.

def nutrient_state(glucose, amino_acids, atp_charge):
    fed = glucose > 0.5 and amino_acids > 0.5
    insulin_igf1 = "high" if fed else "low"
    mtor = "on" if (fed and atp_charge > 0.5) else "off"
    ampk = "on" if atp_charge < 0.4 else "off"
    # sirtuins track NAD+, which rises as the cell spends its ATP charge
    nad_plus = 1.0 - atp_charge
    sirtuins = "on" if nad_plus > 0.5 else "off"

    if mtor == "on":
        return "GROW: build protein, divide, store fuel, autophagy DOWN"
    return "MAINTAIN: autophagy UP, repair UP, growth paused"

print(nutrient_state(glucose=0.9, amino_acids=0.9, atp_charge=0.8))
print(nutrient_state(glucose=0.1, amino_acids=0.2, atp_charge=0.3))

Now the real wiring, interactive. Before you toggle it, predict two things: when you switch from fed to fasted, which way does mTOR move, and does autophagy rise or fall? Then flip it and check yourself.

nutrient-sensing.ts
Metabolic stateFED
Nutrient-sensing pathway in the fed stateInsulin / IGF-1HIGHmTORHIGHAMPKLOWGrowth + storageHIGHAutophagyLOWFat burningLOW

Fed: nutrients raise insulin / IGF-1, mTOR drives growth and storage, and autophagy is switched down.

Simplified: AMPK is chiefly a sensor of the cell's energy charge (a rising AMP to ATP ratio), which fasting drives up. Insulin nudges it too, but the low-fuel signal is the main switch.

Mitochondrial dysfunction: less power, more sparks

Recall from S9.2 that the mitochondrion makes ATP by running an electron transport chain: it passes electrons down a line of carriers to oxygen, using the energy to pump protons and turn a molecular turbine. It is a controlled burn. But the burn is leaky. A small fraction of electrons jump the chain early and land on oxygen directly, producing superoxide, the first of a family called reactive oxygen species (ROS): oxygen-derived molecules that react readily with whatever is nearby. Superoxide is a radical, carrying an unpaired, extra electron.

Two things compound this with age. First, mitochondria carry their own small ring of DNA (mtDNA), sitting right next to the leak, with weaker repair machinery than the nucleus has. Over decades it accumulates mutations. Think back to the mutation types from S7.1: a point mutation in an mtDNA gene for a chain component, or a large deletion, degrades the very parts that carry electrons cleanly. Second, a damaged chain is a leakier chain. It makes less ATP and spills more electrons, so it makes more ROS, and that extra ROS damages the chain further. The result is a feedback loop: less power, more sparks, more damage, less power. (How much this local loop drives whole-body aging is debated: mice engineered for heavy mtDNA damage age fast without a matching ROS surge, so read it as a real organelle-level effect, not a settled cause of aging.)

What does the ROS do? Superoxide gets converted (by an enzyme, superoxide dismutase) into hydrogen peroxide, which is milder and can drift across the cell. If hydrogen peroxide meets free iron it can become the hydroxyl radical, which shreds almost anything it touches: the lipids in membranes, proteins, and DNA. This is genuine damage, and it feeds the wreckage LON-2.1 and LON-2.2 catalogued.

Cellular senescence: the zombie process that will not exit

A senescent cell has permanently stopped dividing but has not died. It exits the cell cycle (S9.4) for good, will not re-enter no matter how loud the growth signal, yet stays alive, metabolically active, and often swollen. It is a checkpoint outcome. When a cell detects something dangerous (critically short telomeres from LON-2.1, too much DNA damage, an activated cancer gene, or heavy ROS stress), it picks one of three exits at the S9.4 decision point: repair and carry on, self-destruct by apoptosis, or lock itself out of division forever. Senescence is that third door, a safety brake. A cell that might turn into cancer is taken off the road without being killed.

That is both the good news and the trap. Young, senescence is tumor suppression and even helps wound healing. The problem is accumulation. Your immune system clears senescent cells when you are young, but clearance slows with age (and the immune system itself ages), so they build up. And they are not quiet. A senescent cell runs a program called the SASP, the senescence-associated secretory phenotype: it secretes a cocktail of inflammatory cytokines, tissue-degrading proteases, and growth factors. Those signals inflame the neighborhood, break down the surrounding tissue, and can push nearby healthy cells into senescence too, a bystander effect. A few zombie cells recruit more. This chronic secreted inflammation is a major feed into the "inflammaging" you will meet in LON-2.4.

In software terms a senescent cell is a leaked process that refuses to exit. It will not do its job (it will not divide) and it will not terminate (it actively resists the apoptosis kill signal), and worse than a plain leak, it holds a socket open and spews noise onto the shared bus that degrades every process nearby, which is the SASP.

The obvious therapeutic move is to selectively kill senescent cells, and drugs that try are called senolytics (combinations like dasatinib plus quercetin, or fisetin, among others). In mice, clearing senescent cells extended healthspan and eased several age-related conditions, which is a genuinely exciting result. Hold the course's line on it anyway: mouse and cell data are strong, human trials are early and small, and the job has to be done selectively and repeatedly without stripping the senescence you still want. A promising lever, not a proven therapy.

Three hallmarks, one network

Do not file these as three separate boxes. They wire into each other. Mitochondrial ROS is one of the triggers that tips a cell into senescence. The SASP's inflammation worsens both nutrient signaling and mitochondrial function in the tissue around it. Nutrient sensing controls the autophagy that clears damaged mitochondria in the first place (a specific form called mitophagy). Push one and the others move. This is why the aging-drug pipeline is thickest right here (rapamycin on mTOR, metformin on the AMPK axis, NAD+ boosters on sirtuins, mito-targeted antioxidants like MitoQ on ROS, senolytics on senescence), and it sets up LON-2.4, where the whole point is that the hallmarks are a connected network, not a checklist. The mechanisms are settled enough to teach. The therapies are not settled enough to trust. Knowing which is which is the job of this track.

Key terms

Nutrient sensing
The set of pathways (insulin and IGF-1, mTOR, AMPK, sirtuins) that read a cell's energy and food state and steer it between growth and maintenance.
Sirtuins
A family of enzymes that require NAD+ to work, so they switch on when energy is low and NAD+ is high, promoting repair and stress defense (a fasting-side sensor).
Reactive oxygen species (ROS)
Oxygen-derived reactive molecules. Some are radicals carrying an unpaired electron (superoxide, the hydroxyl radical) and some are not (hydrogen peroxide). All react readily, causing damage at high levels and carrying signals at low levels.
Hormesis
The principle that a small, transient stress makes a system adapt and become more robust, so the dose makes the medicine (mitohormesis is the ROS version).
Cellular senescence
A permanent exit from the cell cycle in which a cell stops dividing but stays alive and resists apoptosis, first a brake against cancer, then a burden as the cells accumulate.
SASP
The senescence-associated secretory phenotype, the inflammatory cocktail of cytokines, proteases, and growth factors that senescent cells secrete to damage and senesce their neighbors.
Senolytic
A drug that aims to selectively kill senescent cells while sparing healthy ones, promising in mice and in early human trials.

Check yourself

1. Which pair of sensors pushes the cell toward the fasted, maintenance side of the nutrient-sensing seesaw?

2. Large human trials of antioxidant supplements mostly failed to slow aging, and beta-carotene even raised lung cancer in smokers. What is the deepest reason the simple ROS is pure damage model was wrong?

3. You find a cell that will not divide no matter how much growth factor you add, resists the apoptosis kill signal, and secretes a stream of inflammatory cytokines that inflame its neighbors. What is it?

4. Why does mitochondrial dysfunction tend to worsen itself over time?

4 unanswered