Daylila
How computers actually work

Lesson 13 of 13

Capstone: reading a spec sheet

Decode a real-style computer or chip headline — '3 nm, 8-core, 16 GB, 1 TB SSD' — using everything the course taught, and judge what's worth paying for.

01 · Learn · the idea

A laptop ad slides past you: “3 nm chip · 8-core · 3.5 GHz · 16 GB RAM · 1 TB SSD.” Once that line was weather — a wall of numbers you endured, then asked someone which to trust. You are about to read it cold, and read it right. Every term rests on something this course taught you, from the switch up. Let’s decode each one, and — the part that saves money — work out which matter for you and which are there to dazzle.

3 nm — how small the switches are

A computer is built from switches (item 1). “3 nm” — three nanometres, billionths of a metre — is roughly how small each switch is (item 12). Smaller switches let you pack more onto the same sliver of silicon, so the chip can do more at once.

So smaller is better — up to a point, with two honest caveats. First, the “nm” number is now partly a marketing label; different makers count it differently. Second, the wall is real (item 12): switches are closing in on a handful of atoms, and the heat of billions packed tight is a hard limit. The jump from 10 nm to 3 nm feels smaller than the number suggests. For most buyers, nm is the least useful number on the sheet.

8-core — how many processors there are

Item 7 built the processor: the part that fetches, decodes, and executes instructions, one after another. “8-core” means eight of those processors on one chip (item 12). Eight workers instead of one.

Here is the trap. Eight cores does not mean eight times faster. It helps in two cases: running many programs at once, and single programs written to split their work across cores. But plenty of everyday tasks can’t be divided — opening a document, loading one web page — and those run on a single core no matter how many you bought. More cores than your work can use is paying for idle workers.

3.5 GHz — how fast each cycle ticks

Clock speed (item 7). 3.5 GHz means 3.5 billion fetch-decode-execute cycles every second — 3.5 billion tiny ticks. Higher GHz, more ticks, faster work. Straightforward.

Except item 11 complicated it on purpose. A processor does nothing useful on ticks where it’s waiting for data from memory. If your task is stuck waiting on slow memory — “memory-bound” — a faster clock just twiddles its thumbs faster. GHz is the whole story only when memory is keeping up.

16 GB RAM — how much working memory there is

RAM is the machine’s working desk (items 2, 6, 11): the bits it’s using right now. “16 GB” is how big that desk is — about 16 billion bytes (item 2). For most people, this is the number that decides whether a machine feels fast or slow.

Why this one and not GHz? Item 11. When the desk fills, the machine shoves the overflow onto the slow disk and keeps fetching it back. Everything crawls. More RAM means a bigger desk, so less crawling — up to the point your work fits. Past that, more RAM does almost nothing. Going from too-little RAM to enough is usually the best-value upgrade on the sheet.

1 TB SSD — how much you can keep

Storage (items 2, 11): the filing cabinet that holds your files when the machine is off. “1 TB” is a trillion bytes — how much you can keep. “SSD” (solid-state drive) is the kind: vastly faster than the old spinning hard disks, which is why a modern machine boots in seconds.

Read the two parts separately. The “SSD” part matters a lot — over a spinning disk, it’s night-and-day in how snappy the machine feels. The “1 TB” part is only how much you can keep, not how fast anything runs. A bigger number here buys room for photos, not speed.

A worked example: choosing for a real person

Meet Sara. She writes documents, keeps about forty browser tabs open, and stores a few years of family photos. She never edits video, never plays demanding games. Two laptops sit in front of her.

The flashy one: 3 nm, 8-core, 4.0 GHz, 8 GB RAM, 256 GB SSD. The boring one: 5 nm, 4-core, 3.0 GHz, 16 GB RAM, 1 TB SSD. The flashy one wins every headline number. Sara should buy the boring one.

Walk it. Her forty tabs are the heaviest thing she does, and tabs live in RAM — 8 GB fills, spills to disk, crawls (item 11); 16 GB holds them. Her photos need room: 256 GB fills fast, 1 TB doesn’t. Both have an SSD, so both boot fast. The extra four cores? Her work can’t split across them — idle. The higher GHz? She’s memory-bound on those tabs, so a faster clock waits faster (item 11). The smaller nm? She’ll never feel it. Every number the flashy machine wins is one Sara can’t use; every number the boring machine wins is one she leans on daily. The plainer laptop is the better machine for her — and now you can say exactly why.

The whole sheet, and the humbler reading

That is the payoff of the climb: a spec sheet is no longer weather. It’s a short sentence you can read term by term, each one resting on something you understand from the switch up. And the real lesson isn’t a shopping rule — it’s a posture. A bigger number is not automatically better. What matters is the bottleneck for your use (item 11) and whether your software can use what you’re buying (item 12). Knowing the machine is a tower of simple ideas should leave you a little less dazzled — slower to be sold by one impressive figure, readier to ask “what’s the bottleneck, and will I even use this?” That question doesn’t stop at the laptop. Anything sold on a single big number — a car’s top speed, a camera’s megapixels, a plan’s headline rate — deserves the same calm, decoded look.

02 · Try · the lab

03 · Check · quick quiz

1. A laptop slows to a crawl whenever you open many browser tabs at once, but runs fine with just a few. Which upgrade is most likely to fix it?

  • A higher clock speed (more GHz)
  • More RAM
  • A chip with smaller transistors (fewer nm)
  • A bigger SSD
Answer

More RAM — Tabs live in RAM. When the desk fills, the machine spills the overflow to the slow disk and crawls (item 11). More RAM holds the tabs without spilling — usually the best-value fix. A faster clock or smaller chip doesn't help when the bottleneck is too little working memory; a bigger SSD adds room, not speed.

2. A spec sheet lists '8-core'. Does that mean the machine is eight times faster than a 1-core machine at everything?

  • Yes — eight cores means eight times the speed across the board
  • No — extra cores only help with many tasks at once or software written to split its work; tasks that can't be divided still run on one core
  • Yes, but only for opening single web pages
  • No — cores have nothing to do with speed, only with storage
Answer

No — extra cores only help with many tasks at once or software written to split its work; tasks that can't be divided still run on one core — Eight cores is eight processors (items 7, 12), but plenty of everyday tasks can't be split across them, so they run on a single core no matter how many you bought. More cores than your work can use is paying for idle workers.

3. GHz measures how fast a processor's clock ticks — billions of fetch-decode-execute cycles a second. When does a higher GHz NOT actually speed up your work?

  • When the file is stored on an SSD instead of a hard disk
  • When the processor is stuck waiting on slow memory — the extra ticks just wait faster
  • When the chip has more than four cores
  • GHz always speeds up work, with no exceptions
Answer

When the processor is stuck waiting on slow memory — the extra ticks just wait faster — A tick where the processor is waiting for data from memory does no useful work (items 7, 11). If your task is memory-bound, a faster clock just twiddles its thumbs faster. GHz is the whole story only when memory is keeping up.

4. Two laptops, same price. One: 3 nm, 8-core, 4.0 GHz, 8 GB RAM, 256 GB SSD. The other: 5 nm, 4-core, 3.0 GHz, 16 GB RAM, 1 TB SSD. You write documents, keep 40 tabs open, and store years of photos. Which is the better machine for you?

  • The first — it wins more of the headline numbers
  • The second — its RAM holds your tabs and its storage holds your photos, and the first machine's extra cores, higher clock, and smaller chip are all things your work can't use
  • They're identical for your use
  • The first — a smaller nm always means a faster machine
Answer

The second — its RAM holds your tabs and its storage holds your photos, and the first machine's extra cores, higher clock, and smaller chip are all things your work can't use — A bigger number isn't automatically better; what matters is the bottleneck for your use (item 11) and whether your software can use what you buy (item 12). Your tabs need RAM and your photos need storage, so the second wins where it counts — while the first's flashier specs are ones you'd never feel.