⏱️ Lectura: 11 min
A cotton bag needs 173 reuses to consume less total energy than a single-use plastic bag. The calculation doesn’t come from an activist blog, but from the UK’s Environment Agency, the public body that regulates environmental management in that country.
📑 En este artículo
The figure appears in “Just bury your trash,” an article by Alex Chalmers and Rob Wiblin published in Works in Progress that reviews, product by product, whether replacing disposables with reusables actually saves energy. The answer, once the numbers are on the table, is far less obvious than what any school recycling campaign teaches.
TL;DR
- A cotton bag needs 173 reuses to consume less energy than a plastic bag, according to the UK’s Environment Agency.
- Manufacturing an 8-gram plastic bag consumes about 0.6 megajoules; a 200-gram cotton bag consumes 1,725 megajoules, about 3,050 times more.
- A steel straw needs 150 reuses to offset its 10 grams of metal against the 0.2 grams of a plastic straw, without even counting the hot water used to wash it.
- A ceramic mug only surpasses a polystyrene cup in energy efficiency after 1,000 uses, and only with an efficient dishwasher.
- Recycling 1 kilogram of steel saves 1.4 kilograms of iron ore and uses 65% less energy than producing it from scratch.
- Recycled aluminum can save up to 95% of the energy compared to virgin aluminum: the big exception that does justify the blue bin.
- About 30% of the metal used in global steel production already comes from recycled scrap.
- A cloth diaper and a disposable one end up practically tied in total resource consumption once hot water, detergent, and washing are factored in.
What happened
Chalmers and Wiblin built their argument on life-cycle assessments (LCA) from public environmental agencies, not their own estimates. The question they asked is simple: when we replace a single-use product with a reusable one, at what point does it actually start saving energy? The answer depends entirely on how much energy it costs to manufacture each version, and that’s where common sense fails.
Producing a plastic bag is an almost trivial chemical process: polyethylene resin is blown and sealed, with an energy cost of just 0.6 megajoules per unit, roughly what an electric kettle uses to heat water for 40 seconds. A cotton bag, by contrast, weighs 200 grams versus 8 grams for a plastic bag, and requires spinning, weaving, preparing, drying, dyeing, and finishing the fabric: a process that consumes about 1,725 megajoules, according to the research cited in the original article.
Context and history
The idea that “reusable is always better” took hold with the anti-plastic campaigns of the last decade, which led dozens of cities to ban single-use bags. The implicit assumption is that materials are interchangeable: that one bag replaces another bag at no additional cost. But that assumption ignores the energy, labor, and inputs needed to produce the substitute.
The pattern repeats across almost every product where disposables were replaced with durable versions. A steel straw needs 10 grams of metal versus just 0.2 grams for a plastic straw. Even if it’s never washed (hot water also consumes energy), it would take 150 reuses for the steel straw to use fewer resources than a fresh plastic one each time. A ceramic mug only beats a polystyrene cup after 1,000 uses, and only if the dishwasher is reasonably efficient: with a less efficient one, the disposable cup always wins on energy. Cloth diapers, once you add up the cotton, washing, hot water, and detergent, end up practically tied with disposables in total resource demand, according to the UK’s own Environment Agency.
Key point: the mistake isn’t recycling or reusing itself, but assuming that all materials are equal. Producing from scratch and producing with recycled material have very different energy costs depending on the material.
Technical details and performance
The table below summarizes the break-even points documented in the original research for different pairs of disposable and reusable products.
| Disposable product | Reusable alternative | Reuses needed to break even on energy |
|---|---|---|
| Plastic bag (8 g, ~0.6 MJ) | Cotton bag (200 g, ~1,725 MJ) | 173 reuses |
| Plastic straw (0.2 g) | Steel straw (10 g) | 150 reuses (not counting washing) |
| Polystyrene cup | Ceramic mug | 1,000 uses, with an efficient dishwasher |
| Polyethylene milk carton | Returnable glass bottle | 10 or more trips |
| Disposable diaper | Cloth diaper | practically tied in total resources |
With metals, the calculation changes completely. Recycling 1 kilogram of steel saves 1.4 kilograms of iron ore and uses 65% less energy than manufacturing it from scratch, because producing virgin metal requires an extremely energy-intensive chemical reduction of ore, while recycling only involves remelting metal that’s already in its elemental state. For aluminum, the energy savings from recycling can reach 95%. It’s no coincidence that about 30% of the metal used today in global steel production comes from recycled scrap: the market already does that math without anyone forcing it to.
The opposite case is paper and glass. The silicon that makes up glass is one of the most abundant elements in the Earth’s crust, and paper can be replenished by planting more trees, which also captures carbon. In the United States, plastic is manufactured from ethane extracted from natural gas: one kilogram of that ethane, left in the gas stream and converted to electricity, could power a typical home for a few hours, or become 100 shopping bags. According to the cited research, the United States has proven shale gas reserves that would last nearly a century at the current extraction rate.
flowchart TD
A["Waste generated"] --> B{"Efficiently recyclable material?"}
B -->|"Yes: metals"| C["Recycling: -65% to -95% energy"]
B -->|"No: plastic, glass, common paper"| D["Controlled landfill"]
C --> E["New product"]
D --> F["Buried with leachate and gas control"]
How to test it: calculate your own break-even point
If you work with data or just want to verify the reasoning with your own numbers, the calculation is a function of just a few lines. This version accumulates the disposable product’s energy use by use until it exceeds the energy of manufacturing the reusable one.
def punto_equilibrio(energia_descartable_mj, energia_reutilizable_mj):
"""Returns how many uses the reusable item needs to consume less total energy."""
usos = 0
acumulado = 0.0
while acumulado < energia_reutilizable_mj:
usos += 1
acumulado += energia_descartable_mj
return usos
# using the manufacturing data cited in the original research
print(punto_equilibrio(0.6, 1725))
That calculation, based only on manufacturing energy, gives a break-even point of about 2,875 uses, considerably higher than the 173 times calculated by the Environment Agency. The difference matters: the British agency doesn’t just measure production energy, it also accounts for transport, water, and end-of-life in its full life-cycle analysis. It’s a good reminder that the exact number depends on which variables are measured, not just manufacturing energy.
To turn the function into a reusable tool from the terminal, it’s enough to wrap it in a minimal CLI with argparse:
import argparse
def punto_equilibrio(energia_descartable_mj, energia_reutilizable_mj):
usos = 0
acumulado = 0.0
while acumulado < energia_reutilizable_mj:
usos += 1
acumulado += energia_descartable_mj
return usos
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Calculates the energy break-even point between a disposable product and a reusable one")
parser.add_argument("--descartable", type=float, required=True, help="manufacturing energy of the disposable product, in MJ")
parser.add_argument("--reutilizable", type=float, required=True, help="manufacturing energy of the reusable product, in MJ")
args = parser.parse_args()
print(punto_equilibrio(args.descartable, args.reutilizable))
To run it, save the file as equilibrio.py and execute according to your operating system:
- Windows (PowerShell):
python equilibrio.py --descartable 0.6 --reutilizable 1725 - macOS:
python3 equilibrio.py --descartable 0.6 --reutilizable 1725 - Linux:
python3 equilibrio.py --descartable 0.6 --reutilizable 1725
The result, 2,875, confirms the order of magnitude of the original article and makes clear why it’s worth being skeptical of any sustainability figure that doesn’t explain exactly what was measured.
Impact and analysis
The practical consequence isn’t “stop recycling,” but stop treating all materials the same. For metals like steel, copper, nickel, and lithium, recycling does make economic and energy sense: they’re expensive materials to extract and refine from scratch, with minimal quality loss across successive reuses. Global production already recognizes this without needing campaigns: about 30% of the world’s steel comes from scrap. The copper, cobalt, lithium, and nickel used in batteries and electronics follow the same logic, compounded by the fact that their extraction is geographically concentrated, which gives countries without their own reserves an extra incentive to recycle and reduce their dependence on imports.
For plastic, glass, and common paper, the logic is the opposite. There’s no real risk of running out of raw material (glass silicon is abundant, paper can be replenished by planting trees, plastic ethane is available thanks to decades of gas reserves), and the energy cost of manufacturing the reusable version usually far exceeds that of manufacturing the disposable version multiple times over. In those cases, a well-designed landfill, with leachate control and methane gas capture, ends up being the cheapest and most environmentally reasonable option.
Heads up: this logic doesn’t apply equally in every country. Where waste management is poor and landfills lack leachate control or gas capture, burying trash without regulation is indeed more polluting than recycling. The argument depends on the landfill being well built.
What’s next
The article itself opens a question it doesn’t fully resolve: if much of what we recycle today (plastic, glass, some papers) doesn’t clearly save energy, the public conversation about recycling will have to shift from “recycling is always good” to “which material, under what conditions.” That means more public, verifiable life-cycle studies by country, something that’s currently scarce outside the UK and Denmark. It also means that waste management policies in Latin America, where formal recycling infrastructure is more limited than in Europe, could directly prioritize well-built landfills for materials with low recycling value, and reserve recycling infrastructure for metals.
📖 Summary on Telegram: View summary
Before assuming your cloth bag is the right choice, run the calculator above with the real data for your product and compare it against the original article in Works in Progress.
Frequently Asked Questions
Does recycling plastic actually do any good?
It depends on the type of plastic and whether there’s a real market for that recycled material. The article’s argument isn’t that recycling plastic is useless, but that producing reusable alternatives from scratch can cost more energy than it saves, especially if those alternatives aren’t used hundreds of times.
Which materials are always worth recycling?
Metals: steel, aluminum, copper, nickel. They can be remelted with almost no quality loss, and the energy savings compared to producing them from scratch reach up to 95% in the case of aluminum.
Why can a cloth bag be worse than a plastic one?
Because manufacturing it consumes far more energy per unit (about 3,050 times more, according to the megajoule comparison cited in the article), and most cloth bags never reach the hundreds of uses needed to offset that initial difference.
Does a landfill pollute more than recycling?
A modern landfill, with a waterproof liner, leachate control, and methane gas capture, isn’t the “open-air dump” image that usually comes to mind. When a material doesn’t have an energy-efficient recycling path, burying it in a controlled way can be the most reasonable option.
What about paper and glass?
Both use abundant raw material (trees that can be replanted, silicon for glass), so the “we’re running out of materials” argument doesn’t apply the same way it does with scarce metals.
How do I know how much recycling actually helps where I live?
Check whether your municipality or country publishes a life-cycle assessment of its waste management system. Without that specific data, any claim about how much local recycling saves is an assumption, not a verified fact.
References
- Works in Progress: original article “Just bury your trash” by Alex Chalmers and Rob Wiblin, with the per-product energy figures used in this piece.
- Environment Agency (United Kingdom): public body that calculated the 173 reuses needed for a cotton bag to surpass a plastic one in energy efficiency.
- Wikipedia: Life-cycle assessment: methodology used to compare the total energy impact of a product throughout its entire life cycle.
- Wikipedia: Recycling: general context on the recycling of metals, paper, and plastics.
📱 Enjoying this content? Follow @programacion on Telegram for daily tech content in Spanish: quick summaries, fresh content every day.
Imagen destacada: Foto de Brett Wharton en Unsplash
0 Comments