The East African Rift Valley is one of the most dramatic geological features on Earth. Right now, the African continent is being torn in two along a 6,000-km crack that runs from the Red Sea through Ethiopia, Kenya, Tanzania, and Mozambique.
In about 10 million years, East Africa will separate from the rest of the continent, creating a new ocean.
The question: What force is powerful enough to rip a continent apart? The answer lies deep beneath our feet.
riftData = [ {location:"Red Sea (already open)",width:350,rate:15,stage:"Ocean forming",color:"#0984e3"}, {location:"Afar Triangle (Ethiopia)",width:50,rate:20,stage:"Active rifting",color:"#d63031"}, {location:"Main Ethiopian Rift",width:80,rate:6,stage:"Active rifting",color:"#e17055"}, {location:"Kenya Rift (Lake Turkana)",width:60,rate:4,stage:"Active rifting",color:"#e17055"}, {location:"Tanzania (Lake Tanganyika)",width:50,rate:2,stage:"Early rifting",color:"#f39c12"}, {location:"Mozambique",width:30,rate:1,stage:"Early rifting",color:"#fdcb6e"}]Plot.plot({title:"East African Rift: Spreading Rate (mm/year)",subtitle:"The rift is fastest in the north where it's oldest — the Red Sea is already an ocean!",width:700,height:300,marginLeft:220,x: {label:"Spreading rate (mm/year)",grid:true},y: {label:null},marks: [ Plot.barX(riftData, {x:"rate",y:"location",fill:"color",rx:8,tip:true}), Plot.text(riftData, {x:"rate",y:"location",text: d =>`${d.rate} mm/yr — ${d.stage}`,dx:15,fontSize:11,fontWeight:"bold" }) ]})
18.1.1 📝 Engage Questions
What process below Earth’s surface could produce enough force to split a continent?
Why is the rift wider and faster in the north than the south?
Where do you think the heat and energy come from?
19 🔍 Explore — Convection
19.1 The Engine Inside Earth: Convection
When you heat a pot of water on a stove, the water at the bottom gets hot, becomes less dense, and rises. At the top, it cools, becomes denser, and sinks. This circular flow is called convection, and it’s the same process that drives plate tectonics.
19.2 How Convection Works
Code
{const svg = d3.create("svg").attr("width",700).attr("height",400).attr("viewBox","0 0 700 400"); svg.append("text").attr("x",350).attr("y",25).attr("text-anchor","middle").attr("font-size",18).attr("font-weight","bold").text("Mantle Convection Drives Plate Tectonics");// Mantle svg.append("rect").attr("x",50).attr("y",50).attr("width",600).attr("height",280).attr("rx",5).attr("fill","#e17055").attr("opacity",0.2);// Convection cellsconst drawCell = (cx, cy, r) => {// Rising (hot) svg.append("line").attr("x1", cx).attr("y1", cy + r).attr("x2", cx).attr("y2", cy - r).attr("stroke","#d63031").attr("stroke-width",3).attr("marker-end","url(#arrowRed)");// Spreading at top svg.append("line").attr("x1", cx).attr("y1", cy - r).attr("x2", cx + r *0.8).attr("y2", cy - r +10).attr("stroke","#e17055").attr("stroke-width",2).attr("marker-end","url(#arrowOrange)"); svg.append("line").attr("x1", cx).attr("y1", cy - r).attr("x2", cx - r *0.8).attr("y2", cy - r +10).attr("stroke","#e17055").attr("stroke-width",2).attr("marker-end","url(#arrowOrange)");// Sinking (cool) svg.append("line").attr("x1", cx + r *0.8).attr("y1", cy - r +20).attr("x2", cx + r *0.8).attr("y2", cy + r -10).attr("stroke","#0984e3").attr("stroke-width",3).attr("marker-end","url(#arrowBlue)"); svg.append("line").attr("x1", cx - r *0.8).attr("y1", cy - r +20).attr("x2", cx - r *0.8).attr("y2", cy + r -10).attr("stroke","#0984e3").attr("stroke-width",3).attr("marker-end","url(#arrowBlue)"); };// Arrow markersconst defs = svg.append("defs"); ["Red","Blue","Orange"].forEach((color, i) => {const fills = ["#d63031","#0984e3","#e17055"]; defs.append("marker").attr("id",`arrow${color}`).attr("viewBox","0 0 10 10").attr("refX",5).attr("refY",5).attr("markerWidth",6).attr("markerHeight",6).attr("orient","auto-start-reverse").append("path").attr("d","M 0 0 L 10 5 L 0 10 z").attr("fill", fills[i]); });drawCell(200,200,100);drawCell(500,200,100);// Labels svg.append("text").attr("x",200).attr("y",200).attr("text-anchor","middle").attr("font-size",12).attr("font-weight","bold").attr("fill","#d63031").text("🔥 Hot rock"); svg.append("text").attr("x",200).attr("y",215).attr("text-anchor","middle").attr("font-size",11).attr("fill","#d63031").text("RISES"); svg.append("text").attr("x",500).attr("y",200).attr("text-anchor","middle").attr("font-size",12).attr("font-weight","bold").attr("fill","#d63031").text("🔥 Hot rock"); svg.append("text").attr("x",500).attr("y",215).attr("text-anchor","middle").attr("font-size",11).attr("fill","#d63031").text("RISES");// Plate representations on top svg.append("rect").attr("x",50).attr("y",50).attr("width",290).attr("height",30).attr("fill","#636e72").attr("opacity",0.7); svg.append("rect").attr("x",360).attr("y",50).attr("width",290).attr("height",30).attr("fill","#636e72").attr("opacity",0.7); svg.append("text").attr("x",195).attr("y",70).attr("text-anchor","middle").attr("font-size",11).attr("fill","white").attr("font-weight","bold").text("← Plate A"); svg.append("text").attr("x",505).attr("y",70).attr("text-anchor","middle").attr("font-size",11).attr("fill","white").attr("font-weight","bold").text("Plate B →");// Divergent boundary svg.append("text").attr("x",350).attr("y",55).attr("text-anchor","middle").attr("font-size",20).text("🌋"); svg.append("text").attr("x",350).attr("y",45).attr("text-anchor","middle").attr("font-size",10).attr("font-weight","bold").attr("fill","#d63031").text("Ridge");// Core at bottom svg.append("rect").attr("x",50).attr("y",330).attr("width",600).attr("height",50).attr("rx",5).attr("fill","#f39c12").attr("opacity",0.4); svg.append("text").attr("x",350).attr("y",360).attr("text-anchor","middle").attr("font-size",13).attr("font-weight","bold").attr("fill","#f39c12").text("🔥 Hot Core — Heat Source");return svg.node();}
19.2.1 💡 Mantle Convection
The mantle isn’t liquid — it’s solid rock. But over millions of years, it flows like a very thick fluid (think: glacial ice or silly putty). This slow convection:
Hot rock rises from near the core (less dense when hot)
Spreads laterally beneath the lithosphere, dragging plates along
Cools at the surface and becomes denser
Sinks back down at subduction zones
Repeat — a convection cycle takes ~100-200 million years
20 💡 Explain — Earth’s Heat Sources
20.1 Where Does All the Heat Come From?
Earth’s interior produces about 47 terawatts of heat (47 × 10¹² watts). That’s like 3 million nuclear power plants running continuously. Where does it all come from?
Code
heatSources = [ {source:"Radioactive decay\n(U, Th, K)",percent:50,power:24,color:"#d63031",desc:"Uranium-238, Thorium-232, and Potassium-40 decay, releasing heat"}, {source:"Primordial heat\n(leftover from formation)",percent:40,power:19,color:"#f39c12",desc:"Heat from gravitational collapse and giant impacts during Earth's formation"}, {source:"Core crystallization\n(latent heat)",percent:10,power:5,color:"#fdcb6e",desc:"As liquid iron crystallizes onto the solid inner core, it releases heat"}]Plot.plot({title:"Sources of Earth's Internal Heat (~47 TW total)",subtitle:"Radioactive decay and primordial heat keep Earth alive",width:650,height:250,marginLeft:200,x: {label:"Contribution (%)",grid:true,domain: [0,60]},y: {label:null},marks: [ Plot.barX(heatSources, {x:"percent",y:"source",fill:"color",rx:8,tip:true}), Plot.text(heatSources, {x:"percent",y:"source",text: d =>`${d.percent}% (${d.power} TW)`,dx:20,fontSize:12,fontWeight:"bold" }) ]})
{const h = heatSources.find(s => s.source.replace("\n"," ") === heatSource);const div = d3.create("div").style("padding","15px").style("border-radius","12px").style("background",`${h.color}15`).style("border-left",`5px solid ${h.color}`); div.append("h4").style("margin-top","0").style("color", h.color).text(h.source.replace("\n"," ")); div.append("p").text(h.desc); div.append("p").html(`<strong>Power output:</strong> ${h.power} terawatts (${h.percent}% of total)`);return div.node();}
🧠 Without radioactive decay, Earth’s interior would have cooled billions of years ago. Plate tectonics would have stopped. No volcanoes, no earthquakes, no magnetic field, no protection from solar wind. Earth would be a dead world — like Mars. We literally owe our existence to nuclear physics.
21 🔬 Elaborate — Resources and Risks
21.1 The Double-Edged Sword
Plate boundaries and volcanic regions are both extremely dangerous and extremely valuable. The same processes that cause devastating earthquakes also create the mineral deposits, fertile soils, and geothermal energy that human civilizations depend on.
21.2 Benefits of Living Near Plate Boundaries
Code
benefitsData = [ {benefit:"Geothermal energy",desc:"Iceland gets 87% of heating from geothermal",value:9,color:"#d63031"}, {benefit:"Fertile volcanic soil",desc:"Java (Indonesia) is one of most productive agricultural regions",value:8,color:"#2ecc71"}, {benefit:"Mineral deposits",desc:"Gold, copper, silver concentrate near volcanic zones",value:8,color:"#f39c12"}, {benefit:"Hot springs & tourism",desc:"Yellowstone, Rotorua (NZ), Blue Lagoon (Iceland)",value:6,color:"#0984e3"}, {benefit:"Diamonds",desc:"Brought to surface by deep volcanic pipes (kimberlites)",value:5,color:"#a29bfe"}, {benefit:"Obsidian & building stone",desc:"Volcanic rock used in construction for millennia",value:4,color:"#636e72"}]Plot.plot({title:"Benefits of Geological Activity",subtitle:"Tectonic forces create incredible resources — but at a cost",width:700,height:300,marginLeft:200,x: {label:"Economic/Social Value (relative)",grid:true,domain: [0,10]},y: {label:null},marks: [ Plot.barX(benefitsData, {x:"value",y:"benefit",fill:"color",rx:8,sort: {y:"-x"},tip:true}), Plot.text(benefitsData, {x:"value",y:"benefit",text:"desc",dx:10,textAnchor:"start",fontSize:10 }) ]})
21.3 Risks vs. Benefits Comparison
Code
viewof selectedRegion = Inputs.select( ["Indonesia","Japan","Iceland","California","Italy"], {label:"Explore a region:"})
Code
{const regions = {"Indonesia": {boundary:"Convergent (subduction)",hazards: ["Explosive volcanoes (Krakatoa, Tambora)","M8+ earthquakes","Tsunamis (2004 Indian Ocean)","Lahars & pyroclastic flows"],benefits: ["Most fertile farmland in SE Asia","Rich mineral deposits (gold, copper)","Geothermal potential (27 GW)","Volcanic island tourism"],pop:"274 million people",verdict:"Extremely high risk AND reward — 17,500 islands on the Ring of Fire" },"Japan": {boundary:"Convergent (triple junction!)",hazards: ["M9 earthquakes (2011 Tōhoku)","Tsunamis","Volcanic eruptions (Mt. Fuji)","Nuclear risk (Fukushima)"],benefits: ["Geothermal energy (23 GW potential)","Hot springs (onsen culture)","Rich mineral deposits","Volcanic soil for agriculture"],pop:"125 million people",verdict:"Most seismically active developed nation — but advanced engineering saves lives" },"Iceland": {boundary:"Divergent (Mid-Atlantic Ridge)",hazards: ["Volcanic eruptions (Eyjafjallajökull 2010)","Glacial outburst floods (jökulhlaups)","Lava flows"],benefits: ["87% of heating from geothermal","100% renewable electricity","Tourism (Blue Lagoon, geysers)","Volcanic soil greenhouses"],pop:"380,000 people",verdict:"Best example of humans successfully harnessing tectonic energy" },"California": {boundary:"Transform (San Andreas Fault)",hazards: ["M7-8 earthquakes (1906, 1989, 1994)","Ground shaking & liquefaction","Landslides","Surface rupture"],benefits: ["Gold deposits (Gold Rush!)","Rich agricultural valleys","Oil & natural gas","Mediterranean climate from plate-driven topography"],pop:"39 million people",verdict:"Transform faults create fewer benefits than convergent — risk concentrated in major cities" },"Italy": {boundary:"Convergent (Africa pushing into Europe)",hazards: ["Volcanic eruptions (Vesuvius, Etna, Stromboli)","M6-7 earthquakes","Tsunamis","Landslides"],benefits: ["Volcanic soil for wine regions","Geothermal energy (Larderello)","Marble & building stone","Hot springs & tourism"],pop:"59 million people",verdict:"Vesuvius destroyed Pompeii in 79 CE — and 3 million people live in its shadow today" } };const r = regions[selectedRegion];const div = d3.create("div"); div.append("h3").style("color","#e17055").style("font-family","Space Grotesk").text(`${selectedRegion} — ${r.boundary}`); div.append("p").html(`<strong>Population at risk:</strong> ${r.pop}`);const grid = div.append("div").style("display","flex").style("gap","15px").style("flex-wrap","wrap");const riskCard = grid.append("div").style("flex","1").style("min-width","250px").style("background","#fff5f5").style("padding","15px").style("border-radius","10px").style("border-left","4px solid #d63031"); riskCard.append("h4").style("margin-top","0").style("color","#d63031").text("⚠️ Hazards");const ul1 = riskCard.append("ul"); r.hazards.forEach(h => ul1.append("li").text(h));const benCard = grid.append("div").style("flex","1").style("min-width","250px").style("background","#f0fff0").style("padding","15px").style("border-radius","10px").style("border-left","4px solid #2ecc71"); benCard.append("h4").style("margin-top","0").style("color","#2ecc71").text("✅ Benefits");const ul2 = benCard.append("ul"); r.benefits.forEach(b => ul2.append("li").text(b)); div.append("div").style("background","#ffecd2").style("padding","12px").style("border-radius","8px").style("border-left","4px solid #e17055").style("margin-top","10px").html(`<strong>Bottom line:</strong> ${r.verdict}`);return div.node();}
21.3.1 💡 Why People Live in Danger Zones
About 500 million people live within potential exposure range of active volcanoes. Why?
Volcanic soil is incredibly fertile — ash breaks down into nutrient-rich soil
Mineral wealth concentrates near tectonic boundaries
Geothermal energy is cheap and abundant
Historical roots — civilizations were founded in these areas thousands of years ago
Short memory — major eruptions may be centuries apart; people forget
The challenge isn’t avoiding plate boundaries — it’s learning to live safely near them.
22 ✅ Evaluate
22.1 Connecting Energy, Matter, and Motion
22.1.1 🧪 Evaluate Questions
Model how convection in the mantle drives plate tectonics. Include:
Heat source
Rising and sinking material
How this creates plate motion at the surface
The role of density in the process
Explain the three sources of Earth’s internal heat. Which is most important and why?
Argue whether the benefits of living near a plate boundary outweigh the risks. Choose a specific region and use evidence.
Predict what would happen to Earth’s surface processes if:
All radioactive elements decayed completely
The core fully solidified
Mantle convection stopped
Connect the Great Rift Valley to the convection model. What’s happening in the mantle beneath East Africa?
22.1.2 📝 Final Model Update
Update your model one last time before the performance task:
Your model should now explain the complete chain: Heat source → convection → plate motion → surface features → natural hazards
Include all three types of plate boundaries and what happens at each
Explain why Krakatoa was so explosive (convergent boundary + subduction + water)
How do Earth’s internal processes create both hazards and resources?