DOMAINS
A READING ROOM OF IDEAS REASONED ALOUD
The collection by broad domain.
Every explanation sits in one broad domain. The domain also supplies the first three letters of its shelfmark.
Computing, Data & AI
274- CDA·01A calibrated roleWhy does telling a system who to be change what it knows how to say?
- CDA·02A notification you did not ask forWhen something arrives unrequested claiming to come from a service you trust, how can you tell?
- CDA·03A schema read by two audiencesHow can one declaration serve as a machine's validator and a reader's instructions at the same time?
- CDA·04A secret you never sendHow do you prove you know something without ever transmitting it?
- CDA·05A tree in a table of rowsHow do you store something with branches in a structure that only knows about rows?
- CDA·06A tree that rearranges itselfWhy must a structure that keeps things in order keep rebuilding its own shape?
- CDA·07A valid token in the wrong placeWhy is a token that passes every check still the wrong one to accept?
- CDA·08Adding a machine without moving the dataHow do you add one more server to a cluster without having to relocate almost everything?
- CDA·09Agreeing the shape before the substanceWhy settle the form of a conversation before either side is able to hold it?
- CDA·10Approximate nearest neighbour searchWhy does a search that deliberately settles for approximate answers beat one that checks every record?
- CDA·11Attention as a budgetHow does a model work out which earlier word a pronoun refers to?
- CDA·12Autonomy as a dialWhy is 'how much may it decide for itself' a setting rather than a yes-or-no question?
- CDA·13Backfilling a pipelineWhy is re-running yesterday's job harder than running today's?
- CDA·14BackpressureWhy does a system that never asks a fast producer to slow down end up slower than one that does?
- CDA·15Backward compatibilityWhy is the hardest part of changing a widely used interface the promise you made about the old one?
- CDA·16Batching and the throughput tradeWhy does serving more users at once make each individual one wait longer?
- CDA·17Benchmark saturationWhy does the model that tops the public leaderboard so often lose on your own task?
- CDA·18Blast radiusWhy is the important question about a compromised credential not what it unlocks but how far it reaches?
- CDA·19Bloom filtersWhy is a lookup structure that sometimes says yes when it means no more useful than one that is always right?
- CDA·20Bounded contextsWhy should the same word be allowed to mean different things in different parts of one system?
- CDA·21Branch predictionWhy can a processor finish work faster by guessing the outcome of a test before it knows the answer?
- CDA·22Build cache geometryWhy does swapping two lines in a build file change how long every future build takes?
- CDA·23Building somewhere you do not ship fromWhy assemble software in one environment and then throw that environment away?
- CDA·24Built never to be rebuiltWhy design a warehouse so that a new source never forces you to restructure the old ones?
- CDA·25BulkheadsWhy does deliberately wasting capacity keep one failing feature from taking down all the others?
- CDA·26CachingWhy does a computer keep a second copy of data it already has?
- CDA·27Caching an answer nobody asked for exactlyHow do you reuse a stored answer for a question that has never been asked in those words?
- CDA·28Capability negotiationWhy do two programs that have never met agree on what they can do instead of checking a version number?
- CDA·29Chain-of-thoughtWhy does asking a model to work step by step improve arithmetic it could already do?
- CDA·30Change data captureHow do you copy every change a database makes without asking the database for anything?
- CDA·31Chaos engineeringWhy deliberately break a working system that is already surviving?
- CDA·32Choosing an indicatorOf everything a service could measure, how do you pick the number that stands for the user's experience?
- CDA·33Choosing the first piece to replaceOf everything that needs rebuilding, how do you decide what goes first?
- CDA·34Choosing what to forgetWhen memory runs out, how do you decide what to discard without knowing what you will need next?
- CDA·35Choreography versus orchestrationShould each step know what comes next, or should one place know the whole plan?
- CDA·36ChunkingWhy does how you cut a document into pieces matter more than which search engine you use on them?
- CDA·37Circuit breakersWhy does refusing to even attempt a request help a struggling system recover?
- CDA·38Citation without verificationWhy does an answer that cites its source still need checking?
- CDA·39Clock synchronizationWhy can two computers never fully agree on the order in which two events happened?
- CDA·40Code that never runs, and code that runs once a yearHow do you tell the difference between a program that is dead and one that is merely rare?
- CDA·41Cold startsWhy is the first request to an idle service slow in a way the next thousand are not?
- CDA·42Collecting changes before committing themWhy gather up every edit and write them all at the end rather than as they happen?
- CDA·43Commands and eventsWhy does naming a message in the past tense change the shape of the whole system?
- CDA·44Compatibility has a directionWhy is 'compatible' meaningless until you say which side upgrades first?
- CDA·45Composition over inheritanceWhy did the feature invented to let programs reuse code become the one to avoid?
- CDA·46Confident model errorsWhy does a language model deliver an invented fact in exactly the tone it uses for a true one?
- CDA·47Configuration driftWhy does a machine nobody has touched slowly stop matching its own blueprint?
- CDA·48Congestion collapseWhy can a network carry less traffic in total the harder everyone tries to push data through it?
- CDA·49Connection exhaustion before CPUWhy does a service designed to scale infinitely take down the database before it works up a sweat?
- CDA·50Content delivery networksWhy does a copy of a file stored near you make a distant website feel local?
- CDA·51Context windowWhy does a model with no memory between messages appear to remember the whole conversation?
- CDA·52Continuity over a protocol with no memoryHow does a protocol that forgets you between every request keep you logged in?
- CDA·53Control as a classificationWhy sort what a server offers by who is allowed to invoke it rather than by what it does?
- CDA·54Control plane and data planeWhy can a platform keep serving traffic perfectly while being completely unable to change anything?
- CDA·55Copying something you can only questionHow do you reconstruct a system you are never allowed to look inside?
- CDA·56CORS in the webWhat is CORS?
- CDA·57Counting steps instead of timingWhy do computer scientists count imaginary steps rather than simply timing the program?
- CDA·58CouplingWhy can code with no repetition anywhere still be impossible to modify safely?
- CDA·59Data contractsWhy does a producer promising not to change a field make a whole platform faster to build on?
- CDA·60Data leakage pathsHow does private information escape a system that nobody attacked?
- CDA·61Data you keep is data you can loseWhy is holding on to information a liability rather than an asset?
- CDA·62Database transactionsHow can a database keep records consistent when many users change them at once?
- CDA·63Dead or just slow?Why can no machine ever tell a crashed neighbour apart from a slow one?
- CDA·64Deciding apart from enforcingWhy separate the thing that decides whether you may from the thing that stops you?
- CDA·65Declaring the destination, not the routeWhy is writing down what a system should look like more reliable than the commands to get it there?
- CDA·66Delegation without the passwordHow do you let one service act for you somewhere else without ever giving it your credentials?
- CDA·67Deliberately slow password checksWhy would a system be designed to check your password slowly, when speed is what everything else is tuned for?
- CDA·68Delimiters as a boundaryWhy does wrapping someone else's text in markers change how a system treats it?
- CDA·69Delivered versus retainedWhy does keeping a message after someone has read it change what the system can do?
- CDA·70DenormalizationWhy deliberately put back the duplication you spent so much effort removing?
- CDA·71Dependency conflictsWhy can upgrading one library break a program that never used it in the first place?
- CDA·72Dependency directionWhy should the part of a program that stores data depend on the part that makes decisions, and not the reverse?
- CDA·73Deploying more to break lessWhy do the teams that release most often have the fewest failed releases?
- CDA·74Design by contractWhy write down what a function refuses to accept rather than making it cope with anything?
- CDA·75Detecting a theft you cannot seeHow do you find out a credential was copied when the copy works exactly like the original?
- CDA·76Distributed consensusWhy can a group of perfectly healthy machines fail to agree on which of them is in charge?
- CDA·77Distributed tracingHow do you follow one user's request through forty services that each know only their own part?
- CDA·78Documentation that points at its evidenceWhy must generated documentation carry a pointer back to the line it came from?
- CDA·79Double descentWhy does adding still more parameters to an already overfitted model make its predictions better again?
- CDA·80Drawing the same model three timesWhy describe the same information over again at three different levels of detail?
- CDA·81Durable executionHow does a process survive the machine it was running on disappearing mid-step?
- CDA·82Embedding spaceHow can a search find the passage about getting money back when the document only ever says refund?
- CDA·83Error budgetsWhy does deciding in advance how much failure is acceptable make a team ship faster and break less?
- CDA·84Error-correcting codesHow can a receiver reconstruct a message even when some transmitted bits are corrupted?
- CDA·85Evaluating retrieval separatelyWhen an answer built from sources is wrong, how do you tell whether the finding or the writing failed?
- CDA·86Evaluation suitesWhy can you not tell whether a change improved an AI system by simply trying it?
- CDA·87Event sourcingWhy store every change that ever happened instead of just what is true now?
- CDA·88Event time versus arrival timeHow does a system that never stops receiving data decide it has seen enough to answer?
- CDA·89Eventual consistencyWhy is a system that is briefly wrong everywhere sometimes better than one that is always right in one place?
- CDA·90Exactly once is a property of the pipelineWhy can no single component promise that a message is handled exactly once?
- CDA·91Failing fastWhy should a program that notices something wrong stop immediately rather than carry on carefully?
- CDA·92False sharingWhy do two processor cores slow each other down when neither one ever touches the other's variable?
- CDA·93Feature flagsWhy ship code to production that you have deliberately arranged not to run?
- CDA·94Federated data ownershipWhy does a central team that owns everyone's data become the reason nobody's data is good?
- CDA·95Few-shot promptingWhy does showing a model three worked examples work better than describing the rule?
- CDA·96Fewer operations, slower programWhy does the structure that does less work often finish last?
- CDA·97File deletionWhy is deleting a file not the same as erasing what it contained?
- CDA·98Finding without searchingHow can a computer find one record among millions without examining any of the others?
- CDA·99Fine-tuning versus retrievalWhy does teaching a model your facts leave them stale, while teaching it your style does not?
- CDA·100Floating-point errorWhy can a computer calculate 0.1 + 0.2 without obtaining exactly 0.3?
- CDA·101Foundation model economicsWhy did building one model per task give way to adapting a single expensive one?
- CDA·102Garbage collection pausesWhy does a program that frees its own memory sometimes freeze at the worst moment?
- CDA·103Grade earned, not declaredWhy does calling a dataset trustworthy do nothing, while making it pass a test does?
- CDA·104Grokking in trainingWhy does a model that has already memorised its training data suddenly start generalising long afterwards?
- CDA·105GuardrailsWhy wrap a deterministic check around a model that was already trained to behave?
- CDA·106Half-sorted is enoughWhy can a structure that never fully sorts anything hand you the smallest item instantly?
- CDA·107Halting problemWhy can no program be written that reliably predicts whether another program will ever finish?
- CDA·108Halving the haystackWhy does throwing away half of what remains find one item among a billion in about thirty tries?
- CDA·109Hash table clusteringWhy does a hash table's lookup cost explode while most of its slots are still sitting empty?
- CDA·110Hot partitionsWhy does data split evenly across a hundred machines still overwhelm exactly one of them?
- CDA·111How does a neural network learn?How does a neural network learn?
- CDA·112How encryption keeps messages secretHow does encryption keep messages secret?
- CDA·113Hybrid searchWhy does combining a search that understands meaning with one that only matches words beat either alone?
- CDA·114Idempotent operationsWhy must an action that might be retried be designed for it rather than simply repeated?
- CDA·115ImmutabilityWhy does forbidding a value to change make code that runs in parallel correct by construction?
- CDA·116IndexingWhy does the thing that makes reading fast make writing slow?
- CDA·117Internet packet routingHow can data reach the right destination when no machine controls the entire internet?
- CDA·118Isolates, containers, and startup costWhy does making a sandbox weaker sometimes make the system safer to run at scale?
- CDA·119Isolation levelsHow can two transactions that are each correct combine into a result neither would produce alone?
- CDA·120Isolation without a machineHow can a program be walled off from everything else on a computer without a computer of its own?
- CDA·121Keeping the history and the snapshot in one fileHow can one log hold both every change ever made and just the current state?
- CDA·122Killed with memory to spareWhy does a program die for lack of memory on a machine that has plenty left?
- CDA·123Labelling before decidingWhy sort information by how sensitive it is before working out who should see it?
- CDA·124Late-arriving dataHow do you insert something that happened before events you have already recorded and reported on?
- CDA·125Layers are diffsWhy does adding a large file and then deleting it leave the result bigger than before?
- CDA·126Least astonishmentWhy is a correct interface that surprises the person using it a defect?
- CDA·127Letting callers ask for exactly what they wantWhy does giving callers precisely the data they request create a problem the rigid old way never had?
- CDA·128LineageWhen a number on a report is wrong, how do you find every other number that is now also wrong?
- CDA·129Logged into someone else's accountHow can an attacker harm you by making sure you are signed in rather than signed out?
- CDA·130Losing it or doing it twiceWhy must a system choose between occasionally dropping work and occasionally repeating it?
- CDA·131Lossless compressionHow can a file be made smaller with nothing at all thrown away?
- CDA·132Lost in the middleWhy does a model use the beginning and end of a long document more reliably than its middle?
- CDA·133Many agents, one taskWhy does splitting one capable worker into five specialists sometimes make the result worse?
- CDA·134Memory fragmentationWhy can a long-running program fail to allocate memory when far more than it asked for is free?
- CDA·135Memory thrashingWhy does a computer that is only slightly short of memory crawl to a halt rather than slowing a little?
- CDA·136Merge conflictsHow can many people edit the same thing at once without silently overwriting each other?
- CDA·137Merging oftenWhy do teams that merge their work several times a day spend less time merging than teams that do it monthly?
- CDA·138Metered costWhy is the bill for a pay-per-use system rarely dominated by the thing you thought you were paying for?
- CDA·139Metric cardinality explosionWhy can adding one harmless-looking label to a metric cost more than the service it measures?
- CDA·140Model collapseWhy does a model trained on the output of earlier models get steadily worse instead of compounding their skill?
- CDA·141Model driftWhy does a model that nobody changed get worse over time?
- CDA·142Model quantizationWhy does a model keep working after most of the precision in its numbers is discarded?
- CDA·143Model routingWhy send some questions to a weaker system on purpose?
- CDA·144Moving failure handling out of the programWhy take the code that copes with failure out of every application and place it alongside them instead?
- CDA·145Multimodal fusionHow can one model read a photograph and a sentence with the same machinery?
- CDA·146Nearest firstWhy does always exploring the closest place you have not yet visited find the shortest route to everywhere?
- CDA·147Next-token predictionWhy does a system trained only to guess the next word end up able to summarize, translate, and write code?
- CDA·148NormalizationWhy split one sensible-looking table into six that nobody would draw by hand?
- CDA·149Objects that do not know they are storedWhy keep the code that saves a thing away from the thing itself?
- CDA·150One improbable wordWhy can a single unlikely word early in an answer derail everything that follows it?
- CDA·151Opaque cursorsWhy must a pagination marker be meaningless to the client that carries it?
- CDA·152OrchestrationWhy is the model often the least important part of a working AI product?
- CDA·153Order from pairwise rulesHow do you put a thousand tasks in a workable order when all you know is which pairs must come first?
- CDA·154Order within a sliceWhy can a system promise to keep messages in order only within one part of itself?
- CDA·155Output as untrusted inputWhy must everything downstream treat a trusted system's own answer as though a stranger wrote it?
- CDA·156OverfittingWhy can a model that predicts its training data perfectly be useless on anything new?
- CDA·157Partition pruningWhy does how you arrange stored data matter more than how fast the machine reading it is?
- CDA·158Permission-aware retrievalWhy must a search system know who is asking before it decides what exists?
- CDA·159Planting the source it will citeHow do you make a system that only answers from documents confidently repeat a lie?
- CDA·160Point-in-time joinsHow do you match a record to the version of the truth that was current when it happened?
- CDA·161Poison messagesWhy does one message that can never be processed stop every message behind it?
- CDA·162Poisoning the wellHow can publishing something today change how a system behaves years from now?
- CDA·163Prefill and decodeWhy does a model charge more for the words it writes than for the words it reads?
- CDA·164Progress-bar estimatesWhy does a progress bar race to ninety percent and then crawl for the rest?
- CDA·165Prompt chainingWhy does splitting one hard instruction into four easy ones produce a better result than the single instruction?
- CDA·166Prompt injectionWhy can text a model was merely asked to read end up giving it orders?
- CDA·167Prompt sensitivityWhy does rewording a request without changing its meaning change the answer that comes back?
- CDA·168Protocol errors versus execution errorsWhy is an operation that correctly reports it failed not a failure of the protocol?
- CDA·169Provenance of what you deployHow do you know the thing running in production is the thing you built?
- CDA·170Proving you started the exchange you are finishingHow do you stop someone else from completing a login you began?
- CDA·171PseudorandomnessHow can a machine following completely fixed rules produce numbers nobody can predict?
- CDA·172Query plan estimationWhy can a database holding accurate statistics still pick a plan thousands of times slower than the obvious one?
- CDA·173QuorumsWhy is the agreement of a bare majority enough to call something decided?
- CDA·174Rapidly changing attributesWhy does an attribute that changes constantly have to be moved out of the table describing the thing it belongs to?
- CDA·175Rate limitingWhy does a service protect itself by turning away work it could have handled?
- CDA·176Re-identification of anonymized dataWhy can a dataset with every name removed still reveal exactly who is in it?
- CDA·177Recommendation narrowingWhy does a system built to show you what you like end up narrowing what you see?
- CDA·178Recording a change without losing the presentHow can a table show both what a customer's details are now and what they were when they ordered?
- CDA·179Recovering a schedule nobody wrote downHow do you reconstruct the order a nightly process runs in when no document describes it?
- CDA·180Recovering what the business meantHow do you work out what a rule was for when all that survives is the code that enforces it?
- CDA·181Recovery objectivesWhy does planning for disaster start with deciding how much data you are willing to lose?
- CDA·182Refinement stagesWhy copy the same data three times instead of cleaning it once on the way in?
- CDA·183Releasing to a few firstHow do you find out whether a change is safe for everyone without exposing everyone to it?
- CDA·184Remembering the sub-answersWhy does writing down answers you have already worked out turn an impossible calculation into an instant one?
- CDA·185Replacing a system you cannot turn offHow do you rebuild something while it continues to run every day without interruption?
- CDA·186Replay determinismWhy must code that will be re-run from the beginning be forbidden from asking what time it is?
- CDA·187Replication lagWhy can a system tell you something different one second after it told you it was saved?
- CDA·188Requests you did not makeHow can a site you are not even looking at act as you on one you are?
- CDA·189Retrieval-augmented generationWhy does handing a model the source document work better than training the document into it?
- CDA·190Retry stormsWhy does every client politely trying again turn a brief hiccup into an outage that will not end?
- CDA·191Roles as compressionWhy does a tidy set of roles turn, over years, into hundreds nobody can explain?
- CDA·192Rubber-stamped reviewWhy does a human reviewer who approves almost everything provide almost no safety?
- CDA·193Running both and comparingHow do you prove a replacement behaves like the original when nobody knows exactly what the original does?
- CDA·194SagasHow do you undo half a transaction that spanned five systems, none of which can roll back?
- CDA·195Scaling that overshootsWhy does a system that adds capacity by itself swing between far too much and far too little?
- CDA·196Search indexingHow can a search return results drawn from billions of pages in a fraction of a second?
- CDA·197Self-consistencyWhy does asking the same question five times and taking the most common answer beat asking once carefully?
- CDA·198Separating the read model from the write modelWhy describe the same information twice, once for changing it and once for reading it?
- CDA·199Service discoveryHow do programs find each other when the addresses they live at change every few minutes?
- CDA·200ShardingWhy does splitting data across machines make some previously trivial questions unanswerable?
- CDA·201Shuffling before sortingWhy does deliberately disordering data first make a sorting method dependable?
- CDA·202Signing out everywhereWhy is leaving harder than arriving?
- CDA·203Silent data corruptionWhy does keeping three copies of a file still not guarantee you can get the original back?
- CDA·204Six names for one fieldWhy does the same piece of information end up with six different names and six slightly different meanings?
- CDA·205Software agingWhy does a phone or laptop grow slower over years when not one component has physically changed?
- CDA·206Sorting more than fitsHow do you put a file in order when you cannot hold even a tenth of it at once?
- CDA·207Speculative decodingWhy can a large model produce its text faster when a smaller, less capable model writes the first draft?
- CDA·208Split-brainWhat happens when a system that must have exactly one leader briefly has two?
- CDA·209Splitting a system into servicesWhy does breaking one program into thirty make it slower, more fragile, and easier to run?
- CDA·210Surrogate keysWhy does a sales record point at a number that means nothing rather than at the customer's own identifier?
- CDA·211Synthetic versus real usersWhy does a test that runs perfectly every minute miss the failure your users are living through?
- CDA·212System prompt priorityWhy can instructions the user never sees outrank the ones they type, and why is that still not security?
- CDA·213Tags versus digestsWhy can the same name fetch two different things a week apart?
- CDA·214Tail latencyWhy does a service that answers almost every request instantly still feel slow to use?
- CDA·215Talked out of its own rulesWhy can a system trained to refuse be persuaded to agree?
- CDA·216Technical debtWhy does a shortcut that saves a day cost more every week it survives?
- CDA·217TemperatureWhy does making a model's word choice more random make it more useful for some jobs?
- CDA·218Testability as a design propertyWhy is code that is hard to test usually badly designed rather than just hard to test?
- CDA·219The agent loopWhy can a system that only writes text end up changing things in the world?
- CDA·220The audit record as the productWhen an automated system acts on your behalf, why is the log of what it did worth more than the result?
- CDA·221The blocking commitWhy can one coordinator crashing leave every other participant waiting indefinitely?
- CDA·222The CAP theoremWhy must a system spanning several machines give something up the moment the network between them breaks?
- CDA·223The distributed monolithWhy can a system split into services still have to be deployed all at once?
- CDA·224The first processWhy does a program that stops cleanly on your laptop refuse to stop inside a container?
- CDA·225The middleman that reduces connectionsWhy does adding something in the middle leave fewer links than before, not more?
- CDA·226The noisy neighbourWhy does every tenant using no more than their fair share still degrade the service for all of them?
- CDA·227The occasionally expensive operationWhy is an operation that sometimes has to copy everything still cheap on average?
- CDA·228The outboxHow do you save a record and send a message about it without either happening alone?
- CDA·229The paved roadWhy does making one route easy work better than forbidding all the others?
- CDA·230The price of being able to leaveWhy does keeping the freedom to change supplier often cost more than being tied to one?
- CDA·231The publisher that knows no subscribersHow does a system stay extendable by making the sender ignorant of who is listening?
- CDA·232The semantic layerWhy do two dashboards built from the same warehouse disagree about revenue?
- CDA·233The singleton regretWhy is the design pattern people learn first the one they later work hardest to remove?
- CDA·234The small files problemWhy does a query slow to a crawl when the data it reads is split into too many pieces?
- CDA·235The sorting floorWhy can no method that works by comparing pairs ever sort faster than a certain speed?
- CDA·236The test pyramidWhy do the tests that most resemble real use catch the fewest problems worth catching?
- CDA·237The untidy shape that answers fasterWhy does the arrangement that looks less orderly return answers more quickly?
- CDA·238Thinking budgetWhy can a model get a hard problem right by being given more time rather than more knowledge?
- CDA·239Three kinds of responsible personWhy does one dataset need someone who owns it, someone who tends it, and someone who merely holds it?
- CDA·240Three questions people treat as oneWhy are 'who are you', 'prove it', and 'may you' three separate problems?
- CDA·241Time to first tokenWhy do two answers that take exactly the same time feel instant and broken?
- CDA·242TokenizationWhy can a model that writes flawless prose fail to count the letters in a single word?
- CDA·243Tool calling boundaryWhy does a model that calls a tool never actually run it?
- CDA·244Tool granularityWhy does giving an assistant fewer, broader actions often beat giving it many precise ones?
- CDA·245Transactions on immutable storageHow can a store that only ever writes whole files support a transaction that can be rolled back?
- CDA·246Transformer parallelismWhy did reading every word of a sentence at once beat reading them in order?
- CDA·247Twenty-five acronyms, nine piecesWhy do dozens of competing frameworks for the same task turn out to be rearrangements of one short list?
- CDA·248Two stores for one truthWhy does the same data need one database to record it and a different one to answer questions about it?
- CDA·249Two systems, one recordHow can two systems both own the same record for a year without drifting apart?
- CDA·250Two-stage retrievalWhy fetch fifty candidates only to throw away forty-five of them with a slower method?
- CDA·251Undefined behaviourWhy can a program that ran correctly for years break the moment the compiler is asked to optimise it?
- CDA·252Unknown unknownsWhy can a system with every dashboard green still be failing in a way nobody thought to chart?
- CDA·253Vertical and horizontal scalingWhy does a point arrive where buying a bigger machine stops being an option at any price?
- CDA·254Warm reuse leaksWhy does a system that reuses its own leftovers to go faster start returning one user's data to another?
- CDA·255What a list of numbers remembersWhy can a row of numbers made from a sentence be turned back into the sentence?
- CDA·256What an assistant should forgetHow does a system remember you usefully without accumulating everything you ever said?
- CDA·257What one row stands forWhy is the first question to ask about a table what a single row of it actually represents?
- CDA·258When removing duplication hurtsWhy does merging two identical pieces of code sometimes make a system harder to change?
- CDA·259When responsibility transfersAt what exact moment does a message stop being the sender's problem?
- CDA·260When the best step now is safeWhen is taking whatever looks best at this moment guaranteed to end up best overall?
- CDA·261Where a fact lives in a modelIf a model holds no table of facts, where is anything it knows actually stored?
- CDA·262Where the time actually goesWhy is most of the time a piece of work takes not spent working on it?
- CDA·263Where the transform sitsWhy did loading raw data first and cleaning it later become the better order?
- CDA·264Which record is the real oneWhen four systems each hold a different address for the same person, how do you decide which is true?
- CDA·265Why a code sent to your phone does not stop phishingWhy does a second factor still let an attacker who built a convincing fake page straight in?
- CDA·266Why adding a worker stops the othersWhy does bringing another consumer online briefly halt every consumer already running?
- CDA·267Why the average recovery time liesWhy is the mean time to recover almost never the time it takes to recover?
- CDA·268Words stored by their beginningsHow can looking up a word take the same time whether the dictionary holds a thousand entries or a billion?
- CDA·269Wrapping without changingHow do you add behaviour to something without altering it or anything that calls it?
- CDA·270Write amplificationWhy does saving a few kilobytes to a solid-state drive sometimes force it to rewrite far more than that?
- CDA·271Writing down what you could not determineWhy is a record of the questions you failed to answer worth as much as the answers?
- CDA·272Writing the test firstWhy write a test for code that does not exist yet?
- CDA·273Wrong with nothing missingWhat does it mean for data to be wrong when every field is filled in and every rule passes?
- CDA·274You cannot un-issue a signatureWhy is it so hard to withdraw permission you have already granted in writing?
Work, Careers & Skilled Trades
44- WRK·01Air balancingWhy must a newly installed ventilation system be deliberately choked back at the dampers when every duct was sized correctly?
- WRK·02Alert fatigueWhy does adding more alerts to catch more problems make outages last longer?
- WRK·03BacklashWhy does a machinist wind a handwheel past the mark and creep back to it rather than stopping on it?
- WRK·04Balanced veneerWhy does a cabinetmaker glue an expensive sheet of veneer onto the hidden back of a panel nobody will ever see?
- WRK·05Bend allowanceWhy is the flat blank cut shorter than the sum of the sides it will be folded into?
- WRK·06Blameless reviewWhy does holding someone accountable for an outage make the next one more likely?
- WRK·07Ceremony as a smellWhen does a practice adopted to help a team become the thing slowing it down?
- WRK·08Coordination costWhy does adding people to a project that is already late often make it later?
- WRK·09Crane signallingWhy does a crane crew let only one person give signals, yet allow anyone at all to call a stop?
- WRK·10Deliberate practiceWhy do some people keep improving at a craft for decades while others stop improving after a year?
- WRK·11Drain fallWhy does a waste pipe laid steeply downhill block more often than one laid almost level?
- WRK·12Experienced-worker injuriesWhy do the most experienced workers get hurt doing things a beginner would never risk?
- WRK·13Failure after repairWhy is a machine often most likely to break just after it has been serviced?
- WRK·14Floating panelsWhy does a joiner leave the panel of a door sitting loose in its frame instead of gluing it fast?
- WRK·15Lead in short lengthsWhy does a roofer cut flashing into short pieces when one continuous strip would obviously leak less?
- WRK·16Learning a trade by standing thereWhy must a trade be learned standing beside someone doing it when the manual is right there?
- WRK·17Light-load diesel runningWhy does a ship's engineer worry more about an engine run gently for weeks than one worked hard?
- WRK·18Limiting work in progressWhy does forbidding people to start new work make more work get finished?
- WRK·19Master keyingWhy does giving a caretaker one key that opens every door make every one of those locks easier to defeat?
- WRK·20Misleading fault codesWhy does the fault code that names a sensor so often lead to a sensor that turns out to be working perfectly?
- WRK·21Movement joints in tilingWhy does a tiler stop a floor short of the wall and hide the gap rather than tiling right up to it?
- WRK·22Natural bed in stoneWhy does a block of stone laid the wrong way up crumble within a decade while its neighbour lasts centuries?
- WRK·23Near missesWhy do serious accidents usually follow a long trail of small ones that nobody acted on?
- WRK·24Occupational licensingWhy does a customer accept a licence as proof of a skill they cannot judge themselves?
- WRK·25Pay rises by leavingWhy does changing employer often pay better than doing excellent work where you already are?
- WRK·26Paying above the marketWhy would an employer pay more than the wage needed to fill the post?
- WRK·27Paying for the five-minute fixWhy does a repair that took five minutes feel overpriced when the same fee for a full day would not?
- WRK·28Planning fallacyWhy do experienced teams still underestimate how long their work will take?
- WRK·29Plaster in thin coatsWhy is a wall built up in three thin coats of plaster rather than one thick pass that would fill it in a morning?
- WRK·30Preventive replacementWhy does a skilled worker replace a tool that is still working?
- WRK·31Promotion mismatchWhy does the best worker on a team so often turn into a poor manager?
- WRK·32Quoting a jobWhy will a tradesman name a firm price before anyone has looked behind the wall?
- WRK·33Rough-in inspectionWhy does an inspector sign off wiring and pipework before the walls go on rather than when the job is finished?
- WRK·34Rules of thumb on siteWhy does a tradesman's rule of thumb, wrong in theory, keep beating the exact calculation on site?
- WRK·35Scaffold tiesWhy is a scaffold that stands up perfectly well on its own still bolted back to the wall it surrounds?
- WRK·36Setting blocksWhy is a heavy pane of glass set on two small blocks rather than supported evenly all along its frame?
- WRK·37Shift handoverWhy do the worst mistakes in a hospital or plant cluster around the moment one shift hands over to the next?
- WRK·38Shift workWhy is a night shift harder on the body than the same number of hours worked by day?
- WRK·39Skilled diagnosisHow does an experienced technician notice the source of a fault before a novice does?
- WRK·40The wire that carries nothingWhy is the wire that carries no current in normal use the one an electrician takes most care over?
- WRK·41Trade demarcationWhy does a building site split the work among a dozen trades that each stand idle waiting for the others?
- WRK·42Welding distortionWhy does a welder deliberately set two plates out of line before joining them straight?
- WRK·43Who leaves firstWhy are the first people to leave a struggling organisation the ones it can least afford to lose?
- WRK·44Working to ruleWhy does a workplace grind to a halt when everyone follows the written rules exactly?
Biology & Ecology
42- BIO·01Antibody affinity maturationWhy does the body deliberately scramble the genes of its own immune cells at a rate that would be lethal anywhere else in the tissue?
- BIO·02Bacterial dormancyWhy does a bacterium that could keep dividing stop growing and seal itself inside a spore instead?
- BIO·03Balanced sex ratiosWhy do species keep producing equal numbers of males and females when few males suffice?
- BIO·04Cohesion-tension sap ascentWhy can a tree draw water a hundred feet up a narrow pipe when the best pump on the ground cannot lift it past thirty?
- BIO·05Collective ant behaviorHow can an ant colony solve complex problems without a leader directing it?
- BIO·06Conspicuous signalsWhy would an animal advertise its own location with bright colour or loud calls?
- BIO·07Convergent evolutionWhy do unrelated animals living in similar places end up looking so alike?
- BIO·08Cost of sexual reproductionWhy do most species pay to find a mate when a lineage that simply cloned itself would spread twice as fast?
- BIO·09Countercurrent heat exchangeHow can a duck stand on ice all day without draining its body heat?
- BIO·10Ecological successionWhy does a burnt hillside come back through plants that cannot survive in the forest they end up creating?
- BIO·11Forest height raceWhy does a tree in a crowded wood grow tall and spindly while the same species alone in a field spreads wide and low?
- BIO·12Gut colonization orderWhy can the order in which microbes reach an infant gut matter more than which ones arrive?
- BIO·13HibernationWhy does an animal facing a freezing winter survive it by letting its own body go cold?
- BIO·14How do birds know where to migrate?How do birds know where to migrate?
- BIO·15Island size ruleWhy do large mammals stranded on an island shrink over time while small ones grow?
- BIO·16Janzen-Connell seedling mortalityWhy does a tropical seedling fare worst on exactly the patch of ground where its own parent is thriving?
- BIO·17Keystone speciesHow can removing one uncommon species reshape an entire ecosystem?
- BIO·18Land size limitsWhy does the largest animal on land fall so far short of the largest in the sea?
- BIO·19Lateral inhibition in tissueWhy does a patch of cells that are all equally able to become a bristle end up producing bristles at neat, even spacings?
- BIO·20Leghemoglobin in root nodulesWhy does a legume build an oxygen-grabbing pigment to starve its bacterial guests of the very air they are sitting in?
- BIO·21Limits of regenerationWhy can a starfish regrow a whole arm when a person cannot regrow a lost finger?
- BIO·22Mast seedingWhy do some trees produce an enormous seed crop in one year and almost none for several after?
- BIO·23Metabolic scalingWhy does a gram of elephant burn far less energy each day than a gram of mouse?
- BIO·24Midday stomatal closureWhy do plants shut the pores they feed through during the brightest hours of the day?
- BIO·25Morphogen gradientsHow does a sheet of identical cells decide which of them becomes a finger and which becomes the gap beside it?
- BIO·26Mycorrhizal carbon tradeWhy does a tree hand a fifth of the sugar it worked all summer to make over to a fungus it can neither see nor control?
- BIO·27Ocean productivityWhy is the clearest blue ocean water almost empty of life while murky coastal water teems with it?
- BIO·28Original antigenic sinWhy does a person meeting this year's flu keep making antibodies shaped for the strain they first met as a child?
- BIO·29Parasite host manipulationWhy does an infected ant climb a grass stem each evening and clamp its jaws where a grazing sheep will swallow it?
- BIO·30PhotosynthesisA tree gains tonnes of mass over its life -- where does that material actually come from?
- BIO·31Pit viper infrared sensingHow can a snake with no light-sensitive pigment for heat still strike an unseen mouse accurately in total darkness?
- BIO·32Pollination specificityHow can a flower's shape and scent favor some pollinators over others?
- BIO·33Programmed cell deathWhy would a perfectly healthy cell destroy itself on purpose?
- BIO·34Quorum sensingHow can bacteria act together only once enough of them have gathered, when none of them can count?
- BIO·35Redox banding in sedimentWhy do the microbes in a jar of pond mud sort themselves into coloured bands that nobody arranged?
- BIO·36SenescenceWhy has evolution left bodies to fall apart with age when longer-lived individuals would leave more offspring?
- BIO·37Sterile worker castesWhy do worker bees raise a queen's offspring instead of having their own?
- BIO·38Sweet fruit, guarded seedWhy does a plant make its fruit delicious and the seed inside it bitter or poisonous?
- BIO·39SymbiosisHow can two unrelated species come to depend on each other for survival?
- BIO·40VernalizationWhy must some plants sit through weeks of cold before they will flower, when the warmth of spring is what they are waiting for?
- BIO·41Virulence and transmissionWhy are diseases we catch by touch usually milder than those carried to us by mosquitoes?
- BIO·42Why do leaves change color?Why do leaves change color?
Economics & Business
42- ECO·01Adverse selectionWhy does a market where buyers cannot judge quality fill up with poor goods?
- ECO·02Aftermarket pricingWhy does a company sell the printer cheaply and charge dearly for the ink?
- ECO·03Auction pricesHow can the rules of an auction change the price a thing finally sells for?
- ECO·04Bank money creationHow can commercial banks create spendable money when they make loans?
- ECO·05Bank runsWhy can everyone rushing to take their money out of a sound bank bring it down?
- ECO·06Board independenceWhy does a board appointed to keep watch over the managers so often end up agreeing with them?
- ECO·07Boundaries of the firmWhy does a company hire employees instead of buying every task on the open market?
- ECO·08Brand advertisingWhy does a firm spend fortunes on advertising that says nothing about the product?
- ECO·09Bullwhip effectWhy does a small wobble in shop sales turn into wild swings at the factory that supplies it?
- ECO·10Catastrophe reinsuranceWhy does an insurer holding a million policies across a whole country still need to buy insurance for itself?
- ECO·11Comparative advantageHow can two countries both gain from trade when one of them produces everything more cheaply?
- ECO·12Compound interestWhat is compound interest?
- ECO·13Cost diseaseWhy does a haircut cost more in real terms than a century ago when barbers are no faster?
- ECO·14CreditWhy will a stranger hand over goods today in exchange for nothing but a promise?
- ECO·15Cross-dockingWhy can a depot that stores nothing at all cut delivery costs more than a bigger warehouse would?
- ECO·16Currency peg collapseWhy can a currency peg hold steady for years and then break in a single week?
- ECO·17Empty container repositioningWhy do shipping lines sail thousands of empty steel boxes back across an ocean instead of selling them where they pile up?
- ECO·18Experience ratingWhy does an insurer whose whole business is pooling risk turn around and charge each customer by their own claims history?
- ECO·19Experience-curve pricingWhy would a manufacturer deliberately sell its first units at a price below what they cost to make?
- ECO·20Exposure problem in package biddingWhy can a bidder who wins one of the two licences it needs end up worse off than one who wins nothing?
- ECO·21Hostage capitalWhy does a supplier sometimes make an investment that would be worthless if the deal fell apart?
- ECO·22Incumbent disruptionWhy do dominant firms so often lose to a technology their own engineers saw coming first?
- ECO·23Industry concentrationWhy do some industries settle into three enormous firms while others support thousands of small ones?
- ECO·24Insurance poolingHow can an insurer safely take on risks that would ruin any one of its customers?
- ECO·25Internal transfer pricingWhy do two divisions of the same company argue bitterly over a price when the money never leaves the company?
- ECO·26Just-in-time fragilityWhy does a supply chain tuned for efficiency break so badly when a single plant stops?
- ECO·27Mental accountingWhy does separating money into mental buckets change how people spend it?
- ECO·28Network effectsWhy does a product become more valuable simply because more people already use it?
- ECO·29Overnight repo lendingWhy will a lender hand a near stranger a fortune overnight without ever examining the borrower's books?
- ECO·30Paradox of valueWhy does water, which nobody can live without, sell for less than a stone nobody needs?
- ECO·31Price signalsHow does a failed harvest on one continent change what a shopkeeper charges on another?
- ECO·32Profit versus cashWhy can a firm reporting its best profits ever fail to pay its suppliers next month?
- ECO·33Retail clusteringWhy do competing shops crowd onto the same street instead of spreading across a town?
- ECO·34Safety stockWhy is a shop that never once runs out of an item almost certainly ordering too much of it?
- ECO·35Stockout demand censoringWhy can a shop's sales records never tell it how much it could have sold?
- ECO·36Sunk costWhy do people keep pouring money into a project they already believe will fail?
- ECO·37Trade creditWhy does a supplier short of cash itself agree to let its customers pay ninety days late?
- ECO·38Two-sided market launchWhy does a new marketplace often have to pay one side of the market to show up at all?
- ECO·39Vacancies alongside unemploymentWhy do unfilled jobs and jobless workers persist side by side instead of clearing each other away?
- ECO·40Wage stickinessWhy do firms lay off a tenth of their staff in a slump rather than cut everyone's pay a tenth?
- ECO·41What is inflation?What is inflation?
- ECO·42Winner's curseWhy does the bidder who wins a hard-fought auction so often wish they had lost it?
Engineering & Technology
42- ENG·01Airplane cabin pressureHow is breathable pressure maintained inside an aircraft flying through thin air?
- ENG·02AliasingWhy can a filmed wagon wheel appear to turn backwards, and why does the same trap corrupt digital measurements?
- ENG·03Antenna ground planeWhy does a car aerial hear almost nothing until it is bolted through the metal roof it is standing on?
- ENG·04Bathtub failure curveWhy is a brand-new machine more likely to break this week than a six-month-old one?
- ENG·05Bolt preloadWhy does a bolt stretched hard on assembly outlive a gently tightened one carrying exactly the same working load?
- ENG·06Building swayWhy do engineers let a tall building sway rather than making it rigid?
- ENG·07Capacitive sensingHow does a sheet of glass know where your finger is?
- ENG·08Chip yield and die sizeWhy does making a chip slightly larger cut the share of working ones by far more than a little?
- ENG·09Crumple zonesWhy is a car built to destroy itself in a crash instead of holding firm?
- ENG·10Delayed weld crackingWhy can a weld that passes every inspection on the day it is made split open two nights later with nobody touching it?
- ENG·11Engine run-inWhy does a new engine run more smoothly after its first thousand miles than it did leaving the factory?
- ENG·12Engineered redundancyWhy do engineers deliberately add parts that a perfectly working machine does not need?
- ENG·13Fail-safe brakingWhy is a train's brake held off by pressure rather than applied by it?
- ENG·14Feedback controlHow can a machine hold a steady temperature without ever being told the right setting in advance?
- ENG·15Green wave signal timingWhy can retiming a corridor's traffic lights move more cars than adding another lane to it?
- ENG·16Grid balancingWhy must an electricity grid match supply to demand from one second to the next?
- ENG·17Grid inertia lossWhy does a power grid full of modern inverters lurch at a fault that older spinning plant would have absorbed unnoticed?
- ENG·18Guided light in fibreWhy does light stay trapped inside a bent glass thread instead of escaping at the curve?
- ENG·19Heat exchanger foulingWhy does a heat exchanger scoured back to bare metal lose more of its duty in the first month than in the whole year that follows?
- ENG·20Heat pipesHow can a sealed tube with no moving parts carry heat better than a solid copper bar of the same size?
- ENG·21High-voltage transmissionWhy is electricity pushed to hundreds of thousands of volts only to be dropped again at the far end?
- ENG·22How does a refrigerator cool food?How does a refrigerator cool food?
- ENG·23How does GPS find your location?How does GPS find your location?
- ENG·24Integrator windupWhy does a controller that held a tank at temperature for hours overshoot wildly the first time its heater is asked for more than it can give?
- ENG·25Involute gear teethWhy must gear teeth be cut to one particular curve if the driven shaft is to turn at a steady speed?
- ENG·26Leak-before-breakWhy do engineers deliberately design a pressure vessel so that a growing crack will dribble rather than hold?
- ENG·27Measurement dead timeWhy can moving a thermometer one metre further along the pipe turn a rock-steady control loop into an oscillating one?
- ENG·28Mechanical advantageWhy does a small gear driving a large one trade away speed to gain force?
- ENG·29Oil film in bearingsWhy does a fast-spinning shaft ride on a film of oil while the same shaft turning slowly grinds metal on metal?
- ENG·30Radio diffractionWhy can a radio signal reach around a hill when light from the same direction cannot?
- ENG·31Reinforced concreteWhy does concrete need steel buried inside it to span a gap?
- ENG·32Road crackingWhy do roads crack in regular patterns even where no vehicle ever drives?
- ENG·33Stress concentrationWhy does a scratch far too small to weigh anything cut a steel plate's strength so sharply?
- ENG·34Suspension bridge cablesWhat lets a suspension bridge span far more than a solid beam of the same material could?
- ENG·35Technical standardsWhy does a plug made by one company fit a socket made by another that never consulted it?
- ENG·36Thermal throttlingWhy does a laptop slow itself down at exactly the moment you are asking most of it?
- ENG·37Three-bladed turbinesWhy do wind turbines almost all have exactly three blades when more blades would catch more wind?
- ENG·38Tolerance stack-upWhy can a machine assembled entirely from parts that passed inspection still refuse to fit together?
- ENG·39Transformer inrushWhy can switching on an idle transformer trip a breaker that its full running load never comes close to troubling?
- ENG·40Vibration isolator resonanceWhy can putting a machine on soft rubber mounts make it shake the floor harder than bolting it down did?
- ENG·41Water hammerWhy can closing a valve slowly protect a pipe that closing it quickly would burst?
- ENG·42Wind farm wake lossesWhy does the second row of a wind farm earn far less than the first from exactly the same wind?
Health & Medicine
42- MED·01AllergyWhy does the body mount a violent defence against something as harmless as pollen?
- MED·02Antibiotic course lengthWhy might finishing every last tablet, long taught as the way to stop resistance, help resistance along instead?
- MED·03Antiviral difficultyWhy are drugs that kill bacteria so much easier to find than drugs that kill viruses?
- MED·04AutoimmunityWhy does a defence system built to tell self from foreign ever turn on the body it protects?
- MED·05Bed rest harmWhy does resting a sick patient in bed, once prescribed for almost everything, now make recovery worse?
- MED·06Blood compatibilityWhy can blood from one healthy person be lethal to another healthy person?
- MED·07Bone remodellingWhy does bone thicken exactly where it is worked and melt away where it is not?
- MED·08Cartilage healingWhy does a broken bone knit itself back together while damaged knee cartilage never does?
- MED·09Central sensitizationWhy does pain sometimes persist for years after the injury that caused it has fully healed?
- MED·10Chemotherapy selectivityWhy does a drug aimed at a tumour also attack hair, gut lining, and blood?
- MED·11Compensated shockWhy can a patient losing blood dangerously fast still show an entirely normal blood pressure?
- MED·12Diabetic complicationsWhy does mildly high blood sugar damage nerves and kidneys only decades later?
- MED·13Dose-responseWhy can the same substance be a medicine at one dose and a poison at another?
- MED·14Drug toleranceWhy does a drug that worked well at first need a bigger dose later to do the same job?
- MED·15Emergency triageWhy can treating patients in the order they arrive cost more lives than treating them out of order?
- MED·16FeverWhy does the body raise its temperature during an infection?
- MED·17First-pass metabolismWhy can a drug that works well by injection do almost nothing when the same amount is swallowed?
- MED·18General anaesthesiaHow can a surgeon be confident a patient is unconscious when nobody can measure consciousness directly?
- MED·19Hand hygiene complianceWhy do the clinicians who best understand how infection spreads wash their hands least reliably?
- MED·20Herd immunityWhy can vaccinating most of a population protect the people who were never vaccinated?
- MED·21How does antibiotic resistance develop?How does antibiotic resistance develop?
- MED·22How vaccines workHow do vaccines work?
- MED·23Jet lagHow does crossing time zones disrupt the body's sense of when to sleep?
- MED·24Local anaesthetic failureWhy does a dental injection that reliably numbs a healthy tooth fail on an abscessed one?
- MED·25MetastasisWhy is a tumour often harmless where it began and deadly once its cells travel?
- MED·26Number needed to treatWhy do we ask a hundred people to take a daily tablet that will help perhaps one of them?
- MED·27Opioid-induced hyperalgesiaWhy can taking a strong painkiller for months leave a person more sensitive to pain than before?
- MED·28Organ allocation matchingWhy does the patient who has waited longest for a kidney sometimes not receive the one that becomes available?
- MED·29OverdiagnosisWhy can finding far more cancers early lengthen measured survival without saving a single life?
- MED·30Phantom limb painHow can a person feel pain in a limb that is no longer present?
- MED·31Physiological reserveWhy can an older person be entirely fine day to day and yet be felled by a minor infection?
- MED·32Pins and needlesWhy does a limb you have sat on go numb first and only hurt as it comes back?
- MED·33Placebo effectHow can a treatment containing no active ingredient still reduce real symptoms?
- MED·34Pregnancy immune toleranceWhy does a mother's immune system spare a fetus that is genetically half foreign to her?
- MED·35Randomized trialsWhy does deciding treatment by coin toss give more trustworthy answers than choosing carefully?
- MED·36Referred painWhy does a failing heart announce itself in the arm and jaw rather than only in the chest?
- MED·37Screening false positivesWhy can a test that is right ninety-nine times in a hundred still flag mostly healthy people?
- MED·38SepsisWhy can a defence that handles most infections quietly end up killing the patient?
- MED·39SleepWhy would an animal spend a third of its life unable to notice a predator?
- MED·40Steady-state dosingWhy does a drug that acts within an hour still take days to reach its full effect?
- MED·41Transplant rejectionWhy must a person given a life-saving organ stay deliberately vulnerable to infection?
- MED·42Wound healingWhy does a wound itch as it heals rather than while it is fresh?
Arts, Design & Culture
41- ART·01Apparent motionWhy does a rapid series of still pictures look like continuous movement?
- ART·02Architectural atmosphereWhy can one room feel welcoming and another of identical size feel cold?
- ART·03Bias-cut clothWhy does a woven fabric stretch generously on the diagonal while barely giving along its own threads?
- ART·04Canon formationWhy do a handful of works get taught for centuries while equally admired contemporaries disappear entirely?
- ART·05Cello wolf toneWhy does one note on a fine cello howl and stutter while the notes either side of it behave?
- ART·06Color mixingWhy does mixing paints darken a colour while mixing lights brightens it?
- ART·07Concert hall reverberationWhy does the same orchestra sound thin outdoors and rich indoors when the playing has not changed?
- ART·08Concert pitch standardWhy did orchestras have to agree on a tuning pitch that no physical law fixes?
- ART·09Continuity editingWhy does an audience read two different camera angles as one continuous space?
- ART·10Death and art pricesWhy does an artist's work often become far more valuable once the artist has died?
- ART·11Design restraintWhy does taking elements off a poster so often make what remains look more expensive?
- ART·12Drypoint burrWhy is the tenth impression from a drypoint plate worth a fraction of the first when nobody altered the plate?
- ART·13EarwormsWhy does a fragment of a song repeat in your head for hours when you never chose to play it?
- ART·14Emerging pentimentiWhy do a painter's abandoned first attempts creep back into view centuries after being covered over?
- ART·15Explained jokesWhy does a joke stop being funny the moment it is explained?
- ART·16Fashion churnWhy do fashions keep changing when nobody is dissatisfied with what they already own?
- ART·17Folk craft regionalismWhy do handmade crafts from neighbouring valleys settle into unmistakable local styles when nobody sets the rules?
- ART·18Gamelan tuningWhy can two gamelan orchestras built in neighbouring villages never be played together?
- ART·19Groove and microtimingWhy does a drum machine playing perfectly on the beat feel less danceable than a drummer who is slightly late?
- ART·20How can music create emotion?How can music create emotion?
- ART·21Jazz improvisationWhy does a jazz soloist sound freer inside a fixed chord scheme than with no rules at all?
- ART·22LegibilityWhy is a page set entirely in capitals harder to read than the same words in mixed case?
- ART·23Linear perspectiveHow can lines on a flat surface create a convincing impression of depth?
- ART·24Marble supportsWhy do ancient marble statues lean on tree stumps and drapery that the bronze originals never needed?
- ART·25Massed string soundWhy does doubling an orchestra's violin section add so little loudness compared with doubling one player's effort?
- ART·26Metrical verseWhy did societies without writing store their most important knowledge in rhyme and metre rather than plain speech?
- ART·27Microphone proximity effectWhy does a singer's voice gain weight and bass simply by moving closer to the microphone?
- ART·28Museum lightingWhy are the paintings a museum values most often hung in its dimmest rooms?
- ART·29Musical consonanceWhy do some combinations of notes feel settled while others create tension?
- ART·30Optical sizes in typeWhy does a typeface that reads beautifully at footnote size look clumsy blown up on a poster?
- ART·31Patina and age valueWhy does a darkened, chipped antique often sell for more than one restored to look new?
- ART·32Photographic evidenceWhy does a photograph feel like evidence in a way a painting of the same scene does not?
- ART·33Reciprocity failureWhy does doubling an already long film exposure fail to double what the negative records?
- ART·34Stage lighting angleWhy does lighting an actor squarely from the front make them look flatter than lighting from two oblique sides?
- ART·35Story shapeWhy do stories from unconnected cultures fall into such similar shapes?
- ART·36Typeface voiceWhy can the same sentence read as trustworthy or cheap depending only on the shape of its letters?
- ART·37Value of the originalWhy does a perfect copy of a painting feel worthless when no one can tell it from the original?
- ART·38Varnish removalWhy can stripping a painting's yellowed varnish take the artist's own final glazes with it?
- ART·39Vinegar syndromeWhy does a decaying reel of film destroy itself faster the longer it has already been decaying?
- ART·40Visual groupingWhy do two items on a page read as a pair simply because they sit closer together than anything else?
- ART·41Voice recording mismatchWhy does your own recorded voice sound like a stranger's while everyone else says it sounds normal?
Astronomy & Space
41- AST·01Antarctic meteorite concentrationWhy are most of the world's recovered meteorites picked up from a few patches of ice on one continent?
- AST·02Atmospheric seeing limitWhy does a ground telescope twice as wide show no finer detail than a small one on most nights?
- AST·03AuroraWhy do curtains of light appear in polar skies but almost never near the equator?
- AST·04Comet tailsWhy does a comet's tail point away from the Sun even while the comet is racing away from it?
- AST·05Cosmic distance ladderHow can anyone know how far away a galaxy is?
- AST·06Dark night skyIf the universe is full of stars, why is the night sky dark?
- AST·07Eclipse seasonsWhy is there not a solar eclipse at every new moon, when the Moon passes between us and the Sun each month?
- AST·08Exoplanet detectionHow can we detect a planet we cannot see, orbiting a star we can barely resolve?
- AST·09Galaxy rotation curvesWhy do the outermost stars of a galaxy orbit as fast as the inner ones when the outer planets do not?
- AST·10Gravity assistHow can a spacecraft leave a planet faster than it arrived, when that planet's gravity pulls back just as hard on the way out?
- AST·11Kirkwood gapsWhy is the asteroid belt swept empty at exactly the orbits whose timing is most perfectly regular?
- AST·12Lagrange pointsHow can a space telescope hold station relative to the Earth and Sun for years without an engine running?
- AST·13Large mirror flexureWhy must the biggest telescope mirrors be built deliberately floppy and pushed back into shape all night?
- AST·14Low-frequency radio cutoffWhy would astronomers put a radio telescope on the far side of the Moon to hear the longest wavelengths?
- AST·15Martian atmosphere lossWhy did Mars lose almost all its air while Venus kept a crushing atmosphere?
- AST·16Meteor streaksWhy does a speck of dust entering the atmosphere make a streak bright enough to see from miles away?
- AST·17Moon illusionWhy does the Moon look enormous near the horizon and small overhead, when a photograph shows the same size in both?
- AST·18Orbital debris cascadeWhy can a single collision in orbit make a whole altitude band unusable for decades?
- AST·19Orbital drag speed-upWhy does air resistance leave a decaying satellite travelling faster rather than slower?
- AST·20Orbital rendezvousWhy must a spacecraft slow down in order to catch up with another craft ahead of it in the same orbit?
- AST·21Photon escape timeWhy does energy made in the Sun's core take so long to reach its surface?
- AST·22Planetary ringsWhy do the chunks of ice orbiting close to a planet stay a ring instead of clumping into a moon?
- AST·23Pluto's seasonal atmosphereWhy did Pluto's thin atmosphere keep thickening as it moved further away from the Sun?
- AST·24Pulsar spin ratesWhy does a collapsed star spin hundreds of times a second when its parent turned slowly?
- AST·25Radiation-hardened spacecraft computersWhy does a probe worth a billion dollars fly a processor slower than a cheap phone's?
- AST·26Radio interferometryWhy can two small dishes placed far apart resolve finer detail than one enormous dish between them?
- AST·27Reentry heatingWhy does a returning capsule glow white-hot in air far too thin for a person to breathe?
- AST·28Rocket stagingWhy does a rocket throw away most of itself on the way up?
- AST·29SeasonsWhy does Earth have seasons when its distance from the Sun barely changes?
- AST·30Sky-background limitWhy does leaving the shutter open twice as long not let a telescope reach twice as faint?
- AST·31Solar cycleWhy does the Sun's spot count rise and fall on a roughly eleven-year beat?
- AST·32Spacecraft coolingWhy is dumping heat, not staying warm, the hard problem for a spacecraft sitting in freezing space?
- AST·33Star colorsWhy do stars have different colors?
- AST·34Star formationWhy must a cloud of gas get colder before it can collapse into something as hot as a star?
- AST·35Stellar hydrostatic balanceWhy has a sphere of gas releasing nuclear energy neither blown itself apart nor collapsed in billions of years?
- AST·36Tidal lockingWhy does the Moon keep nearly the same face turned toward Earth?
- AST·37Venus superrotationWhy does Venus's atmosphere circle the planet in four days when the planet itself takes 243?
- AST·38What is a black hole?What is a black hole?
- AST·39Widmanstatten patternHow can the crystal figure inside an iron meteorite reveal how slowly its parent body cooled?
- AST·40Yarkovsky effectWhy can an asteroid's own afternoon warmth shift its orbit more than any collision it has suffered?
- AST·41Zodiacal dust replenishmentWhy must the dust glowing between the planets be far younger than the solar system holding it?
Earth, Climate & Oceans
41- EAR·01Amphidromic pointsWhy does the tide barely rise at one spot in a sea while swinging metres a short distance away?
- EAR·02Antarctic ozone holeWhy does ozone loss peak over Antarctica each spring when the chemicals responsible were released elsewhere?
- EAR·03Cave formationHow does ordinary water hollow a cave out of solid limestone?
- EAR·04Coastal dead zonesWhy does fertiliser spread on inland fields end up suffocating fish far out at sea?
- EAR·05Coral bleachingWhy does a rise of barely a degree make a coral expel the very algae that feed it?
- EAR·06Deep sound channelWhy does a whale call fade within kilometres near the surface yet cross an ocean at a certain depth?
- EAR·07Depth hoar in snowpackWhy does a buried snow layer grow weaker as it ages instead of settling into something stronger?
- EAR·08Dust-fed rainforestsWhy does a rainforest on deep soil depend on dust blown from a desert an ocean away?
- EAR·09El Nino oscillationWhy does the Pacific keep swinging between warm and cool states instead of settling into one of them?
- EAR·10Forecast horizonWhy can we forecast tomorrow's weather well and next month's not at all?
- EAR·11Geostrophic windWhy does the wind follow the lines on a weather map instead of blowing straight from high pressure to low?
- EAR·12Glacier flowHow can solid ice flow downhill like a very slow river?
- EAR·13Hurricane intensificationWhy does a hurricane strengthen for days over warm water and fall apart within hours of crossing a coastline?
- EAR·14Ice age triggersWhy can a slight wobble in Earth's orbit swing the whole planet into an ice age?
- EAR·15Ice core recordsHow can bubbles sealed inside ancient ice tell us what the air was like long before anyone measured it?
- EAR·16Isostatic reboundWhy is land in Scandinavia still rising thousands of years after the ice that pressed it down melted away?
- EAR·17Katabatic windsWhy does air on the Antarctic plateau reach gale force downhill with no storm system driving it?
- EAR·18Lake turnoverWhy does a deep lake suddenly turn over from top to bottom at certain times of year?
- EAR·19Marine reservoir ageWhy does a shell taken from a living sea creature radiocarbon-date as though it were centuries old?
- EAR·20MonsoonWhy does a whole season of rain arrive within roughly the same weeks each year?
- EAR·21Ocean acidificationWhy does a gas dissolving invisibly into seawater dissolve the shells of animals that never meet the air?
- EAR·22Ocean circulationWhat keeps the ocean's great currents moving instead of settling into stillness?
- EAR·23Patterned groundWhy do stones on flat Arctic ground arrange themselves into circles and polygons with nobody sorting them?
- EAR·24Polar amplificationWhy does the Arctic warm two or three times faster than the planet as a whole?
- EAR·25Radiation frostWhy does frost form on a clear, still night but not under cloud, when the air temperature is the same?
- EAR·26Rain shadowWhy can one side of a mountain range be rainforest and the other desert, under the same weather?
- EAR·27Rainfall isotope distillationWhy does rain falling far inland carry lighter oxygen than the rain that fell near the coast?
- EAR·28River meandersWhy do rivers develop looping bends instead of flowing in straight lines?
- EAR·29Rogue wavesWhy can one wave twice the height of its neighbours rise out of an otherwise ordinary sea?
- EAR·30Sea breeze reversalWhy does the wind at the coast blow inland during the day but out to sea at night?
- EAR·31Sea level fingerprintsWhy does a melting ice sheet make the sea fall near itself and rise most on the far side of the world?
- EAR·32Sea saltinessWhy is the ocean salty when nearly every river that feeds it runs fresh?
- EAR·33Sea-ice brine rejectionWhy does ice forming at the surface of a polar sea set the deep ocean in motion?
- EAR·34Seismic shadow zoneWhy does a large earthquake leave a wide band of the planet where its shear waves never arrive?
- EAR·35Silicate weathering thermostatWhy has Earth kept liquid oceans for billions of years while the Sun grew steadily brighter?
- EAR·36Soil formationHow does bare rock become soil deep enough to support a forest?
- EAR·37Tree-ring evidenceHow can the width and chemistry of tree rings reveal past environmental conditions?
- EAR·38Tsunami shoalingWhy does a wave that a ship at sea never notices rise into a wall of water at the shore?
- EAR·39Turbidity currentsWhy do seafloor cables snap hundreds of kilometres from an earthquake, hours after the shaking has stopped?
- EAR·40Twice-daily tidesWhy does the sea rise twice a day when there is only one Moon pulling on it?
- EAR·41Why do earthquakes happen?Why do earthquakes happen?
Environment, Agriculture & Food
41- ENV·01Agroforestry overyieldingWhy can a field that gives a tenth of its ground to trees produce more food than the same field cleared?
- ENV·02Bread stalingWhy does bread go stale faster in the fridge than on the counter?
- ENV·03Cassava processingWhy would a community put its staple root through days of soaking and drying before anyone eats it?
- ENV·04Cheese ripeningWhy does deliberately letting microbes grow in milk make it keep for years when fresh milk sours in days?
- ENV·05Chilling injury in fruitWhy does a banana kept in the fridge turn black outside while staying stubbornly hard inside?
- ENV·06Compost heatWhy does a heap of kitchen scraps get hot in the middle?
- ENV·07Cosmetic produce standardsWhy do sound, edible vegetables get discarded before they ever reach a shop shelf?
- ENV·08Crop rotationWhy does changing the crop each year restore a field in ways fertilizer alone cannot?
- ENV·09Dairy cow energy balanceWhy does a freshly calved high-yielding cow lose body condition no matter how generously she is fed?
- ENV·10Diminishing fertiliser returnsWhy does doubling the fertiliser on a field add almost nothing to the harvest it yields?
- ENV·11Fish spoiling fastWhy does fish go off in days when beef keeps for weeks in the very same fridge?
- ENV·12Fishery collapseWhy can a fishery that fed people for generations collapse within a single decade?
- ENV·13Food milesWhy can food grown far away sometimes cost the planet less than food grown nearby?
- ENV·14Food preservationWhy do salting, drying, and pickling keep food edible for months?
- ENV·15Grain bin hot spotsWhy does one corner of a bin of dry, sound grain heat up and spoil while the rest of it keeps for a year?
- ENV·16Grazing and grassland richnessWhy can a grassland support more kinds of plant when grazing animals are allowed onto it?
- ENV·17Grazing rest periodWhy does moving a flock off before it has finished the grass leave more feed at the end of the season than letting it graze down?
- ENV·18Hybrid seed declineWhy do seeds saved from a superb hybrid crop give a disappointing and uneven harvest the following year?
- ENV·19Irrigation efficiency paradoxWhy can upgrading a valley's farms to efficient drip irrigation leave less water in the river, not more?
- ENV·20Irrigation scheduling depthWhy does watering a crop lightly every day leave it worse off in a drought than soaking it once a week?
- ENV·21Landfill methaneWhy does one food scrap warm the world far more buried in a tip than rotting in a garden heap?
- ENV·22Lime-induced nutrient lockupWhy can liming a sour field to make it more fertile leave the crop starved of a nutrient the soil still holds?
- ENV·23Maillard browningWhy does searing meat produce flavors that boiling it never does?
- ENV·24Managed hives and wild pollinatorsWhy can adding more beehives to a landscape leave its crops less well pollinated over time?
- ENV·25Milk spoilage after openingWhy does milk keep for weeks unopened but sour within days once the carton is opened?
- ENV·26Monoculture fragilityWhy is a field of genetically identical plants more fragile than a mixed one?
- ENV·27Pasteurised mushroom substrateWhy does a mushroom grower heat the straw just enough to wound its microbes rather than sterilise it outright?
- ENV·28Pest resurgenceWhy can spraying a crop leave it with a worse pest problem than it had before?
- ENV·29Race to fish under quotaWhy can a fishery with a strictly enforced annual catch limit still ruin both its fleet and its stock?
- ENV·30Ripening by contagionWhy does one ripe apple in a bowl hurry along everything sitting beside it?
- ENV·31Runoff from dry groundWhy does a downpour on parched ground mostly run away instead of soaking in?
- ENV·32SalinizationWhy can irrigating a field for years eventually leave it barren?
- ENV·33Seed vigour versus germinationWhy does a seed lot that sprouts almost perfectly on a laboratory bench give a thin, ragged stand in the field?
- ENV·34Shear-thickening food pastesWhy does a cornflour paste flow like cream until you stir it hard, then set solid under the spoon?
- ENV·35Soil carbon loss under ploughingWhy does turning the soil every year, which looks like feeding it, steadily empty it of carbon?
- ENV·36Sourdough stabilityWhy does a jar of flour and water left on the counter for years stay wholesome when the same mixture left alone would rot?
- ENV·37Supermarket tomato flavourWhy does a tomato bred by experts and grown at scale taste of so much less than one from a garden?
- ENV·38Trophic cost of meatWhy does a field feeding cattle support so many fewer people than the same field sown with grain?
- ENV·39Weed seed banksWhy does a thoroughly weeded field sprout the same weeds again the next year, and the next?
- ENV·40What makes bread rise?What makes bread rise?
- ENV·41Yield and protein in wheatWhy does the same wheat variety make fine bread on one farm and only biscuits on the next?
Government, Law & Civics
41- GOV·01Appellate deferenceWhy does an appeal court uphold a finding its own judges suspect is wrong?
- GOV·02Bright-line rulesWhy does the law fix a speed limit at an exact number instead of asking people to drive reasonably?
- GOV·03Budget scoring windowsWhy does a tax cut everyone expects to be permanent get priced as though it will expire?
- GOV·04Census undercountWhat changes when a government miscounts its own population?
- GOV·05Civil service tenureWhy does making officials nearly impossible to dismiss produce more honest advice than making them removable?
- GOV·06Coalition formationWhy can the party that won the most votes end up outside the government it expected to lead?
- GOV·07Compulsory taxationWhy must a service everyone wants be funded by a payment nobody is allowed to refuse?
- GOV·08Conditional spending grantsWhy does a national government buy a policy with grant money when it could simply have legislated it?
- GOV·09Constitutional entrenchmentWhy would a society deliberately make its own most important rules hard to change?
- GOV·10Devolved authorityWhy do large states hand decisions to local bodies they could just as easily make centrally?
- GOV·11District boundariesWhy can the drawing of district lines settle an election before any vote is cast?
- GOV·12Emergency powers ratchetWhy do powers granted for a passing emergency so rarely go back once the emergency has passed?
- GOV·13Eminent domain compensationWhy must a state pay for land it already has the power to take outright?
- GOV·14Enforcement discretionWhy does one written rule produce very different treatment depending on which official applies it?
- GOV·15Everyday legal complianceWhy do most people obey laws when the chance of ever being caught is tiny?
- GOV·16Exclusionary ruleWhy would a court throw out evidence it knows to be true and decisive?
- GOV·17Judicial recusalWhy must a judge withdraw from a case when nobody has shown that they are actually biased?
- GOV·18Judicial reviewWhy do democracies let unelected judges cancel laws that elected majorities passed?
- GOV·19Jury deliberationHow can a jury reason fairly when witnesses and evidence point in different directions?
- GOV·20Legal precedentWhen is it reasonable for a court to depart from a decision it is otherwise bound to follow?
- GOV·21Loser-pays cost rulesWhy does making the loser pay the winner's legal costs deter sound claims along with the frivolous ones?
- GOV·22Notice-and-comment rulemakingWhy must an agency answer objections it is perfectly free to reject before its rule can stand?
- GOV·23Open government recordsWhy does a right to inspect records change official decisions before anyone inspects them?
- GOV·24Persistent rulesWhy do organizations keep rules that nearly everyone agrees are inconvenient?
- GOV·25Plea bargainingWhy does a system that guarantees everyone a trial settle almost every case without holding one?
- GOV·26Presumption of innocenceWhy does a legal system accept a rule it knows will let some guilty people go free?
- GOV·27Random auditsWhy does a tax authority that inspects a few returns at random collect more honest filings than one that inspects only suspicious ones?
- GOV·28Regulatory captureWhy does an agency created to regulate an industry so often end up defending it?
- GOV·29Regulatory grandfatheringWhy do new safety rules so often exempt the very buildings that prompted them?
- GOV·30Regulatory ossificationWhy does an agency hedged about with safeguards against bad rules end up making almost no rules at all?
- GOV·31Resource revenue and accountabilityWhy can a government funded by oil revenue end up less answerable to its citizens than one funded by taxes?
- GOV·32Secret ballotWhy must a vote be cast in secret when almost everything else in a democracy is done in public?
- GOV·33Standards of proofWhy can the same disputed act count as proven in a civil court and unproven in a criminal one?
- GOV·34Standing to sueWhy can a court refuse to rule on a plain injustice because the person raising it was not the one harmed?
- GOV·35Statutes of limitationWhy does the law stop prosecuting a serious wrong merely because enough years have gone by?
- GOV·36Statutory interpretation canonsWhy do judges settle an ambiguous statute with shared rules of thumb rather than by asking what the legislature meant?
- GOV·37Tax incidenceWhy does the person who writes the tax cheque often not bear its cost?
- GOV·38Term limitsWhy can forcing legislators out after a fixed term hand more power to lobbyists and permanent staff?
- GOV·39Voting rulesHow can the same set of votes elect different winners under different counting rules?
- GOV·40Whistleblower protectionWhy does wrongdoing stay hidden until the law shields the person who reports it?
- GOV·41Why do democracies separate powers?Why do democracies separate powers?
Language, Media & Communication
41- LAN·01Accent and perceived competenceWhy does an unfamiliar accent make a speaker sound less competent when it says nothing about competence?
- LAN·02Broadcast loudnessWhy did adverts sound louder than the programmes around them while meeting the same peak limit?
- LAN·03Clickbait headlinesWhy do headlines grow more tempting and less informative as publishers learn what readers click?
- LAN·04Conversation turn-takingHow do people coordinate who speaks next without usually agreeing on rules aloud?
- LAN·05Creole genesisWhy do the children of speakers with no shared grammar end up with a fully regular one?
- LAN·06Digital preservation churnWhy does a digital archive need constant work to stay readable when a clay tablet needs none?
- LAN·07Ear-voice spanWhy does an interpreter who lags further behind the speaker often deliver a more faithful rendering?
- LAN·08EuphemismWhy does renaming a thing change how people feel about the thing itself?
- LAN·09ExonymsWhy does almost every country have a name in other languages that its own people never use?
- LAN·10Filler wordsWhy does a speaker who pauses to say \"um\" get understood better than one who never hesitates?
- LAN·11FramingWhy can two entirely accurate headlines about the same event leave opposite impressions?
- LAN·12Given-name fashionsWhy do given names rise and collapse in popularity like fashions when nobody coordinates the choice?
- LAN·13Grammatical evidentialityWhy do some languages force a speaker to mark how they came to know what they assert?
- LAN·14HeadlineseWhy can a headline drop half of its grammar and still be read without difficulty?
- LAN·15Indirect requestsWhy do people ask for things in a roundabout way when a direct request would be clearer?
- LAN·16Irregular verb survivalWhy do the verbs a language uses most often stay irregular while rarer ones quietly become regular?
- LAN·17Loanword doubletsWhy does a language borrow a foreign word for something it already has a perfectly good word for?
- LAN·18Media samenessWhy do rival news outlets chasing the same audience end up sounding almost identical?
- LAN·19MetaphorWhy do we explain almost every abstract idea in physical terms?
- LAN·20Nighttime radio reachWhy can a distant broadcast station arrive clearly after dark yet vanish completely by day?
- LAN·21Persistence of misinformationWhy does a correction so often fail to undo a false story?
- LAN·22Rare words in corporaWhy does a dictionary need vastly more text to settle a rare word than a common one?
- LAN·23Rumour sharpeningWhy does a story grow sharper and more dramatic each time it is passed along?
- LAN·24Sign languageHow can a full language exist with no sound in it at all?
- LAN·25Signing spaceHow can a signer point at empty air and have everyone present know exactly who is meant?
- LAN·26Simultaneous interpretingWhy does a simultaneous interpreter start speaking before the sentence being translated has finished?
- LAN·27Spelling reformWhy does English spelling stay irregular when almost everyone agrees it is a burden?
- LAN·28Telephone bandwidthWhy does a voice stay intelligible on a line that removes the very pitch you hear it at?
- LAN·29Text message toneWhy does a plain text message so often read as colder than the same words spoken aloud?
- LAN·30Trade jargonWhy does every occupation grow a private vocabulary that plain words could seemingly replace?
- LAN·31Transcribed speechWhy does an ordinary conversation look ungrammatical the moment it is written down word for word?
- LAN·32Translation equivalenceWhy can a faithful translation differ greatly from the wording of its source?
- LAN·33Uninformative advertisingWhy does an advertisement that tells you nothing about a product still make it more believable?
- LAN·34Unwritten vowels in abjadsWhy can a script leave most of its vowels unwritten without leaving fluent readers lost?
- LAN·35Vowel chain shiftsWhy does one vowel drifting out of place drag a whole set of unrelated vowels along with it?
- LAN·36Whistled languagesWhy can a whistled message carry a full sentence across a valley without a single consonant in it?
- LAN·37Why do languages change over time?Why do languages change over time?
- LAN·38Word lengthWhy are the words people use most often the shortest ones in every language?
- LAN·39Word orderWhy does word order carry the meaning in some languages and barely matter in others?
- LAN·40Word spacing in writingWhy did scribes write for centuries without spaces between words if spaces make reading so much easier?
- LAN·41Wordless instructionsWhy do assembly instructions drop words entirely when a written sentence could explain the step faster?
Mind & Behavior
41- MIN·01Adult attachment patternsWhy do people so often reproduce the same relationship pattern with very different partners?
- MIN·02Attribution asymmetryWhy do people explain their own failure differently from an identical failure by someone else?
- MIN·03Binocular rivalryWhy do two different images shown to the two eyes alternate instead of blending into one?
- MIN·04BlushingWhy would a body build a signal that broadcasts your embarrassment exactly when you least want it seen?
- MIN·05Bystander effectWhy is a person in trouble less likely to be helped when more people are watching?
- MIN·06Choice overloadWhy can more options make a decision harder and the chooser less satisfied?
- MIN·07Cocktail party effectWhy can your own name cut through a conversation you were paying no attention to at all?
- MIN·08Cognitive dissonanceWhy does being paid too little to argue a case you disbelieve change your mind more than being paid well?
- MIN·09ConformityWhy will a person state an answer they can see is wrong once everyone else has given it?
- MIN·10Contagious yawningWhy does watching a stranger yawn set you yawning when the yawn does nothing for you?
- MIN·11Crowd crushWhy does a crowd in which everyone pushes to leave faster end up leaving more slowly?
- MIN·12Dark adaptationWhy does seeing in the dark take twenty minutes to acquire and one second of light to lose?
- MIN·13Dawn light and the body clockWhy does the same bright light advance the body clock at dawn and delay it at dusk?
- MIN·14Decision fatigueWhy does a person who chose carefully all morning start taking whatever is put in front of them by evening?
- MIN·15Deja vuWhy can a place you are certain you have never visited feel overwhelmingly familiar anyway?
- MIN·16Delay discountingWhy would someone take ten pounds today over eleven tomorrow, yet wait a year and a day for the eleven?
- MIN·17Doorway effectWhy does walking into the next room so often erase the reason you went there?
- MIN·18Face recognitionHow does the brain recognize a familiar face despite changes in angle, lighting, and age?
- MIN·19Habit formationWhy does a behaviour get easier to repeat and harder to stop the more often it happens?
- MIN·20Habituation versus sensitizationWhy does a repeated noise fade out of awareness while a repeated pain becomes harder to ignore?
- MIN·21Hedonic adaptationWhy does a long-awaited improvement in life stop feeling good within a few months?
- MIN·22Inattentional blindnessHow can something in plain sight go completely unnoticed?
- MIN·23InteroceptionWhy do people who cannot feel their own heartbeat also tend to misread their own emotions?
- MIN·24Just-noticeable differenceWhy does one extra candle brighten a dim room yet disappear entirely in a bright one?
- MIN·25Learned helplessnessWhy does an animal that once could not escape stop trying long after escape has become easy?
- MIN·26Memory reconstructionWhy can a vivid, confidently held memory turn out to be wrong?
- MIN·27Minority influenceWhy can one person who never wavers move a group that unanimously disagrees with them?
- MIN·28Motion sicknessWhy does the passenger reading a map feel sick while the driver steering the same car feels fine?
- MIN·29Nap lengthWhy can a twenty-minute nap leave you sharp while a forty-minute one leaves you groggier than before?
- MIN·30PareidoliaWhy does the mind keep finding faces in clouds, rocks, and machinery?
- MIN·31Practice feedbackWhy does taking away the coach's feedback during practice improve performance a week later?
- MIN·32Prospective memoryWhy is it easier to remember an errand tied to a place you will pass than to a time you will reach?
- MIN·33Self-ticklingWhy can nobody tickle themselves, however hard they try?
- MIN·34Semantic satiationWhy does a familiar word start to look wrong when you stare at it?
- MIN·35Sense of timeWhy can the same amount of clock time feel short in one situation and long in another?
- MIN·36Sleeping on a problemWhy does a night's sleep so often solve a problem that hours of trying could not?
- MIN·37Smell and memoryWhy can a passing smell drag back a childhood scene more sharply than a photograph of it ever does?
- MIN·38Social loafingWhy does each person pull less hard on the rope as more hands join the tug-of-war?
- MIN·39Unfinished tasksWhy does a task you were interrupted in the middle of keep returning to mind when a finished one is gone by evening?
- MIN·40WayfindingHow do people build a mental map of an unfamiliar place?
- MIN·41Why do we procrastinate?Why do we procrastinate?
Philosophy, Ethics & Religion
41- PHI·01A relic proved falseWhy does a venerated object lose its power the moment it is shown to be a forgery, though nothing about the object itself has changed?
- PHI·02Anonymous givingWhy do so many traditions insist that the best giving is the giving nobody sees?
- PHI·03Apology and repairWhy should an apology change anything when the harm it addresses has already happened?
- PHI·04Believing at willWhy can you decide to raise your arm but not decide to believe it is raining?
- PHI·05Burden of proofWhy must the person making a claim prove it, rather than the doubter disprove it?
- PHI·06Collective responsibilityWhy can a crowd be blamed for a harm that no single person in it did enough to be blamed for?
- PHI·07Costly religious demandsWhy do religious groups that demand the most useless-looking sacrifices tend to last longest?
- PHI·08Doing versus allowingWhy does causing a harm feel worse than allowing the very same harm?
- PHI·09Effortless virtueWhy do we admire the person who does right without feeling tempted more than the one who fights temptation and wins?
- PHI·10Faith and evidenceHow can a believer and a sceptic reach opposite conclusions from the same world?
- PHI·11FastingWhy do people who deny themselves food for a month report more pleasure in eating, not less?
- PHI·12Free willIf every choice has a cause behind it, in what sense is any choice yours?
- PHI·13Guaranteed secrecyWhy does a promise that can never be broken get told the things nobody would otherwise admit?
- PHI·14Identity over changeIf every part of a thing is replaced one by one, is it still the same thing?
- PHI·15Imperceptible harmsWhy does an act that harms nobody detectably still seem wrong when everyone does it?
- PHI·16Keeping a rule against the caseWhy should you keep a rule in the one case where breaking it would plainly do more good?
- PHI·17Knowledge from testimonyWhy is it reasonable to believe almost everything you know without ever checking it yourself?
- PHI·18Living interpretation of a fixed textWhy does a scripture whose words never change still need a living court to say what it requires?
- PHI·19Mandated rest daysWhy does a rule forbidding useful work one day in seven leave a community better off rather than poorer?
- PHI·20Moral luckWhy do we judge two equally careless choices differently when only one causes harm?
- PHI·21Non-identity problemWhy is it so hard to name anyone wronged by a choice that decided which person would exist at all?
- PHI·22Paradox of toleranceWhy must a society committed to tolerating everything refuse to tolerate at least one thing?
- PHI·23Pricing the sacredWhy does offering money for certain things make the offer worse rather than more attractive?
- PHI·24Problem of evilWhy would a world made by an all-powerful and wholly good being contain suffering that appears to accomplish nothing?
- PHI·25Problem of inductionWhy can no number of past observations guarantee that the next one will match?
- PHI·26Prohibition of imagesWhy do traditions that forbid any image of the divine permit elaborate description of it in words?
- PHI·27PromisingWhy can saying a few words create an obligation that did not exist a moment earlier?
- PHI·28Ritual legal fictionsWhy do religious legal traditions build devices that satisfy a commandment's letter while plainly sidestepping its point, and why do the devout accept them?
- PHI·29Ritual meaningHow can a repeated ritual strengthen a group even when its practical purpose is unclear?
- PHI·30Scientific testabilityWhat makes a claim genuinely testable rather than merely compatible with any possible result?
- PHI·31Self-defeating aimsWhy do sleep, happiness and spontaneity retreat the harder a person aims at them?
- PHI·32Self-refuting claimsWhy does the claim that every truth is merely relative end up denying itself?
- PHI·33Speaking of the unspeakableWhy do traditions that declare every positive statement about God false still go on speaking about God at length?
- PHI·34Splitting a person in twoIf your brain were divided and each half woke up with your memories in a different body, which one is you -- and why can no answer satisfy?
- PHI·35SupererogationWhy is the heroic act merely praised rather than required, if more good is always better?
- PHI·36Taking moral advice on trustWhy do we accept a doctor's word about a diagnosis yet distrust accepting someone's word about whether an act is wrong?
- PHI·37Talking about what does not existHow can a sentence about Sherlock Holmes be true when there is nothing for the name to pick out?
- PHI·38Underdetermination of theoryWhy can two incompatible theories fit every observation ever recorded, and how does a science choose between them anyway?
- PHI·39VaguenessHow many grains must you take away before a heap stops being a heap?
- PHI·40Weakness of willWhy do people knowingly do the very thing they have already judged to be worse for them?
- PHI·41What makes an argument logically valid?What makes an argument logically valid?
Physics
41- PHY·01A spinning coin's last rattleWhy does a spinning coin rattle faster and faster just before it abruptly falls silent?
- PHY·02Anti-reflective coatingWhy does adding another transparent layer to a lens make it reflect less light rather than more, and why is the leftover reflection purple?
- PHY·03Ballast in a gas dischargeWhy does a lit neon tube draw ever more current as its voltage falls, so it destroys itself unless something limits it?
- PHY·04Bicycle stabilityWhy does a moving bicycle stay upright when the same bicycle standing still falls over?
- PHY·05Brazil-nut effectWhy does the largest and heaviest nut end up on top when a can of mixed nuts is shaken?
- PHY·06Brewster angle glareWhy does glare off water disappear through polarized glasses at one viewing angle but not at others?
- PHY·07BuoyancyWhy does a helium balloon rise through the very air that pulls everything else down?
- PHY·08Convection cellsWhy does a uniformly heated layer of oil organize itself into a pattern of hexagonal cells?
- PHY·09Cracked bell toneWhy can a hairline crack too fine to see rob a large bell of its ring?
- PHY·10Critical massWhy does a lump of uranium do nothing at all until it reaches a certain size, then everything at once?
- PHY·11Doppler effectWhy does a siren change pitch as it passes you, when the siren itself never changes?
- PHY·12Faraday cageWhy does a metal mesh you can see straight through block a radio signal almost completely?
- PHY·13Glass transparencyWhy is ordinary glass transparent to visible light but not to every kind of radiation?
- PHY·14Guided lightWhy can light be made to follow a bending glass fibre instead of leaking out of its side?
- PHY·15Gyroscopic precessionWhy does a spinning top lean over without simply toppling?
- PHY·16Heat diffusion timeWhy does doubling the thickness of a wall delay the heat's arrival by four times rather than two?
- PHY·17Helium voiceWhy does breathing helium change the sound of a voice when the vocal cords are still vibrating at the same rate?
- PHY·18Hourglass flow rateWhy does sand pour through an hourglass at the same steady rate whether the upper bulb is full or nearly empty, when water would not?
- PHY·19Intermediate axis instabilityWhy does a book tossed spinning about its middle axis keep flipping over when the other two spins stay steady?
- PHY·20IrreversibilityWhy does a hot drink always cool, when nothing in the laws of motion forbids the reverse?
- PHY·21Laser coherenceWhy does laser light stay a narrow beam when a bulb's light has spread out within a metre?
- PHY·22Laser coolingWhy does shining light on a cloud of atoms -- pouring energy into it -- leave the cloud colder than any refrigerator can make it?
- PHY·23Maxwell's demonWhy can no clever gatekeeper sort fast molecules from slow ones and get free work out of a room-temperature gas?
- PHY·24Neutrino detectionWhy must a detector built to catch particles that pass straight through the Earth be buried a mile underground?
- PHY·25Night window reflectionsWhy does a window turn into a mirror after dark and back into clear glass by day, when the glass never changes?
- PHY·26Nuclear binding energyWhere does the energy in a nuclear reaction come from if all the particles are still there afterwards?
- PHY·27Radioactive half-lifeIf a single atom never ages and cannot know when it was made, how can a jar of them decay on so dependable a schedule?
- PHY·28ResonanceWhy can a series of small pushes destroy a structure that a single hard shove cannot?
- PHY·29Selective heatingWhy does a microwave oven heat the food but leave the plate cold?
- PHY·30Slippery iceWhy is ice slippery when most other cold solids are not?
- PHY·31Soap film coloursWhy does a colourless soap film show bands of colour that shift as it drains?
- PHY·32SonoluminescenceHow can ordinary sound in a glass of water squeeze a bubble hard enough to make it emit flashes of light?
- PHY·33Static electricityWhy can removing a sweater make your hair stand up?
- PHY·34Superconducting levitationWhy can a magnet hover motionless above a chilled superconductor when no arrangement of ordinary magnets can hold anything stably in mid-air?
- PHY·35Supercooled waterWhy can water sit below freezing as a liquid for hours and then turn solid the instant it is knocked?
- PHY·36Tears of wineWhy does a ring of droplets climb the inside of a wine glass and run back down with nobody disturbing it?
- PHY·37Terminal velocity of raindropsWhy does a raindrop falling from a kilometre up arrive gently instead of at bullet speed?
- PHY·38Thermal conductivity of touchWhy does a metal handle feel colder than a wooden one in the same room?
- PHY·39Vortex sheddingWhy does a steady, tuneless wind make a wire or a mast sing at one definite pitch?
- PHY·40Whip crackWhy does the crack of a whip come from its tip rather than from the hand that swung it?
- PHY·41Why is the sky blue?Why is the sky blue?
Chemistry & Materials
40- CHM·01AdhesionWhy do two smooth surfaces need a liquid between them in order to stick?
- CHM·02Alloy strengthWhy is an alloy usually stronger than either of the pure metals inside it?
- CHM·03Ammonia synthesisWhy does squeezing a gas mixture harder produce more ammonia, when the reaction had already come to rest?
- CHM·04AzeotropesWhy can no amount of careful distilling push ethanol past about ninety-six percent purity?
- CHM·05Butter from creamWhy does beaten cream first stiffen into foam and then, if you keep going, break into butter and water?
- CHM·06Candle wickWhy does a candle need a wick when the wax itself is the fuel?
- CHM·07Carbon allotropesWhy do diamond and pencil lead behave so differently when both are nothing but carbon?
- CHM·08Cast-iron seasoningWhy does a cast-iron pan become non-stick only after years of cooking, and lose it in a single wash?
- CHM·09CatalysisHow can a substance speed up a reaction without being used up by it?
- CHM·10Cement hardeningWhy does concrete set perfectly well underwater, when you would expect it to need to dry out?
- CHM·11Chain-branching explosion limitsWhy can a hydrogen and oxygen mixture sit quietly at one pressure and blow itself apart at a pressure only slightly higher?
- CHM·12Chelate effectWhy does one molecule that grips a metal ion with several arms hold it far more tightly than several separate molecules with one arm each?
- CHM·13Colloid flocculationWhy does a clay suspension that has stayed milky for weeks curdle and drop clear within minutes of a pinch of salt?
- CHM·14CorrosionWhy does iron rust while gold left in the same damp air does not?
- CHM·15Crevice corrosionWhy does stainless steel rot fastest in the one crack where oxygen cannot reach, when oxygen is what rusts ordinary iron?
- CHM·16Detection limitsWhy does a laboratory report a contaminant as \"below the limit of detection\" rather than simply saying none was there?
- CHM·17Disappearing polymorphsWhy can a compound made the same way for years suddenly refuse to crystallize into the form the factory depends on?
- CHM·18Enzyme specificityHow can an enzyme distinguish its target molecule from many similar molecules?
- CHM·19Fibre strength and flawsWhy is a hair-thin glass fibre far stronger than a thick rod of the very same glass?
- CHM·20Flame emission coloursWhy does each metal give a firework its own colour instead of all of them simply glowing hotter?
- CHM·21Freezing-point depressionWhy does scattering salt on ice melt it in cold that would otherwise keep it frozen?
- CHM·22Glass transitionWhy does window glass soften gradually over a range of temperatures instead of melting sharply at one, as its crystalline twin does?
- CHM·23Instant glueWhy does a glue that sits liquid in its tube for years harden the moment it meets a fingertip?
- CHM·24Liquid crystalsHow can a substance flow like a liquid and still steer light with the precision of a crystal?
- CHM·25Molecular handednessWhy can two molecules with identical atoms joined in identical order smell completely different?
- CHM·26Paper chromatographyWhy do the colours in a spot of ink separate as solvent creeps past them?
- CHM·27PassivationWhy does stainless steel stay bright when it is mostly the same iron that rusts away in a nail?
- CHM·28Physical ageing of plasticsWhy does a plastic part that has sat untouched in a drawer for a year snap where the same part fresh from the mould would bend?
- CHM·29Plastic weatheringWhy does a plastic chair left outdoors crumble while the same plastic indoors lasts decades?
- CHM·30Rubber elasticityWhy does a stretched rubber band pull back, and why does it warm when you stretch it?
- CHM·31Sacrificial anodesWhy does bolting a lump of soft zinc onto a steel hull stop the steel from rusting away?
- CHM·32Self-healing coatingsWhy does a paint deliberately filled with tiny bubbles of liquid protect steel better than a tougher, more perfect film?
- CHM·33Semiconductor dopingWhy does adding one impurity atom per million transform a poor conductor into a useful one?
- CHM·34Shape-memory alloysWhy does a bent metal wire snap back to its original shape when you warm it, when bending any other metal is permanent?
- CHM·35Smell codingHow can a nose tell thousands of smells apart using only a few hundred kinds of receptor?
- CHM·36Soap cleaningHow does soap enable water to carry away grease?
- CHM·37SupercoolingWhy can very pure water sit well below freezing as a liquid, and then turn to ice the instant you tap the bottle?
- CHM·38Tempered glassWhy does glass locked in permanent internal stress break less easily than unstressed glass?
- CHM·39Viscoelastic puttyWhy does the same lump of putty bounce like rubber off the floor yet spread into a puddle if left out overnight?
- CHM·40Work hardeningWhy does bending a paperclip make it stiffer exactly where you bent it, right up until the moment it breaks there?
Education & Learning
40- EDU·01Ability groupingWhy can sorting students by ability raise one group's results while lowering another's?
- EDU·02Class-size cutoff rulesWhy can enrolling one extra pupil suddenly cut a class almost in half?
- EDU·03Classroom misconceptionsWhy can a student give the correct answer yet still hold a mistaken underlying model?
- EDU·04Credential inflationWhy do employers start demanding degrees for jobs that were done well for decades without one?
- EDU·05Curse of knowledge in teachingWhy can someone who learned a skill last year explain it better than the person who has taught it for thirty years?
- EDU·06Cut scores on licensing examsWhy must the pass mark that separates a competent practitioner from an incompetent one be argued for rather than measured?
- EDU·07Diagnostic distractorsWhy can a wrong answer option on a test tell a teacher more than the right one does?
- EDU·08Exam equatingWhy can this year's candidates sit an easier paper than last year's and still be judged on the same scale?
- EDU·09Expertise reversalWhy does the teaching method that helps a beginner hold an expert back?
- EDU·10Feedback timingWhy can telling a student the answer too quickly weaken what they learn?
- EDU·11Fluency illusionWhy does the lecture that was easiest to follow leave the least behind a week later?
- EDU·12Grade inflationWhy do grades drift upward decade after decade without students getting any better?
- EDU·13Grade retentionWhy does making a struggling child repeat a year so often leave them further behind than before?
- EDU·14Group projectsWhy does a group of capable students so often hand in work worse than its best member alone would?
- EDU·15Interleaved practiceWhy does mixing problem types during practice feel worse yet leave you better prepared?
- EDU·16Knowledge and comprehensionWhy do two children who decode words equally well understand the same passage so differently?
- EDU·17Learning by explainingWhy does preparing to teach a topic teach you more than preparing to be tested on it?
- EDU·18Learning plateausWhy does progress in a new skill stall for weeks and then jump without extra effort?
- EDU·19Marker disagreementWhy do two trained examiners hand the same essay different grades even when both follow the same rubric?
- EDU·20Note-taking by handWhy do students who write down less by hand remember more than those who type every word?
- EDU·21Paying pupils to readWhy can rewarding children for reading leave them reading less once the rewards stop?
- EDU·22Pilot-to-scale failureWhy does a teaching programme that worked wonderfully in trial fail once every school adopts it?
- EDU·23Prerequisite chainsWhy can two missed weeks of mathematics haunt a student for years when the same absence in history costs little?
- EDU·24Reading acquisitionWhy is learning to read so much harder than learning to speak?
- EDU·25Retrieval practiceWhy does trying to recall an answer improve learning more than rereading it?
- EDU·26Small disruptions in a classroomWhy does a teacher who stops to address trivial interruptions end up losing less lesson time than one who ignores them?
- EDU·27Spacing effectWhy does the same total study time work better spread out than done in one sitting?
- EDU·28Split attention in materialsWhy does a diagram with its labels in a separate key teach less than the same diagram labelled in place?
- EDU·29Summer learning lossWhy do identical school holidays leave some children further ahead and others further behind?
- EDU·30Teacher attrition in hard schoolsWhy do the schools that most need experienced teachers keep losing them fastest?
- EDU·31Teacher expectationsWhy can a teacher's private guess about a pupil end up matching that pupil's later results?
- EDU·32Teaching to the testWhy does a school measure stop meaning what it once did as soon as everyone is judged by it?
- EDU·33Test validityWhy can a scrupulously fair test still misjudge what a student knows?
- EDU·34The fourth-grade slumpWhy do children who read fluently at seven begin to fail at reading by twelve?
- EDU·35The silent classroomWhy does a room full of confused students fall silent when asked whether anyone has a question?
- EDU·36Transfer of learningWhy does something learned thoroughly in one setting so often fail to help in another?
- EDU·37Tutoring versus class sizeWhy does one-to-one tutoring transform results when cutting a class from thirty to twenty-five barely helps?
- EDU·38Unused curriculumWhy does a curriculum keep teaching material almost no student will ever use?
- EDU·39Value-added ranking instabilityWhy can the same teacher rank near the top one year and near the bottom the next?
- EDU·40Vocabulary gap wideningWhy does a small early gap in vocabulary widen every year instead of closing?
Family, Relationships & Human Development
40- FAM·01Adolescent riskWhy do teenagers take risks they can clearly explain are dangerous?
- FAM·02Adolescent-parent conflictWhy does friction with parents peak just as a teenager becomes most capable of reasoning well?
- FAM·03Adoption searchWhy do adoptees raised in warm and stable homes so often set out to find a birth parent anyway?
- FAM·04Arranged and chosen marriagesWhy do marriages arranged by families often report satisfaction climbing over the years while chosen ones drift down?
- FAM·05AttachmentWhy does a young child explore more boldly when a trusted adult is nearby?
- FAM·06Caregiver of last resortWhy does the care of an ageing parent collapse onto one sibling while the others remain willing but uninvolved?
- FAM·07Caregiving loadWhy does caring for an aging parent fall so unevenly within one family?
- FAM·08Child fosteringWhy do households with food to spare still send their own children away to be raised by relatives?
- FAM·09Child word learningHow can a child infer the meaning of a new word from only a few encounters?
- FAM·10Children's playWhy do children spend so much of their time on activities with no obvious purpose?
- FAM·11Divorce contagionWhy does a close friend's separation raise the chance that a stable-looking marriage ends too?
- FAM·12Fading attractionWhy do the very traits that first attracted someone to a partner stop being noticed?
- FAM·13Family estrangementWhy do family cutoffs last for decades when far uglier quarrels between friends are patched up within a year?
- FAM·14Grandmother proximity and fertilityWhy do couples living near a grandmother have more children than equally well-off couples living far from one?
- FAM·15Grandparent asymmetryWhy do grandparents on the mother's side tend to help with grandchildren more than those on the father's?
- FAM·16Grief timingWhy does bereavement often hurt most many months after the funeral rather than in the first raw weeks?
- FAM·17Heritage language lossWhy do the children of immigrants stop speaking the family language even when the parents never switch?
- FAM·18Household money potsWhy do people who share every meal keep separate pots of money and defend them against each other?
- FAM·19Infant night wakingWhy do human infants keep demanding night feeds long after their nutritional needs would require them?
- FAM·20Inherited parenting scriptsWhy do parents who vowed never to repeat their own upbringing find themselves doing exactly that under stress?
- FAM·21Merged kinship termsWhy do many societies call a father and his brother by one word while splitting cousins into sharply different kinds?
- FAM·22Overheard speech and vocabularyWhy does speech aimed at a child build vocabulary when an equal amount of household talk overheard nearby does not?
- FAM·23Post-reproductive lifeWhy do humans live for decades after they can no longer have children?
- FAM·24Proxy argumentsWhy does a couple end up shouting about the dishwasher when neither of them cares about dishes?
- FAM·25Reminiscence bumpWhy do people in old age recall their late teens and twenties far more vividly than the decades since?
- FAM·26Remittances and the children left behindWhy can money sent home by a migrant parent lift a child's school enrolment while lowering what they learn?
- FAM·27Shared memory in couplesWhy do long-married people become unable to recall apart what they retrieve easily together?
- FAM·28Shrinking social circlesWhy does an older person let a wide circle of friends fall away while a young one keeps collecting new ones?
- FAM·29Sibling deidentificationWhy does one sibling's success at something so often make the other quietly drop it?
- FAM·30Sibling differencesWhy can siblings raised in the same household develop very different personalities?
- FAM·31Sibling regressionWhy does an older child start behaving like a baby again once a new baby arrives?
- FAM·32Similar partnersWhy do partners so reliably come from similar backgrounds even when nobody is looking for that?
- FAM·33Stepparent acceptanceWhy can a stepparent who does everything right still take years to be accepted by a child?
- FAM·34Teenage sleep phaseWhy does a teenager who cannot fall asleep at ten find it just as hard to wake at seven?
- FAM·35The small last strawWhy does a long relationship often end over something far smaller than what was forgiven before?
- FAM·36Toddler tantrumsWhy do tantrums peak in the third year and then fade without anyone teaching a child to stop?
- FAM·37Trust asymmetryWhy does one broken promise cost more than many kept ones earn?
- FAM·38Twin language delayWhy do twins begin talking later than single-born children despite growing up amid more speech?
- FAM·39Widowhood and healthWhy does losing a spouse damage a survivor's health more than losing almost anyone else does?
- FAM·40Worst behaviour at homeWhy does a child who is impeccably behaved at school save the tantrums for the parent who cares for them most?
Geography & Regional Studies
40- GEO·01Border prosperity discontinuityWhy can crossing a single line on the ground change incomes sharply when the land on both sides is identical?
- GEO·02BordersWhy do some borders follow rivers and mountains while others run in straight lines?
- GEO·03Cadastral survey patternsWhy can you name the century a countryside was surveyed in from the shape of its fields alone?
- GEO·04City locationWhy do cities often grow around river crossings, harbors, or crossroads?
- GEO·05Coastal fog beltsWhy does a tropical coastline stay cold and fog-bound while the open sea just offshore looks inviting?
- GEO·06Common high pastureWhy is the high pasture above a village so often held in common while the fields below it are owned outright?
- GEO·07Compromise capitalsWhy is the seat of government so often a modest town rather than the country's greatest city?
- GEO·08Cooling with altitudeWhy does the air get colder as you climb a mountain toward the sun?
- GEO·09Delta subsidenceWhy do river deltas start sinking once dams upstream stop the mud from reaching them?
- GEO·10Desert latitudesWhy do the world's great deserts cluster along the same two bands of latitude?
- GEO·11Downdrift beach lossWhy does a groyne built to hold one beach in place strip the beach two miles along the coast?
- GEO·12EnclavesWhy does a village belonging to one country sit wholly inside another, and why does nobody simply trade it away?
- GEO·13Endorheic basinsWhy do some of the world's largest rivers never reach any sea, ending instead in a basin with no outlet?
- GEO·14Fall-line citiesWhy do so many old cities sit exactly at the point where a river stops being navigable?
- GEO·15Functional versus administrative regionsWhy do the regions people actually live and work across so rarely match the ones on the administrative map?
- GEO·16GentrificationWhy does investment that visibly improves a neighbourhood often leave its longest-standing residents worse off?
- GEO·17Induced trafficWhy does a new lane added to a congested road end up just as congested?
- GEO·18Industrial district persistenceWhy does a region keep making one product for a century after the resource that started it ran out?
- GEO·19Landlocked disadvantageWhy does having no coastline cost a country more than its distance to a port alone would explain?
- GEO·20Map projection distortionWhat must a flat map of a round world distort, and why can no projection escape that cost?
- GEO·21Market day rotationWhy do neighbouring market towns hold their markets on different weekdays instead of all choosing the busiest day?
- GEO·22Mass elevation effectWhy does the treeline sit far higher deep inside a mountain mass than on its outer flank at the same latitude?
- GEO·23Modifiable areal unitsWhy can redrawing the districts on a map reverse what the very same data appear to show?
- GEO·24Mountain language diversityWhy can a single mountain valley system hold more languages than a whole plain ten times its size?
- GEO·25Persistent poor neighbourhoodsWhy can a neighbourhood stay poor for a century although almost everyone living there has been replaced?
- GEO·26Phantom traffic jamsWhy does a jam form and then clear on an open motorway with no crash or obstacle anywhere?
- GEO·27Pingo growthWhy does flat Arctic ground heave up a hill of solid ice with no mountain-building anywhere near it?
- GEO·28Place namesWhat can the names on a map tell you about who lived there before?
- GEO·29Primate citiesWhy does one country's largest city dwarf every rival while another's cities sit evenly spaced in size?
- GEO·30River boundaries that shiftWhy does a boundary set in midriver follow the water when the channel creeps but stay behind when it jumps?
- GEO·31River captureWhy can the divide between two river basins creep across the land, handing one river's headwaters to its neighbour?
- GEO·32River name survivalWhy do a region's river names outlast the language of every people who have ruled it?
- GEO·33Rural depopulationWhy do people keep leaving places their families lived in for generations?
- GEO·34Silted harboursWhy do the oldest quays of many port cities now stand well inland from the working docks?
- GEO·35Sinking streams in karstWhy does a stream in limestone country sink into the ground and rise again in a valley it never flowed toward?
- GEO·36Time zonesWhy does the world keep clocks that deliberately disagree by whole hours?
- GEO·37Town spacingWhy do towns on an open plain space themselves out at surprisingly regular distances?
- GEO·38Urban heat islandsWhy is a city several degrees warmer than the countryside surrounding it?
- GEO·39Where parks end upWhy do a country's protected wildernesses sit almost entirely on land nobody wanted to farm?
- GEO·40Windward wealth divideWhy is the poorer half of so many old industrial cities the eastern half?
History, Society & Anthropology
40- HIS·01Age heapingWhy do old census returns report far more people aged exactly thirty, forty and fifty than the years either side?
- HIS·02Ancient population estimatesWhy can excavating an ancient city more thoroughly still leave its population uncertain?
- HIS·03Apprenticeship indenturesWhy would a master craftsman spend years training the apprentice who will one day compete with him?
- HIS·04Bridewealth and dowryWhy does wealth flow toward the bride's family in some societies and toward the groom's in others?
- HIS·05Calendar driftWhy do human calendars need leap days and extra months at all?
- HIS·06Ceramic seriationHow can a pile of undated potsherds be put in chronological order without a single absolute date?
- HIS·07Conspicuous displayWhy do people spend the most on the possessions that do them the least practical good?
- HIS·08Cross-cousin marriageWhy do many societies forbid marriage to one kind of cousin while urging it with another?
- HIS·09DomesticationHow did wild plants and animals become the crops and livestock we now depend on?
- HIS·10East-west diffusionWhy did crops and inventions spread further along a continent's width than along its length?
- HIS·11Famine amid plentyWhy can people starve in a year when their region harvested enough food to feed everyone?
- HIS·12Festival calendarsWhy do a society's largest festivals keep falling at the same points every year?
- HIS·13Formulaic oral compositionHow did singers hold epics of thousands of lines steady across generations with nothing written down?
- HIS·14Gift obligationWhy does a gift create a debt that a payment of the same value would not?
- HIS·15Grain and taxationWhy did early states tax grain when tubers and livestock fed their people just as well?
- HIS·16Herd dispersal among kinWhy do herders scatter their animals among distant kin instead of keeping the herd together where they can watch it?
- HIS·17Historical silenceWhat can historians responsibly infer when the people most affected left few written records?
- HIS·18Late marriage and population restraintWhy did some pre-industrial populations stop growing well before their land could no longer feed them?
- HIS·19Liminality in initiationWhy do initiation rites so often put the initiate through a spell of isolation, hunger or humiliation?
- HIS·20Marrying outside the groupWhy do so many unrelated societies forbid marriage within a person's own group?
- HIS·21Measurement standardizationWhy did rulers spend so much effort fixing the exact size of a bushel or a yard?
- HIS·22New crops and population growthWhy did one new crop change a continent's population more than a century of good harvests?
- HIS·23Oral traditionHow can a long story survive centuries almost intact without ever being written down?
- HIS·24Origin of moneyHow did people get from swapping goods to accepting tokens worth nothing in themselves?
- HIS·25Origin of the stateWhy did farming societies end up with rulers and taxes when foraging societies almost never did?
- HIS·26Post-plague wagesWhy did a plague that killed a third of Europe leave the survivors better paid?
- HIS·27Preservation biasWhy does the archaeological record hold far more pottery than the clothing everyone actually wore?
- HIS·28Radiocarbon calibration plateausWhy can a more precise radiocarbon measurement still leave several possible calendar dates?
- HIS·29Revolution timingWhy do revolutions so often break out after conditions have started to improve?
- HIS·30Scattered strip farmingWhy did villagers work many scattered strips instead of one consolidated field?
- HIS·31Scribal abbreviationWhy did scribes keep abbreviating words long after the parchment shortage that first made abbreviation worthwhile had passed?
- HIS·32Second serfdomWhy did serfdom tighten in eastern Europe at the very time it was dissolving in the west?
- HIS·33Sharing under scarcityWhy do the peoples living with the least reliable food supply give away the most of what they catch?
- HIS·34Societal collapseWhy do complex societies sometimes collapse rather than simply shrink?
- HIS·35Technology lossWhy have societies forgotten skills their ancestors clearly possessed, with no disaster to explain it?
- HIS·36Trade diasporasWhy did long-distance trade so often pass through settled communities of resident foreigners?
- HIS·37Unplanned settlement formWhy do old towns on different continents share street patterns that nobody ever designed?
- HIS·38Urban mortalityWhy did cities kill more people than they birthed for most of recorded history?
- HIS·39Witch-hunt cascadesWhy did accusations of witchcraft multiply fastest in the years a community was already suffering?
- HIS·40Writing inventionHow did visible marks become systems capable of representing spoken language?
Home, Consumer & Everyday Life
40- HOM·01Bass through wallsWhy can you hear a neighbour's bass through the wall but not their conversation?
- HOM·02Battery ageingWhy does keeping a phone charged to full shorten the life of its battery?
- HOM·03Charm pricingWhy does a price ending in 99 sell better than the round number just above it?
- HOM·04Cloudy ice cubesWhy does a home ice cube turn white in its middle when the water it froze from was perfectly clear?
- HOM·05ClutterWhy do possessions accumulate in a home faster than they leave it?
- HOM·06Coiled extension leadWhy can an extension lead overheat while coiled on its reel yet run cool once the same cable is unwound?
- HOM·07Cold floorsWhy does a tiled floor feel colder than a carpet in the same room at the same temperature?
- HOM·08Cold-spot condensationWhy does mould appear on one cold corner of a room that is heated throughout?
- HOM·09Cooling a room with a fridgeWhy does leaving the fridge door open in a closed room make the room warmer rather than cooler?
- HOM·10Dishwasher dryingWhy do plastic containers come out of a dishwasher wet when the glasses beside them are dry?
- HOM·11Dry drain trapWhy does a bathroom nobody uses start to smell of drains?
- HOM·12Evaporative dryingWhy do clothes dry faster on a windy day than on a merely warm one?
- HOM·13Fabric softener and absorbencyWhy do towels dry you less well after the wash that made them feel softest?
- HOM·14Flat-pack bracingWhy does a flat-pack cabinet stay wobbly until its flimsiest panel is fixed to the back?
- HOM·15Freezer burnWhy does food dry out inside a sealed freezer where nothing can evaporate away?
- HOM·16Full freezer efficiencyWhy does a full freezer cost less to run than a mostly empty one?
- HOM·17Ghost glow in LED bulbsWhy do some LED bulbs keep glowing faintly after the switch is turned off?
- HOM·18Home insulationWhy does insulating a house save more than simply turning the heating down?
- HOM·19House dustWhy does a room nobody enters still need dusting every few weeks?
- HOM·20InsuranceWhy is buying insurance sensible even though, on average, it loses money?
- HOM·21LED dimmer incompatibilityWhy does a new LED bulb flicker or buzz on the dimmer that ran the old one smoothly?
- HOM·22Leftover spoilageWhy do leftovers spoil faster than the same food did before it was cooked?
- HOM·23LimescaleWhy does boiling water leave a hard crust in the kettle when the same water leaves nothing in a glass?
- HOM·24Night-time alarm chirpWhy does a smoke alarm always start chirping for a new battery in the middle of the night?
- HOM·25Pantry moth persistenceWhy does an infestation of pantry moths return after every visible moth has been cleared out?
- HOM·26Radiant chill indoorsWhy can a room held at the same temperature feel chilly in January and pleasant in June?
- HOM·27Repair economicsWhy is it so often cheaper to replace a broken device than to mend it?
- HOM·28Review polarizationWhy do online ratings pile up at five stars and one star with almost nothing in between?
- HOM·29Rice cooker cutoffWhy does a rice cooker with no timer or sensor switch itself off exactly when the rice is done?
- HOM·30Rolling boil versus simmerWhy does a furious rolling boil cook potatoes no faster than a gentle simmer?
- HOM·31Screws in end grainWhy does a screw driven into the end of a board hold so much worse than the same screw in its face?
- HOM·32Setting a stainWhy can washing a stain in hot water make it impossible to remove?
- HOM·33SharpnessWhy does a sharp knife cut with so much less force than a dull one?
- HOM·34Shower curtain driftWhy does a shower curtain swing inward against your legs instead of being pushed away by the water?
- HOM·35Subscription inertiaWhy do people keep paying every month for a service they know they no longer use?
- HOM·36Thermostat overshootWhy does turning the thermostat far above the temperature you want not heat the room any faster?
- HOM·37Unit-price inversionWhy does the larger pack on the shelf sometimes cost more per unit than the small one?
- HOM·38Warranty timingWhy do appliances seem to fail just after the warranty runs out?
- HOM·39Washing machine odourWhy does a washing machine used only on cool cycles begin to smell?
- HOM·40Wobbly tableWhy does a four-legged table rock on an uneven floor when a three-legged stool never does?
Mathematics & Statistics
40- MAT·01Bayesian updatingHow should new evidence change the probability we assign to a belief?
- MAT·02Benford's lawWhy do the leading digits of real-world numbers favour 1 far more often than 9?
- MAT·03Birthday problemWhy does a room of only twenty-three people probably contain a shared birthday?
- MAT·04Block design existenceWhy can a schedule pairing every team exactly once exist for some team counts and for no others?
- MAT·05Catastrophic cancellationWhy can subtracting two highly accurate numbers leave an answer with no correct digits at all?
- MAT·06Cellular automataWhy can a grid of cells obeying three trivial rules build structures nobody wrote into them?
- MAT·07Censored follow-upHow can a study report five-year survival when most of its patients were watched for two?
- MAT·08Coastline paradoxWhy does a coastline get longer every time you measure it with a shorter ruler?
- MAT·09Completing a collectionWhy does collecting the last few stickers in a set take longer than collecting all the rest?
- MAT·10Compositeness without factorsHow can a number be proved not prime by someone who cannot name a single factor of it?
- MAT·11Confounded factorial effectsWhy does testing eight factors in eight runs hide some of the answers inside each other?
- MAT·12Corner solutionsWhy does the best way to allocate limited resources always sit at a corner of the possibilities?
- MAT·13Curse of dimensionalityWhy does measuring more features of each item make the items harder rather than easier to tell apart?
- MAT·14Cyclic majoritiesHow can a group prefer A to B, B to C, and C to A when no member of it does?
- MAT·15Dropping incomplete recordsWhy can discarding the rows with blanks distort an answer more than filling the blanks in would?
- MAT·16Envy-free divisionWhy does letting one child cut the cake and the other choose first end the argument?
- MAT·17Error cancellation in averagesWhy can the average of many rough guesses beat nearly every guess that went into it?
- MAT·18Factorial explosionWhy is a shuffled deck of cards almost certainly in an order no deck has ever held before?
- MAT·19Fair lottery over the integersWhy can no lottery give every whole number an equal chance of being drawn?
- MAT·20Hairy ball theoremWhy must there always be at least one place on Earth where the wind is not blowing?
- MAT·21IncompletenessCan a system of arithmetic prove every true statement about numbers?
- MAT·22Infinitude of primesWhy can the prime numbers never run out?
- MAT·23Inspection paradoxWhy is the bus you board almost always more crowded than the average bus on the route?
- MAT·24Long-run chain behaviourWhy does a process with no memory beyond its current state settle into a fixed long-run pattern?
- MAT·25Monty Hall problemWhy does switching your choice of door improve the odds when only two doors are left?
- MAT·26Negative edge weightsWhy does taking the cheapest next step always work until one road costs less than nothing?
- MAT·27Optimal stoppingWhy should you turn down the first several candidates you interview no matter how good they seem?
- MAT·28Paper folding limitWhy can a sheet of paper not be folded in half more than about seven times, no matter how large it is?
- MAT·29Pigeonhole principleWhy must two people in a large city have exactly the same number of hairs on their head?
- MAT·30Random walk recurrenceWhy is a wanderer stumbling at random across a plain certain to find home, while one wandering in three dimensions may never?
- MAT·31Regression to the meanWhy is an exceptional performance usually followed by a more ordinary one?
- MAT·32Sample size versus populationWhy does a poll of a thousand people describe a nation of millions no less accurately than it describes a small town?
- MAT·33Simpson's paradoxHow can a treatment help every subgroup and still appear to harm the population as a whole?
- MAT·34Sizes of infinityHow can one infinite set contain more members than another?
- MAT·35Small-world networksWhy can a message reach a stranger on the far side of the world in only a handful of steps?
- MAT·36Survivorship biasWhy did reinforcing the bullet holes on returning bombers armour exactly the wrong part of the plane?
- MAT·37Testing many questions at onceWhy does a careful study asking twenty harmless questions usually turn up one striking result?
- MAT·38Time average versus ensemble averageWhy can a bet with a favourable average outcome still ruin nearly everyone who keeps taking it?
- MAT·39Ubiquity of the bell curveWhy do measurements of completely unrelated things pile up into the same bell-shaped curve?
- MAT·40Unstable averagesWhy can the average income in a room change completely when one more person walks in?
Military, Conflict & Strategic Studies
40- MIL·01Airborne drop dispersionWhy did badly scattered parachute drops sometimes confuse the defender more than tidy ones?
- MIL·02Amphibious buildupWhy is an amphibious landing decided less by the size of the fleet than by the width of the beach?
- MIL·03Asymmetric warfareHow can a far weaker force defeat a far stronger one?
- MIL·04Blockade and resolveWhy can squeezing a country's economy strengthen the very government it was meant to weaken?
- MIL·05Casualty evacuationWhy does a medical system that treats fewer casualties near the front save more of them?
- MIL·06Chemical protective postureWhy does the mere threat of a chemical attack blunt an army that is never actually attacked?
- MIL·07Civilian controlWhy does an armed force take orders from an unarmed government?
- MIL·08Coalition frictionWhy can two allied armies fighting together achieve less than either would achieve alone?
- MIL·09Combatant identificationWhy do armies dress their soldiers to be seen when staying hidden would save lives?
- MIL·10Convoy protectionWhy does gathering merchant ships into one large cluster make fewer of them sink?
- MIL·11Culminating point of an offensiveWhy must an army that keeps winning stop advancing before anyone has defeated it?
- MIL·12Defender's advantageWhy can a defender hold a position against an attacking force several times its size?
- MIL·13Delegated launch authorityWhy would a state make itself safer by giving away its own power to decide on retaliation?
- MIL·14DeterrenceHow can a weapon prevent a war precisely by never being used?
- MIL·15Doctrine lagWhy does a victorious army so often enter the next war with exactly the wrong doctrine?
- MIL·16Emissions controlWhy does a warship with the finest radar afloat often choose to keep it switched off?
- MIL·17EscalationWhy do disputes so often grow far past the point either side originally wanted?
- MIL·18Fading advantage of a new weaponWhy does a weapon that wins decisively on its first use rarely win that way twice?
- MIL·19Feigned retreatWhy can an army that turns and runs away destroy the force chasing it?
- MIL·20Fleet in beingWhy can a weaker fleet that never leaves harbour still pin down a stronger one?
- MIL·21Fog of warWhy do two commanders given the same information reach opposite conclusions?
- MIL·22Holding a reserveWhy does a commander keep the freshest troops out of the fight until the battle is nearly lost?
- MIL·23Holding conquered groundWhy is beating an army so much cheaper than governing the territory it was defending?
- MIL·24Maritime chokepointsWhy can holding a few narrow straits matter more than commanding an entire ocean?
- MIL·25Military logisticsWhy do campaigns fail more often from supply than from losing battles?
- MIL·26Mine warfareWhy can a few dozen cheap sea mines close a strait that a whole fleet cannot force?
- MIL·27Mission commandWhy does an army built on obedience train its junior officers to depart from the plan?
- MIL·28Munitions stockpilesWhy can a country hold years of ammunition in peacetime and empty the shelves in a month of war?
- MIL·29Obsolete fortificationsWhy did walls that had protected cities for centuries stop working within a single lifetime?
- MIL·30Peace negotiationWhy can two sides prefer a costly conflict even when both would benefit from peace?
- MIL·31Peacekeeping mandatesWhy can a scrupulously impartial peacekeeping force make one of the sides fight harder?
- MIL·32RoutWhy does a unit break and run after losing only a small fraction of its strength?
- MIL·33Security dilemmaWhy can two rivals both spend more on defence and both end up less safe?
- MIL·34Shoot-and-scoot artilleryWhy do modern gun crews displace after a handful of rounds when older batteries stayed put for hours?
- MIL·35Siege camp attritionWhy did a besieging army so often sicken and starve before the city it had surrounded?
- MIL·36Stealth tradeoffWhy does making an aircraft hard for radar to see make it worse at nearly everything else?
- MIL·37Strategic deceptionWhy can gathering more independent confirmations of an enemy's plan leave you more certain of a lie?
- MIL·38Training cadre bottleneckWhy does doubling an army's size take far longer than doubling its equipment?
- MIL·39Unusable intelligenceWhy would a commander deliberately not act on information they know to be correct?
- MIL·40Verified disarmamentWhy can a weapons treaty be enforced by counting things that are not the weapons themselves?
Sports, Exercise & Recreation
40- SPT·01Altitude trainingWhy do athletes go and train where there is less oxygen to breathe?
- SPT·02Athlete biological passportWhy do drug testers now watch an athlete's own blood values over years instead of looking for the drug itself?
- SPT·03Breathing urgeWhy does the urge to breathe come from carbon dioxide building up rather than from oxygen running out?
- SPT·04Carving ski sidecutWhy does a ski cut a clean arc when the skier only tips it on edge and never steers it sideways?
- SPT·05Choking under attentionWhy does a practised movement fall apart as soon as the athlete thinks about how they do it?
- SPT·06Climbing grade driftWhy does a climbing route rated hard in one decade quietly become a moderate one later without a single hold changing?
- SPT·07Climbing versus descending weightWhy does the rider who is dropped on every climb come past everyone else on the descent?
- SPT·08Delayed muscle sorenessWhy do muscles often become sore a day after unfamiliar exercise rather than immediately?
- SPT·09Doping arms raceWhy do athletes who would rather compete clean still feel pushed to dope even where testing is real and penalties are severe?
- SPT·10Drafting in the pelotonWhy does a group of riders who all refuse to lead travel slower than any one of them alone?
- SPT·11Early sport specializationWhy do children who commit to one sport early often stall or quit before those who kept playing several?
- SPT·12Early strength gainsWhy does a beginner get much stronger in the first month without their muscles growing at all?
- SPT·13Equipment bans in sportWhy would a governing body outlaw a suit or a racket that would have made every competitor faster?
- SPT·14Even pacingWhy does an even pace beat a fast start over a long race?
- SPT·15Exercise-associated hyponatremiaWhy can a marathon runner who drinks steadily at every station collapse from having too much water rather than too little?
- SPT·16Falling recordsWhy do athletic records keep improving when the human body has not changed?
- SPT·17Figure-skating spinWhy does a figure skater rotate faster after pulling in their arms?
- SPT·18Forearm pump in climbingWhy does a climber's grip fail long before their arms tire, then recover after a minute of hanging straight-armed?
- SPT·19Golf ball dimplesWhy does a roughened golf ball fly nearly twice as far as a perfectly smooth one?
- SPT·20Group-stage tiebreaksWhy can a team win two of its three group matches and go home while a team that won only one advances?
- SPT·21HandicappingHow can a game stay genuinely interesting between players of very different ability?
- SPT·22Heat acclimatizationWhy does an athlete who has trained through two weeks of heat finish a hot race with a lower core temperature while sweating far more?
- SPT·23Home advantageWhy do teams win more often at home, in every sport anyone has measured?
- SPT·24Interval trainingWhy can running hard in short bursts with rest between them build more endurance than running the same distance steadily?
- SPT·25Judging order effectsWhy does the same gymnastics routine score higher when it is performed late in the running order than early?
- SPT·26Junior championsWhy do the children who win national age-group titles so rarely become the adults who win senior ones?
- SPT·27Knockout upsetsWhy does the strongest entrant in a knockout tournament win it far less often than their record suggests?
- SPT·28Left-hander advantageWhy are left-handers so overrepresented in fencing and boxing but not in golf or rowing?
- SPT·29Magnus effectHow can a spinning ball curve sideways through perfectly still air?
- SPT·30Muscle crampWhy do cramps seize a player late in a match even when they have drunk plenty and taken salt all day?
- SPT·31OvertrainingWhy can an athlete who trains harder every week for a month end up measurably slower than when they started?
- SPT·32Penalty aimingWhy should a penalty taker sometimes deliberately aim at their weaker side?
- SPT·33Relative age effectWhy are elite young players born disproportionately in the months just after the age-group cutoff?
- SPT·34Rowing crew scaleWhy does an eight travel faster than a single sculler when every rower in it produces no more power than the sculler does?
- SPT·35Sailing upwindWhy can a sailing boat travel toward the very wind that is pushing against it?
- SPT·36Tendon rehabilitation loadingWhy does resting a damaged tendon completely leave it weaker than carefully loading it while it still hurts?
- SPT·37Trail braidingWhy does a footpath across a wet meadow end up ten times wider than the line anyone actually walked?
- SPT·38Training taperWhy does resting before a competition make an athlete stronger than training through it?
- SPT·39Video review boundariesWhy did adding video review, which settles exactly what happened, make offside decisions feel more arbitrary than the linesman's guess ever did?
- SPT·40Weight cuttingWhy do fighters starve and dehydrate to reach a weight limit and then put the weight straight back on before the bout?
Travel, Tourism & Hospitality
40- TRV·01Airport layoutWhy does an airport make you walk past shops to reach your gate?
- TRV·02Airport slot grandfatheringWhy did airlines fly nearly empty aircraft between busy airports rather than cancel flights nobody wanted?
- TRV·03Asymmetric flight timesWhy does the same flight take noticeably longer in one direction than the other?
- TRV·04AuthenticityWhy does a place feel less authentic the easier it becomes to visit?
- TRV·05Baggage reconciliationWhy must a checked bag be hunted down and pulled off the aircraft when its owner simply fails to board?
- TRV·06Boarding orderWhy does boarding an aircraft neatly from the back forward end up slower than letting people on at random?
- TRV·07Border queue surgesWhy does a passport desk that handles the day's arrivals easily on average still produce hour-long queues?
- TRV·08Buffet holding timeWhy can a hotel buffet dish that still feels comfortably warm be far more dangerous than one that has gone cold?
- TRV·09Contingency fuelWhy does a pilot who loads extra fuel for safety guarantee that the flight burns more of it?
- TRV·10Cruise call clusteringWhy do four cruise ships crowd one small port on a Tuesday morning and none of them appear on Wednesday?
- TRV·11Different prices, same roomWhy do two guests in identical hotel rooms pay very different prices?
- TRV·12Frequent-flyer currencyWhy can an airline earn more from giving its seats away than from selling them?
- TRV·13Ground delay programsWhy does air traffic control hold an aircraft at its gate for an hour when the sky ahead of it is empty?
- TRV·14Guest-rightWhy did societies along the hardest routes make sheltering a stranger a sacred duty rather than a paid service?
- TRV·15Honeypot sitesWhy does a national park funnel its visitors into a handful of crowded spots instead of spreading them thinly?
- TRV·16Hub-and-spoke routingWhy does an airline fly you away from your destination in order to get you there?
- TRV·17Inflight tasteWhy does food that tasted fine on the ground taste bland at cruising altitude?
- TRV·18Landmark restaurantsWhy do the restaurants nearest a famous landmark serve the worst food and still stay full?
- TRV·19Length-of-stay controlsWhy would a hotel with rooms standing empty refuse a two-night booking it could easily accommodate?
- TRV·20Missed connectionsWhy can a fifteen-minute delay on one flight cost some passengers an entire day?
- TRV·21Mixed-speed rail capacityWhy does running one fast express down a busy line cost the timetable several slower trains?
- TRV·22OverbookingWhy do airlines and hotels deliberately sell more seats and rooms than they have?
- TRV·23OvertourismWhy can a place be spoiled by the very people who came to admire it?
- TRV·24Package tour pricingWhy can a package holiday that includes the same flight cost less than buying that flight alone?
- TRV·25Randomized screeningWhy does picking travellers for extra screening at random catch more than screening the ones who look most suspicious?
- TRV·26Remembered holidaysWhy can a two-week holiday be remembered almost entirely by its last afternoon?
- TRV·27Return-trip effectWhy does the journey out feel longer than the identical journey home?
- TRV·28Room turnover windowWhy does a hotel leave its rooms standing empty for four hours in the middle of every day?
- TRV·29Schedule paddingWhy does the same flight take half an hour longer in the timetable than it did thirty years ago?
- TRV·30Seating by the windowWhy does a nearly empty restaurant seat its first customers where everyone in the street can see them?
- TRV·31Shoulder-season price cliffWhy does a room's price halve in the week either side of the peak when the town is still nearly full?
- TRV·32Single-queue serviceWhy does one long queue serve people better than several short ones?
- TRV·33Souvenir craft convergenceWhy do the handicrafts sold in tourist towns a thousand miles apart end up resembling each other rather than their own regions?
- TRV·34Step climbWhy does an airliner climb higher partway through a long flight instead of settling at its best altitude from the start?
- TRV·35The dish nobody ordersWhy does a menu carry a dish priced so high that almost nobody orders it?
- TRV·36Tipping customsWhy does paying extra for service that nobody can require of you persist in some countries and vanish in others?
- TRV·37Tourism seasonalityWhy does a resort town's population multiply and then collapse every year?
- TRV·38Traveler herdingWhy do travellers crowd into the same few places while equally good ones stay empty?
- TRV·39Two-way ratingsWhy do guest and host ratings both drift up to near-perfect once each side can rate the other?
- TRV·40Visa reciprocityWhy does a country make visitors from one place wait months for a visa while waving through visitors who spend exactly the same money?