<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1234231587678</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=1234231587678"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/1234231587678"/>
		<updated>2026-06-16T22:34:16Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2347:_Dependency&amp;diff=414603</id>
		<title>2347: Dependency</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2347:_Dependency&amp;diff=414603"/>
				<updated>2026-06-14T19:14:58Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2347&lt;br /&gt;
| date      = August 17, 2020&lt;br /&gt;
| title     = Dependency&lt;br /&gt;
| image     = dependency.png&lt;br /&gt;
| titletext = Someday ImageMagick will finally break for good and we'll have a long period of scrambling as we try to reassemble civilization from the rubble.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Technology architecture is often illustrated by a [https://www.guru99.com/images/1/102219_1135_TCPIPvsOSIM1.png stack diagram], in which higher levels of rectangles indicate components that are dependent on components in lower levels. This is analogous to a physical tower of blocks, in which higher blocks rest on lower blocks. The stack in this cartoon bears a striking resemblance to a physical block tower, suggesting the danger that the tower will lose its balance when a critical piece is removed, in this case a piece near the bottom, labeled as being maintained by a single semi-anonymous person located somewhere relatively unimportant doing it for their own unknown reasons without fame or acknowledgement. The concept of balance is not intended to be communicated by a stack diagram, making this a humorously absurd extension of a well-known diagram style.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Background and examples===&lt;br /&gt;
Taking code re-usability and modularization to its logical extreme has been a long-time tenet for programmers; programming began as a slow task on very memory-constrained systems, utilizing punch cards and days of delay waiting to discover a bug, so that reuse made things possible that otherwise wouldn't be.  Once systems became small, fast, and able to hold a lot of data, the ability to provide higher and higher degrees of automation made reusable libraries a huge engine behind the development of technology.  By outsourcing what would seem like basic functions, such as string manipulation, to other libraries, developers waste less time reinventing the wheel, so the philosophy goes (or as Beret Guy's business practices literally: [[2140: Reinvent the Wheel]]), and thus many tiny packages, many of which contained only one function, became popular dependencies. This was especially true in Unix and Linux, where an entire program is commonly used for one small task, and programs exist to tie others together into powerful shell scripts.&lt;br /&gt;
* {{w|Bash (Unix shell)|'''Bash shell'''}}&lt;br /&gt;
: The bash shell, which is used by virtually ''every'' Unix-like and Linux derivatives and that is used by many system administrators has been maintained since around 1993 by one single person from Ohio, US for over 30 years (as of 2025): Chet Ramey&amp;lt;ref&amp;gt;[https://tiswww.case.edu/php/chet/ Chet Ramey, Personal website (Last updated: Thu Sep 25 10:49:15 EDT 2014)]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://web.archive.org/web/20160811002459/http://www.computerworld.com.au/article/222764/ &amp;quot;The A-Z of Programming Languages: BASH/Bourne-Again Shell, (2008)&amp;quot; ]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* '''{{w|ImageMagick}}'''&lt;br /&gt;
:ImageMagick, mentioned in the title text, is a popular, standalone utility released in 1990 that is used for performing transformations between various graphics file formats, and various other transformations.  While there are also numerous libraries and APIs for performing these tasks within larger programs, ImageMagick is so popular and easy to use that many programs use its API or just find it easier to {{w|Shell (computing)#Other uses|shell out}} to ImageMagick to perform a necessary transformation. They therefore {{w|Dependency hell|depend}} on ImageMagick, and would break if ImageMagick were to disappear.&lt;br /&gt;
* '''{{w|OpenSSL}}''': {{w|Heartbleed|Heartbleed bug}}&lt;br /&gt;
: In 2014, the Heartbleed revealed a significant portion of the internet was vulnerable to attack due to a bug in OpenSSL, a free and open-source library facilitating secure communication. One headline at the time demonstrated this comic in real life: [https://www.buzzfeed.com/chrisstokelwalker/the-internet-is-being-protected-by-two-guys-named-st &amp;quot;The Internet is Being Protected by Two Guys Named Steve&amp;quot;]. The aforementioned Steves were overworked, underfunded, and largely unknown volunteers whose efforts nevertheless underpinned the security of major websites throughout the world. Randall provided a concise, helpful explanation of the bug in [[1354: Heartbleed Explanation]].&lt;br /&gt;
&lt;br /&gt;
* '''{{w|Core-js}}'''&lt;br /&gt;
: {{w|Node.js}} (a platform for JavaScript) and Python are two modern ecosystems providing huge stashes of centralized libraries where developers of the world can come together to stand on the shoulders of all the small useful libraries they make for each other, to make new ones that are more and more powerful, and also more and more prone to sudden new unexpected bugs somewhere in the dependency chain.  JavaScript was designed to be an easy to use front end scripting language, not a basic and core backend language as users of node.js's {{w|npm (software)|NPM}} package manager have made it be.  While in theory, such a system may sound good for developers who would need to write and maintain fewer lines of code, systems which are highly optimized are also highly susceptible to rapid changes. For example, the famous left-pad incident in the NPM package manager left many major and minor web services which depended on it unable to build. [https://www.theregister.com/2016/03/23/npm_left_pad_chaos/ A disgruntled developer unpublishing 11 lines of code was able to break everybody's build, because everyone was using it.]&lt;br /&gt;
&lt;br /&gt;
: In 2020, the sole maintainer of the library [https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md core-js], used by 75% of the top 100 websites to polyfill in new JavaScript features for old browsers and depended on by tons of popular libraries such as Babel, ran over two dark-clothed drunk pedestrians, one of whom was laying down, at night in Russia while speeding in front of a crossing. He had quit previous jobs to be able to maintain core-js, resulting in not having enough money to settle, and he was sentenced to 18 months in an open prison ([https://ru.wikipedia.org/wiki/%D0%9A%D0%BE%D0%BB%D0%BE%D0%BD%D0%B8%D1%8F-%D0%BF%D0%BE%D1%81%D0%B5%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5 &amp;quot;колония-поселение&amp;quot;]).&lt;br /&gt;
&lt;br /&gt;
* '''xz tool'''&lt;br /&gt;
: Leading up to 2024, a user account going by the name Jia Tan gained the trust of ''{{w|XZ Utils|xz}}'''s (one and only) maintainer.  Over the course of 3 years, Jia Tan cleverly inserted a patch into ''xz'' that allows a remote user to gain root-level access via the common ssh protocol. This {{w|XZ_Utils_backdoor|compromised version of ''xz''}} was released in March 2024.  Another programmer, Andres Freund, found this backdoor before ''xz'' was widely distributed.&lt;br /&gt;
&lt;br /&gt;
* '''SQLite'''&lt;br /&gt;
: The project is maintained by three people working at a small private company.&lt;br /&gt;
: SQLite is used practically everywhere: Android, iOS, macOS, Windows, Chrome, Firefox, Safari, embedded systems, and IoT devices. It runs serverless, entirely within a single C library, and exists in [https://sqlite.org/mostdeployed.html trillions of instances]. It may well be the most widely deployed software in history, especially when measured per developer.&lt;br /&gt;
&lt;br /&gt;
* '''IANA tz database'''&lt;br /&gt;
: The project is maintained by Paul Eggert, who was born in Nebraska&lt;br /&gt;
&lt;br /&gt;
* '''sudo'''&lt;br /&gt;
: sudo is a shell command on Unix-like operating systems that enables a user to run a program with the security privileges of another user, by default the superuser. Since it has become open-source in 1994, its only maintainer software engineer Todd C. Miller (whose profile picture on Github is taken from [[149: Sandwich]], which also gave the project its sandwich logo) from Colorado, [https://github.com/sudo-project/sudo/graphs/contributors author of 97% of the project's over 13,000 commits]. In February 2026, he announced that he was looking for someone to take over.&lt;br /&gt;
&lt;br /&gt;
The current model of libraries and open-source development (topics which Randall has addressed extensively in the past) relies heavily on the free and continued dedication of unpaid hobbyists. Though some major projects such as Linux may be able to garner enough attention to build an organization, many smaller projects, which are in turn reused by larger projects, may only be maintained by one person, either the founder or another who has taken the torch. Maintaining libraries requires both extensive knowledge of the library itself as well as any use cases and the broader community around it, which usually is suited for maintainers who have spent years at the task, and thus cannot be easily replaced. Thus, there are many abandoned projects on the internet as people move on to greener pastures. Far from the days of backwards compatibility, that's usually not a problem, unless a project happens to be far up the dependency chain, as illustrated, in which case there may be a crisis down the road for both the developers and the users down the chain.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A tower of blocks is shown. The upper half consists of many tiny blocks balanced on top of one another to form smaller towers, labeled:]&lt;br /&gt;
:All modern digital infrastructure&lt;br /&gt;
&lt;br /&gt;
:[The blocks rest on larger blocks lower down in the image, finally on a single large block. This is balanced on top of a set of blocks on the left, and on the right, a single tiny block placed on its side. This one is labeled:]&lt;br /&gt;
:A project some random person in Nebraska has been thanklessly maintaining since 2003&lt;br /&gt;
&lt;br /&gt;
== Derivates and variations ==&lt;br /&gt;
This graphic has influenced many to adapt it to express specific nuances and other perspectives to the subject of dependency in software and the Internet.&lt;br /&gt;
&lt;br /&gt;
Interactive demonstration:&lt;br /&gt;
* https://editor.p5js.org/isohedral/full/vJa5RiZWs (click and drag any block)&lt;br /&gt;
&lt;br /&gt;
Some notable mentions:&lt;br /&gt;
* https://mastodon.social/@chechar/115571726910318246&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category: Programming]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1354:_Heartbleed_Explanation&amp;diff=414595</id>
		<title>1354: Heartbleed Explanation</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1354:_Heartbleed_Explanation&amp;diff=414595"/>
				<updated>2026-06-14T16:18:14Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1354&lt;br /&gt;
| date      = April 11, 2014&lt;br /&gt;
| title     = Heartbleed Explanation&lt;br /&gt;
| image     = heartbleed_explanation.png&lt;br /&gt;
| titletext = Are you still there, server? It's me, Margaret.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|Heartbleed bug}} was, at the time of publication of this comic, receiving a lot of news coverage recently and was also the topic of the previous comic [[1353: Heartbleed]]. This comic explains how the bug may have been discovered and can be exploited to reveal a server's memory contents. &lt;br /&gt;
&lt;br /&gt;
A [[Megan]]-like character named Margaret (or &amp;quot;Meg&amp;quot;) sends heartbeat requests to the server, the server responds to the heartbeat request by returning the contents of the body of the request up to the number of letters requested. The first two requests are well formed, requesting exactly the number of characters in the request body. The server's memory is showing Meg's request with many other requests going on at the same time.&lt;br /&gt;
&lt;br /&gt;
Meg then ponders this and tries to submit another request asking for &amp;quot;HAT&amp;quot; but requests that it be 500 letters long instead of only 3; the server —not checking it or simply unaware that 500 letters is larger than the request body— returns &amp;quot;HAT&amp;quot; plus 497 letters that happened to be next to the word &amp;quot;HAT&amp;quot; in its memory (more will follow than are shown in the server's speech bubble as there are only 251 letters/symbols in the shown reply). Included are many sensitive bits of information, including a master key and user passwords. One of the passwords shown is &amp;quot;CoHoBaSt&amp;quot;, a reference to [[936: Password Strength]], which suggests using &amp;quot;&amp;lt;u&amp;gt;co&amp;lt;/u&amp;gt;rrect &amp;lt;u&amp;gt;ho&amp;lt;/u&amp;gt;rse &amp;lt;u&amp;gt;ba&amp;lt;/u&amp;gt;ttery &amp;lt;u&amp;gt;st&amp;lt;/u&amp;gt;aple&amp;quot; as a password.&lt;br /&gt;
&lt;br /&gt;
Often popular explanations of security bugs require the issue to be simplified a lot and to leave out a lot of details. In this case [[Randall]] didn't have to do much simplifying; the bug is actually that simple. Also, any client that can connect to the server can typically exploit this bug in the underlying {{w|OpenSSL}} software — the use of the term &amp;quot;User Meg&amp;quot; does not imply that Meg had to authenticate first.&lt;br /&gt;
&lt;br /&gt;
Although Randall shows Meg recording the data by hand, on paper, it is more likely that a person exploiting the bug would have a computer record the data, perhaps on its hard drive or on a flash drive. However one could argue that such a person would not communicate to the server by speaking out loud either.&lt;br /&gt;
&lt;br /&gt;
The title text is a reference to ''{{w|Are You There God? It's Me, Margaret.}}'', a novel by {{w|Judy Blume}}, and plays off of the &amp;quot;server, are you still there?&amp;quot; line in every panel where she did start a request. The novel is also the theme of [[1544: Margaret]]. ''Meg'' can be a nickname for ''Margaret'' as well as ''[[Megan]]'' whom Margaret resembles.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Caption above the panels:]&lt;br /&gt;
:'''How the Heartbleed Bug works:'''&lt;br /&gt;
&lt;br /&gt;
:[Meg, a girl with more curly hair than Megan, stands to the left in a panel. At the center of the panel is a black and gray server with red and green diode lights showing. During all six panels the server stays the same. Meg is standing with her arms down in four panels. It will be noted when she does not. Meg talks to the server. The server &amp;quot;thinks&amp;quot; all the time, i.e. we see its memory in all panels. The top and bottom line is breaking the edge of the thought bubble making it difficult to discern. In every second panel it replies to Meg. In these panels the number of letters requested by Meg is highlighted with yellow color.]&lt;br /&gt;
&lt;br /&gt;
:[Meg speaks, server thinks:]&lt;br /&gt;
:Meg: Server, are you still there? If so, reply &amp;quot;POTATO&amp;quot; (6 letters).&lt;br /&gt;
:Server thinking: &amp;lt;tt&amp;gt;wants pages about &amp;quot;boats&amp;quot;. User Erica requests secure connection using key &amp;quot;4538538374224&amp;quot; '''User Meg wants these 6 letters: POTATO.''' User Ada wants pages about &amp;quot;irl games&amp;quot;. Unlocking secure records with master key 5130985733435. Maggie (chrome user) sends this message: &amp;quot;Hi&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[Server thinks, the same as above, although cut a little different at the edges, with POTATO highlighted in yellow and it replies the highlighted part in a rectangular speak bubble.]&lt;br /&gt;
:Server thinking: &amp;lt;tt&amp;gt;wants pages about &amp;quot;boats&amp;quot;. User Erica requests secure connection using key &amp;quot;4538538374224&amp;quot; '''User Meg wants these 6 letters: POTATO.''' User Ada wants pages about &amp;quot;irl games&amp;quot;. Unlocking secure records with master key 5130985733435. Maggie (chrome user) sends this message: &amp;quot;Hi&amp;lt;/tt&amp;gt;&lt;br /&gt;
:Server: &amp;lt;tt&amp;gt;POTATO&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[Meg speaks, server thinks:]&lt;br /&gt;
:Meg: Server, are you still there? If so, reply &amp;quot;BIRD&amp;quot; (4 letters).&lt;br /&gt;
:Server thinking: &amp;lt;tt&amp;gt;User Olivia from London wants pages about &amp;quot;man bees in car why&amp;quot;. Note: Files for IP 375.381.283.17 are in /tmp/files-3843. '''User Meg wants these 4 letters: BIRD.''' There are currently 348 connections open. User Brendan uploaded the file selfie.jpg (contents: 834ba962e2ceb9ff89bd3bff8c&amp;lt;/tt&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
:[Server thinks, the same as above, although cut a little different at the edges, with BIRD highlighted in yellow and it replies the highlighted part in a rectangular speak bubble. Meg has taken her hand to her chin thinking:]&lt;br /&gt;
&lt;br /&gt;
:Server thinking: &amp;lt;tt&amp;gt;User Olivia from London wants pages about &amp;quot;man bees in car why&amp;quot;. Note: Files for IP 375.381.283.17 are in /tmp/files-3843. '''User Meg wants these 4 letters: BIRD.''' There are currently 348 connections open. User Brendan uploaded the file selfie.jpg (contents: 834ba962e2ceb9ff89bd3bff8c&amp;lt;/tt&amp;gt;...&lt;br /&gt;
:Server: &amp;lt;tt&amp;gt;BIRD&amp;lt;/tt&amp;gt;&lt;br /&gt;
:Meg: ''Hmm...''&lt;br /&gt;
&lt;br /&gt;
:[Meg has taken her hand down again and speaks, server thinks, now with her line at the top:]&lt;br /&gt;
&lt;br /&gt;
:Meg: Server, are you still there? If so, reply &amp;quot;HAT&amp;quot; (500 letters).&lt;br /&gt;
:Server memory: &amp;lt;tt&amp;gt;a connection. Jake requested pictures of deer. '''User Meg wants these 500 letters: HAT.''' Lucas requests the &amp;quot;missed connections&amp;quot; page. Eve (administrator) wants to set server's master key to &amp;quot;14835038534&amp;quot;. Isabel wants pages about &amp;quot;snakes but not too long&amp;quot;. User Karen wants to change account password to &amp;quot;CoHoBaSt&amp;quot;. User&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[Server thinks, the same as above, although cut a little different at the edges, with everything from (and including) &amp;quot;HAT&amp;quot; highlighted in yellow and it replies the highlighted part and even more in a rectangular speech bubble. Meg has taken a notepad and a pen and is writing something.:]&lt;br /&gt;
&lt;br /&gt;
:Server memory: &amp;lt;tt&amp;gt;a connection. Jake requested pictures of deer. '''User Meg wants these 500 letters: HAT.''' Lucas requests the &amp;quot;missed connections&amp;quot; page. Eve (administrator) wants to set server's master key to &amp;quot;14835038534&amp;quot;. Isabel wants pages about &amp;quot;snakes but not too long&amp;quot;. User Karen wants to change account password to &amp;quot;CoHoBaSt&amp;quot;. User&amp;lt;/tt&amp;gt;&lt;br /&gt;
:Server: &amp;lt;tt&amp;gt;HAT. Lucas requests the &amp;quot;missed connections&amp;quot; page. Eve (administrator) wants to set server's key to &amp;quot;14835038534&amp;quot;. Isabel wants pages about &amp;quot;snakes but not too long&amp;quot;. User Karen wants to change account password to &amp;quot;CoHoBaSt&amp;quot;. User Amber requests pages&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Computer security]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3257:_Beam_Pipe&amp;diff=414576</id>
		<title>3257: Beam Pipe</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3257:_Beam_Pipe&amp;diff=414576"/>
				<updated>2026-06-14T05:01:49Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3257&lt;br /&gt;
| date      = June 10, 2026&lt;br /&gt;
| title     = Beam Pipe&lt;br /&gt;
| image     = beam_pipe_2x.png&lt;br /&gt;
| imagesize = 309x397px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = 'If you keep trying to spray your collaborators with the beam when they're not looking, I'm turning off the ion source and NO one will get to play with the beam!' --Physics's mom&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was found with a Physics Nobel Prize. Don't remove this notice too soon.}}&lt;br /&gt;
With pipes such as hosepipes, water can come out in a more rapid and more concentrated stream by covering up part of the exit nozzle with an object, such as a finger. This forces the water to come out of a smaller space, increasing the effective pressure. As the {{w|Large Hadron Collider|LHC}} can be considered a sort of &amp;quot;pipe&amp;quot; (a beam pipe, as pointed out in the comic title), this comic makes the ridiculous assumption that the same logic applies there, and its beam can be concentrated and redirected by partially covering the end of the beam. This wouldn't work in real life: the relativistic particles would not behave as a fluid. It may be that it would annihilate the thumb (or possibly just mildly irradiate it, depending on the intensity) and create a broad spray, instead of narrowing the beam. In any case, the pipe being partly open would have already have destroyed the vacuum-like conditions necessary to properly maintain the particle beam.&lt;br /&gt;
&lt;br /&gt;
The title text expands the joke, once more treating the LHC as if it were a hosepipe. Applying the effect above to a hosepipe is a common thing for children to do — often to spray family and friends with the pressurized water. This applies the same logic to the LHC, imagining the mother of &amp;quot;physics&amp;quot; (the science, as opposed to a person) telling off their presumably adult child for &amp;quot;spraying their colleagues with the beam&amp;quot; — something very incomprehensible in real life.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[A picture shows a (partly obscured by the panel) particle accelerator (namely this one being the Large Hadron Collider at CERN). Megan is shown on a stepladder, covering the beam pipe  with her thumb. Cueball is shown standing behind the ladder, watching.]&lt;br /&gt;
:[Caption below the panel:] &lt;br /&gt;
:This year's physics Nobel will go to the scientists who figured out that you could make the Large Hadron Collider more powerful by covering part of the beam pipe with your thumb. &lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Physics]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3258:_Plate_Flip&amp;diff=414575</id>
		<title>3258: Plate Flip</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3258:_Plate_Flip&amp;diff=414575"/>
				<updated>2026-06-14T04:55:57Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3258&lt;br /&gt;
| date      = June 12, 2026&lt;br /&gt;
| title     = Plate Flip&lt;br /&gt;
| image     = plate_flip_2x.png&lt;br /&gt;
| imagesize = 740x272px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = It's great for exfoliating your skin, bones, houses, cities, landscape, etc.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was FOUND ON THE UNDERSIDE OF THE CONTINENT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[Ponytail]] resumes her role as a cosmic home inspector.&lt;br /&gt;
&lt;br /&gt;
She asks [[Cueball]] when the last time he flipped the {{w|tectonic plates}}, because they look heavily eroded. This may be an allusion to the practice of turning mattresses over every few months. This was common until the 20th century, to even out the wear and tear, and prevent permanent body impressions. When modern box springs became common, the practice became unnecessary.&lt;br /&gt;
&lt;br /&gt;
Flipping mattresses only makes sense because both sides are similar to each other, but the &amp;quot;underside&amp;quot; of a plate is nothing like the surface. The current side that Cueball and Ponytail are standing on is the outermost layer of the {{w|Earth's crust|crust}}. However, the &amp;quot;underside&amp;quot; of the plate reaches until the solid layer of the {{w|mantle (geology)|mantle}}, whose temperature can reach over 1000 °C.  As Cueball points out, if you could flip a continent over, the new surface would be molten rock, not a surface suitable for life. Ponytail thinks the warmth would be soothing, and that walking on it would {{w|exfoliation (cospmetology)|exfoliate}} your feet, but at hundreds of degrees, it would do far more damage than just removing dead skin.{{cn}}&lt;br /&gt;
&lt;br /&gt;
The title text expands on this joke, saying that it would &amp;quot;exfoliate&amp;quot; just about everything on the surface (which would somehow have to stay in place while the plate below it is flipped).&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
:Ponytail: These tectonic plates look pretty eroded. When did you last flip them?&lt;br /&gt;
:Cueball: Flip them?&lt;br /&gt;
&lt;br /&gt;
:Ponytail: Yeah, to use the underside of the continent.&lt;br /&gt;
:Cueball: ...Never?&lt;br /&gt;
:Ponytail: Wow. Explains the eons of weathering, debris basins, and ... is this isostatic depression?&lt;br /&gt;
:Cueball: It's rebounding!&lt;br /&gt;
&lt;br /&gt;
:Ponytail: You should really flip it. You'll get a whole new landscape!&lt;br /&gt;
:Cueball: But I like '''''this''''' landscape!&lt;br /&gt;
&lt;br /&gt;
:Ponytail: Just think how warm and fresh the other side will feel.&lt;br /&gt;
:Cueball: A sea of molten rock?&lt;br /&gt;
:Ponytail: Good for the feet. Helps exfoliate.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Geology]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:what_if%3F_articles&amp;diff=413631</id>
		<title>Talk:what if? articles</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:what_if%3F_articles&amp;diff=413631"/>
				<updated>2026-05-26T20:50:40Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOC}}Note: I moved over the discussion page from my [[User talk:FaviFake|talk page]], which is where the merger of the two what if? indexes was initially coordinated and organized. Most of the topics below were originally created on [[User talk:FaviFake]]. Thanks! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 09:21, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Introduction to coordinate the merger==&lt;br /&gt;
Hey! This is intended to be a space to coordinate the merging of the two tables. I see that [[User:1234231587678]] and [[User:Apollo11]] have been helping us create the two tables! I'm messaging you to coordinate a little bit. Since we're the 3 most active editors, let's coordinate!&lt;br /&gt;
&lt;br /&gt;
My idea for the table was the following: there would be one single sortable table instead of two, and the information density would be very high. There were the columns I had in mind:&lt;br /&gt;
&lt;br /&gt;
* N&lt;br /&gt;
&lt;br /&gt;
* Date (the date YYYY-MM-DD, and then includes week after prev. article)&lt;br /&gt;
&lt;br /&gt;
* Thumbnail&lt;br /&gt;
&lt;br /&gt;
* Title (hyperlinked)&lt;br /&gt;
&lt;br /&gt;
* Reader's question&lt;br /&gt;
&lt;br /&gt;
* Randall's answer&lt;br /&gt;
&lt;br /&gt;
* Book - in something like this format: '''WI?2, n. 40''' (BOOK1,2,3, nr. ARTICLE NUMBER), which is easily sortable by book - for unnumbered, use the assumed number with an asterisk like this: 69* - this column would also be color coded, by book - this would also contain the title in the book if different - empty when not in any book&lt;br /&gt;
&lt;br /&gt;
* YT (the date YYYY-MM-DD, and then a hyperlinked link with the YT title. if the title is the same, don't repeat it) empty when not on YT&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I realise my mistake was listing the things we had to do together with the huge task, merging the tables! So what happened is you both contributed, but each of you contribued to a different table. In an attempt to solve this, i have created my own table, which is ready to receive the two additional columns!&lt;br /&gt;
&lt;br /&gt;
'''I believe this third table (available at [[User:FaviFake]]) is the best option for us to work on the index together, so that once it has the 2 additional columns and contains all the articles, we can put it on the blog page and delete the [[What If? chapters]] table. What do you think?'''&lt;br /&gt;
&lt;br /&gt;
I have also made other adjustments:&lt;br /&gt;
&lt;br /&gt;
*Made the Date column nowrap, so the date doesn't wrap around, and made the first column (N) centered and '''bold'''&lt;br /&gt;
&lt;br /&gt;
*Turned each Reader's question cell italic, and added quotation marks to the start and end of each cell. Ex: HOW OLD? becomes ''&amp;quot;HOW OLD?&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
* In the Randall's answer column, split the rows into one per question. For example, if there are 5 bullet points in 1 cell, split the &amp;quot;Reader's question&amp;quot; and the &amp;quot;Randall's answer&amp;quot; columns into 5 rows for that particular Article so that each question has its own mini-row.&lt;br /&gt;
&lt;br /&gt;
*Added file link to all rows so you can just click to go straight to the upload file page.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;'''Downgrade''': titles aren't hyperlinked&amp;lt;/s&amp;gt; -  {{Done}} Update: I manually hyperlinked all of them!&lt;br /&gt;
'''&lt;br /&gt;
*'''Downgrade''': the last ~100 articles are missing. I'll try to add them the day after tomorrow! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:06, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Regarding the additional 2 columns: I've been thinking a lot about how we should do them. I see 4 options:&lt;br /&gt;
&lt;br /&gt;
:*'''Option 1: Separate Tables''' - separate tables for the YouTube video information and book information, and link articles across tables using the &amp;quot;N&amp;quot; column (or another unique identifier like the title). Advantages: Keeps sorting straightforward in each table. Maintains the integrity of your original table while allowing for sorting by videos and books in their respective tables. Flexible for adding future metadata. Disadvantages: Requires users to cross-reference between tables, which can be inconvenient.&lt;br /&gt;
&lt;br /&gt;
:*'''Option 2: Expand Rows with Sub-Rows''' - How it works: For each article, add one or two additional sub-rows (One for YouTube video information (e.g., YT video number, link, title, thumbnail), and one for book information (e.g., book number, article number, title, color-coded cell). Advantages: Keeps all information together, visually grouped by article. Makes it easy to see all data without leaving the main table. Disadvantages: Sub-rows might disrupt column sorting. Could make the table visually cluttered for articles with both video and book.&lt;br /&gt;
&lt;br /&gt;
:*'''Option 3: Additional Columns''' - new columns for: (FIRST COLUMN) YouTube video number, link, title, and thumbnail, and, (SECOND COLUMN) Book name, article number, title, and color-coding. Advantages: Sorting by videos or books is easy. Keeps all information in a single row. Disadvantages: The table becomes much wider, which can reduce readability on smaller screens. Many empty cells for articles without video or book.&lt;br /&gt;
&lt;br /&gt;
:I've also thought about using a template. What do you think of the idea of a creating a template like these:&lt;br /&gt;
&lt;br /&gt;
{{Done}} UPDATE: i did create the templates! See the top of [[User:FaviFake]]! &amp;lt;s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{yt|YTNUMBER (1, 2, 3, etc)|YTLINK|VIDEOTITLE (optional)}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:It would be used in the column that we still need to create. It would also colour the cell in '''red'''. I was also thinking of doing a similar thing for the What If? books:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{bk|WHICH-BOOK|CHAPTER-NUMBER|CHAPTER-TITLE (if different)}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:For example, it would look like this (This one would also colour the cell based on the book, e.g., green for WI?1, yellow for WI?2, blue for WI10th ed.):&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|2|69|Jellyfish}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 What If? 2, chapter '''69: Jellyfish'''&lt;br /&gt;
&lt;br /&gt;
:Would someone be able to create something like this? I know nothing about templates, and i doubt I'll be able to ask chatgpt to do everything for me correctly. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 10:28, 18 January 2025 (UTC)&amp;lt;s&amp;gt;&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
==1234231587678==&lt;br /&gt;
::I saw your message, and this would be a good idea to coordinate. Maybe also add the missing &amp;quot;Peptides&amp;quot; that was accidentally released on the blog, as index 153 (i think) or have two articles with the same index number, just putting &amp;quot;current&amp;quot; for the current article. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 20:47, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Also I think the &amp;quot;0w later&amp;quot; or &amp;quot;1w later&amp;quot; on the comics looks a bit odd, maybe remove them entirely? The dates are already present. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 20:49, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Thanks for replying! I LOVE the idea of inserting the Peptides article directly in the index. It would technically make it a little less official, but I'm all for it. It looks and feels like a proper article.&lt;br /&gt;
&lt;br /&gt;
:::I also fully agree with you regarding the '''1w later''' line! I do like the idea of seeing the frequency right from the index, but it's too much right now. My idea is to remove the &amp;quot;1w later&amp;quot; part, but leave it in for the articles that aren't released a week after the previous one. For example, this would keep the '''2w later''' and '''0w later''' lines for the articles that have them, but declutter the date cells of the &amp;quot;normal&amp;quot; ones. What do you think?&lt;br /&gt;
&lt;br /&gt;
:::I can't do it right now, but it should be easy. We can also delay it until all articles are on the table, so we only have to do it once. Btw, I hope to get all the articles on the table by the day after tomorrow or the day after that. Meanwhile, you or other editors can add the 2 columns (Book and YT)! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 22:14, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I currently don't have the books, so can't help with that, but I've added a few YT videos. Also the book template seems to be buggy (and/or a WIP), so I removed it from the 1st article. ALSO, the YT template display {5}&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; instead of 5th; weird. --[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 15:13, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Thank you so much! I fixed the YT template, let me know if there are any other issues. Also, you '''can''' help with books, even if you don't have them! All you need to do is look at the page [[What If? chapters]], which catalogues every chapter of every book. The &amp;lt;s&amp;gt;[[Template:book]]&amp;lt;/s&amp;gt; i was trying to create is broken because I gave up trying to make it work (1h and 20min of my life wasted). Anyways, we now have 4 different templates, one for each book (the fourth is a placeholder!): [[Template:book1]], [[Template:book2]], [[Template:book3]], [[Template:book4]]. There are instructions on hot to use them on their page. Please continue adding the videos and the books if you can! This is exactly what we need! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:18, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Apollo11==&lt;br /&gt;
This a big page so I’m not sure I’m in the right spot (also typing one handed so sorry for mistakes). I like the table on you page, however I did notice it’s missing which book it’s in and the YouTube channel. I love how the one I edited was formatted, I think if you added that table to your existing table it’d be perfect. I would also add a page number for the books. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 16:34, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Ok just saw the three options. I’d go with either 1 or 3. 1 would look the best and probably be easiest to find what you’re looking for as long as your have links to the other tables very clear. What I would do is have a table with title, and where to find the article (blog, book 1, book 2, YouTube). Then have a 4 tables, one for each, where you can go more in depth about each article, date, explanation, jokes, things like that. Option 3 would be the simplest, and if that’s what you wanna do, I’d have the simplest things on the left and the more complicated things on the right. So the date and title would be in the left and the e explanation would be far to the right. You’ve probably been thinking about this a lot longer than me so I’m probably missing something, so please tell me if I’m wrong abo it anything. Also if my comment is in the wrong spot feel free to move me to the right conversation. I’d love to help in anyway!! Just give me directions and I’ll do by best!! [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 16:58, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Thanks so much for your interest! I thought about it a lot today, and i landed on 1, huge, information-laden table. I think having 3 or 4 tables would be too confusing and too hard to navigate. Plus, i think i found a good way to avoid making the table too wide. I added a few articles to showcase it. I don't have a lot of time to do all of them. Regarding the page number, I used the chapter number since it's easier for people who don't own the books.&lt;br /&gt;
&lt;br /&gt;
: &amp;gt; I’d love to help in anyway!! Just give me directions and I’ll do by best!!&lt;br /&gt;
: Love it! You can do everything that's listed at the top of [[User:FaviFake]], but the first one might be more annoying to do on a phone (I'm not sure where you're editing from, actually). If you don't understand something on that page, please do let me know. I promise i'll answer quicker next time. ;)  --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 20:03, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:: Looks great!! I’ll get on it sometime early next week!! (Ftr I’m usually on a phone but sometimes I’ll go over to a computer for bigger projects, like added links and full researched paragraphs) [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 20:56, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: Amazing! I hope I'll have added all the missing articles by the day after tomorrow. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 21:30, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Adding the book-exclusive articles==&lt;br /&gt;
I noticed that there’s not a column for if the article is in the blog. I also don't think some of the ones in the book that aren’t on the blog are in there. Please correct me if I’m wrong. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 18:17, 21 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yeah, I’ve noticed that some of the What If? Chapters aren’t in the table. I think that we should add them in too '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 18:42, 21 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thank you all for pointing it out! And again sorry it took me so long, I'm not good at prioritising. (but at least today i did something! I fixed both the YouTube template, there are new instructions on [[User:FaviFake]], and the book templates when used in merged cells. Anyways!)&lt;br /&gt;
::I had forgotten the other table also contained the book-exclusive questions! Of course we should add them! We need to think about this before doing anything though. I have so many questions!&lt;br /&gt;
&lt;br /&gt;
*In what order do we put them? Unfortunately, the chapter of the book are mixed between non-excusive and exclusive.&lt;br /&gt;
*Do we need all the columns?&lt;br /&gt;
 N	Date	Thumbnail	Title	Reader's question	Randall's answer	Books	YouTube&lt;br /&gt;
**What happens to the unnecessary columns? We could merge them, but I'm not sure whether the sorting will work if we merge them.&lt;br /&gt;
*Should we change the columns, so that the '''blog number''' column is more similar to the '''Book''' and '''YouTube''' columns? Or are blog articles more important because they fill all the cells, while book-exclusives don't have all the same info?&lt;br /&gt;
*Is there ANY way you can think of to make the insertion of these articles into the existing index seamless? I'm usually on the side of one big index instead of many little indexes, but I'm having a hard time figuring this out. One of the main reasons I wanted to do this project was so that people wouldn't need to move between 2 different tables to see all articles.&lt;br /&gt;
&lt;br /&gt;
::One way could be to just add all book-exclusive articles, each in their own row, in a big dump on the release date of the book. Even tho it would technically be in chronological order, i don't really like the idea. Please send all your thought! There must me something I'm not thinking of, or something I've been thinking wrong about! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:10, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
::* What order do we put them in&lt;br /&gt;
:: I would do it in the same order as the other table, blog articles first in chronological, what if chapters in chapter order. I believe the YouTube channel is all old questions, but if he posts a new one, then put that below the books.&lt;br /&gt;
::* change blog columns&lt;br /&gt;
::I think you should move the blog date and number to after randalls answer, similar to the books, and for the date for book exclusives maybe jus the book release date? Or NA.&lt;br /&gt;
::* unessery colums&lt;br /&gt;
:: Example?&lt;br /&gt;
::* Seamless integration&lt;br /&gt;
::Just stick them on the bottom, the exact same way you’d put another blog article on the bottom.&lt;br /&gt;
::I think that covers it all? [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 19:15, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Sticking the chapters at the end was the same idea I had, and I think that we can just put (What If? Exclusive) inside the date part of the table. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 19:22, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Thanks for replying so quickly! I don't have time right now to read everything but I can already tell that this is much easier than I thought it would be. I'll answer tomorrow. Before i start overthinking everything: What would you put inside the columns thumbnail, Question, and Answer? Just empty? I'm trying to think of something useful.&lt;br /&gt;
::::Also, what do you think of merging the N (blog) column and the Date columns, just like we do with the YouTube column? Would there be any downsides?&lt;br /&gt;
:::: I hope I'm not preventing it edits by not adding the articles quickly, in the meantime you can help by adding YT videos, now that the template works! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 21:31, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::: I think that the YT videos are all added? At least the blog ones and not the What If? exclusive ones. Or maybe Restricted Mode on my home wifi is blocking some. But I think that it’s all done? Tried my best anyways '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 03:52, 23 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::::This is great news, thanks! I didn't know there were YouTube videos on book-exclusive articles! I'll get started, this is my plan:&lt;br /&gt;
::::::*The book articles are positioned like the old [[What If? chapters]] table.&lt;br /&gt;
::::::*New column setup:&lt;br /&gt;
 Thumbnail	Title	Reader's question	Randall's answer	'''Blog (this contains both N and Date)'''	Books	YouTube&lt;br /&gt;
::::::*The sometimes-unnecessary columns are left empty.&lt;br /&gt;
::::::*The '''Blog''' column is more similar to the '''Book''' and '''YouTube''' columns: it has a template and colors the cell light blue.&lt;br /&gt;
&lt;br /&gt;
::::::I feel great about this! We're getting near the finish line. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:36, 23 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::::I think that I added all the What If? And What If? 2 chapters to the table for the ones that were copied from the blog '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 23:48, 23 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::::::Love it! I hope i'll be able to add some of the missing articles today, but i might not be able to do them all (or any at all). --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:01, 24 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::::::{{Done}}  I did it! You can now add the missing YT videos :) {{unsigned|FaviFake|20:49, 24 January 2025 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
:::::::::Doing it now! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:24, 24 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::::::::based on the 20 videos that I can see on the YT channel, ALL YT VIDEOS HAVE BEEN ADDED! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:39, 24 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::::::::We actually did it! Now all that's left are the explanations, which i'm sure people will prefer doing over merging 2 wikipedia tables. There's just one small problem: I searched for &amp;quot;Featured in What If?,&amp;quot; and instead of 69 results, i got 67. This means two of the articles that are both in the book and in the blog haven't been added. Do you think you could figure out which ones? I also checked the other book and the YouTube videos, and they're all there, it's just the first book. Again, thank you so much for all your work, it would've likely taken weeks to get to this point without your efforts!  --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 11:21, 25 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
ok, i’ll poke around and see if i can find them. also, I GOT WHAT IF? 10TH ANNIVERSARY! i can add the bonus chapter that is at the end-it’s basically “what if we tried more power” when blasting away at the moon with lasers. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:22, 25 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Congrats on the book! I didn't buy it because i have the original, it's great that someone here owns it. Can you describe in a little more detail the last chapter? I don't understand a few things: does the second YouTube video say exactly the same thing as the blog article? Why are there two videos about 1 article? Or is the second YT video only about the Bonus Chapter in the book, which goes even further than the blog article? Is that bonus chapter not in any other book or blog? Thanks! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 11:13, 26 January 2025 (UTC)&lt;br /&gt;
:Also, is the chapter only called Bonus Chapter, or does it also have other names? --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:15, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Sorting &amp;quot;Chapter xx..&amp;quot;==&lt;br /&gt;
Hi... An alternative to the way you are lead-zeroing the text cell's numeric suffix, for sorting purposes, which is what I think {{diff|363528|this is all about}}, would be to do so something like:&lt;br /&gt;
 ... || data-sort-value={{{1}}} | Chapter {{{1}}} || ...&lt;br /&gt;
Should be able to deal with any numeric value, while still rendering it simply as &amp;quot;Chapelter 1&amp;quot;/&amp;quot;Chapter 10&amp;quot;/&amp;quot;Chapter 100&amp;quot;/ etc, but adding ''data-sort-type=&amp;quot;number&amp;quot;'' to the header cell might even be able to sort not-quite-numbers, should a future book ever do chapters like  &amp;quot;... 7, 7a, 9, 10, 11, 12, 12b, 14, ...&amp;quot;.&lt;br /&gt;
&amp;lt;br /&amp;gt;Perhaps even ''data-sort-value=&amp;lt;booknumber&amp;gt;.&amp;lt;chapternumber&amp;gt;'' would be useful. Though you'd have to use the sufficient-leading-zeroes method, again, and could start at 1.0000001 ''just'' in case there's ever a million (but not more than 10mil-1) chapters in a future bookbut would probably be useful to sort all book-contained items, across all books but not interleaved.&lt;br /&gt;
&amp;lt;br/&amp;gt;I'll let you consider if/what you find it more useful. And perhaps check if I've given you the right table markup options by going and checking the Help:Sorting Tables/whatever pages. ;) [[Special:Contributions/141.101.99.107|141.101.99.107]] 00:01, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I agree that the current method isn't great, and I'm very glad to see there's another, better way. Unfortunately, I don't really understand most of what you said. BUT! You seem very experienced and I don't have a lot of time, so it would be perfect if you could edit directly the templates/table/cells/whatever needs to be changed. The best option is to remove the leading zeroes and still make the sorting work, for the blog, books, and YT templates. If you (or someone else) could do that, it'd be wonderful. Please feel free to try it yourself if you want! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 11:13, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== weird table bugs ==&lt;br /&gt;
&lt;br /&gt;
hey favifake, i found two bugs that i don’t really know how to fix in the table: one of them is in regard to the what if 2 template, whenever it has a “S2” or a “W1” “chapter” it gives an error. the second bug can be found on the laser pointer row-i added the what if? 10th anniversary template, but the yt template doesn’t “fit” (for lack of a better word) with the table. could you dig into these and try to figure out what has gone wrong? thanks! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 00:55, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Hey 42! I saw what you were trying to do, i think i fixed it now? I removed the '''book3''' template from the original '''Laser Pointer''' row because all original articles are technically in the 10th Ann. book. (i added &amp;quot;exclusively on&amp;quot; to the '''book3''' template to make it clearer). Regarding the other S1 bug, i don't know why but it seems fixed now?? I saw the error just a few hours ago and now it works. I have no idea what happened. Let me know if it reappears or something. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 11:13, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
:Without going in and trying it myself, is this because of the &amp;quot;trying to zero-pad a number&amp;quot; thing (as given a possible alternative, above), because it can't test if &amp;lt;usually number, in this case text&amp;gt; is greater/less than &amp;lt;static number&amp;gt;?&lt;br /&gt;
:Quick-fix (not doing anything else new) would need the test enclosed with an isthisanumber? test (if so, do zero-padding testing, etc; if not, maybe don't try).&lt;br /&gt;
:Exactly how S2/W1 sorts (or doesn't) using the sorting data (bare number only!) and/or the forced data type as number (to do its best for what numeric data it is presented, despite occasional non-numeric interloping characters), would need testing.&lt;br /&gt;
:Or I misunderstand. But, ''if'' I don't, maybe this is useful additional pointer to a solution/acceptance of the problem. [[Special:Contributions/172.71.178.123|172.71.178.123]] 01:21, 26 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::IP user, I answered above. :) --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 11:13, 26 January 2025 (UTC)&lt;br /&gt;
== Interesting streamlined 'table furniture', but... ==&lt;br /&gt;
&lt;br /&gt;
...I'm wondering about the current (slight) usage differences between:&lt;br /&gt;
 style=&amp;quot;text-align:center&amp;quot; | {{{1}}}&lt;br /&gt;
and:&lt;br /&gt;
 style=&amp;quot;white-space:nowrap&amp;quot; |&lt;br /&gt;
Do you need to add the Param1 to the nowrap/remove if from the text-alignment?&lt;br /&gt;
&lt;br /&gt;
And what if someone wanted no-wrap+centre at the same time? There maybe ''are'' ways to combine &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{ac|&amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{nw}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, but it seems non-trivial to to do. (Unless you make a &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{nwac}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, but then where do you end?) I'm wondering if you should try it without the |-character.&lt;br /&gt;
&lt;br /&gt;
Let's see if that ''could'' work:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Test&lt;br /&gt;
|-&lt;br /&gt;
! Foo !! Bar !! Baz&lt;br /&gt;
|-&lt;br /&gt;
| Normal text of a normal style || style=&amp;quot;text-align:center&amp;quot; style=&amp;quot;white-space:nowrap&amp;quot; | This is as if using variations &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{ac|&amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{nw}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; as rendered without the pipe-character or inconsistent parameter, which is tricky to demonstrate with the actual templates.|| More normal text of a normal style&lt;br /&gt;
|-&lt;br /&gt;
| Normal text of a normal style || style=&amp;quot;text-align:center&amp;quot; | style=&amp;quot;white-space:nowrap&amp;quot; | This is how &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{ac|{{nw}} &amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might look || More normal text of a normal style&lt;br /&gt;
|-&lt;br /&gt;
| Normal text of a normal style || {{ac|{{nw}} This is how &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{ac|{{nw}} &amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ''does'' look, using the current state of the templates.&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;s&amp;gt;''NB. Why is it in bold? Is that a normal feature of a style of text-align:center?''&amp;lt;/s&amp;gt;}}&lt;br /&gt;
| More normal text of a normal style&lt;br /&gt;
|-&lt;br /&gt;
| Normal text of a normal style || style=&amp;quot;white-space:nowrap&amp;quot; | style=&amp;quot;text-align:center&amp;quot; | This is how &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{nw}} {{ac|&amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; might look || More normal text of a normal style&lt;br /&gt;
|-&lt;br /&gt;
| Normal text of a normal style || {{nw}} {{ac|This is how &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{nw}} {{ac|&amp;lt;foo&amp;gt;}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; ''does'' look, using the current state of the templates.}}&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;s&amp;gt;''Also goes bold, I notice!''&amp;lt;/s&amp;gt;&lt;br /&gt;
| More normal text of a normal style&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
So, yes, it looks like it might be better to just remove the pipe (or pipe-and-param) and rely on the table-writer to just put in the relevent bare style-giving {{}} (or {{}}s) before the pipe. (I must look into why there's unexpected boldness. I don't know if that comes from the way you templated it or as an associated function of the aligh-center style. But it doesn't appear when I do it 'raw'.) Anyway, food for thought, over to you. It looks like I ''could'' edit your templates, but that might be rude, and would of course instantly break whatever it is you're currently using them (singly) for. That's the ''What If?'' table, I suppose? Anyway, you can both 'fix' how they work and adjust how they are invoked, rather than leaving me to guess about the latter. ;) [[Special:Contributions/162.158.74.49|162.158.74.49]] 19:04, 17 January 2025 (UTC)&lt;br /&gt;
:PS: Yes, I have just checked, and, yes you've added (apparently ''after'' I saw and copied the original {{template|ac}} for my own testing and emulating purposes!) the bolding to the aligh-centering template. That part of the mystery is solved! :P [[Special:Contributions/162.158.74.49|162.158.74.49]] 19:10, 17 January 2025 (UTC)&lt;br /&gt;
:PPS: I know what happened. I copied the (slightly '''formatted''') 'plaintext' as it appeared in the template. If I'd have edited it and copied the wikisource then I'd have grabbed the &amp;lt;nowiki&amp;gt;'''formatted''&amp;lt;/nowiki&amp;gt; as you already had it by the time I passed by. Don't mind me, it was just something that made me wonder. Probably moreso than the thing that I was ''actually'' trying to prod and poke and solve! IOW: Ignore me. On this bit, at least! [[Special:Contributions/172.68.205.151|172.68.205.151]] 19:32, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I love how interested you are about this! Honestly i'm not really sure what exactly it is you're asking, but you seem very smart so do whatever you want! My only request is that the {{:ac}} thing keeps working as expected, so i don't have to change the table again. I had forgotten about the {{:nw}} thing, you can delete it or change it or do anything else, I don't use it anymore. Feel free to add to the documentation that these are just for 1 table and might break everything if used anywhere else. Or, if they already work everywhere, great! I remember I created them expecting the entire page to be destroyed when used, and being pleasantly surprised when they worked. So yeah go wild! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 21:19, 17 January 2025 (UTC)&lt;br /&gt;
:::I'm not going to make any change without taking time to check your tables and making sure the appropriate change doesn't inflict damage on your attempts to curate the tables you're probably using it for.&lt;br /&gt;
:::But, in short, I understand that you're streamlining the (often longwinded) style=&amp;quot;&amp;quot; statements, an admirble task. In the structure of &amp;quot;| cell || another cell || etc&amp;quot;, you're doing something to save from having to do cumbersome &amp;quot;| cell || style=&amp;quot;this-style: that; that-style: that; the-other-style: the.other&amp;quot; | another cell || etc&amp;quot;, all of which makes editing 'difficult'. (I tend to do such things in Notepad, or whatever separate text editor I have, which lets me add temporary whitespace and use with no-wrap on the markup while I'm working on it, rather than in this textbox editor.)&lt;br /&gt;
::: But the single-pipe that formats the cell isn't a ''great'' difficulty to maintain (indeed, it is useful to line up). As such I'd suggest &amp;quot;| cell || &amp;lt;nowiki&amp;gt;{{??}}&amp;lt;/nowiki&amp;gt; | another cell || etc&amp;quot; would be as good. i.e. leave the pipe (intended for the table-cell) out of the template. For the no-wrap version, that's easy enough. Though I do understand that you want to put bold-format about the cell contents, so that's why you give it as a param and explicitly bold the Param1 as you pass it back out.&lt;br /&gt;
::: Maybe the solution to ''that'' is to also add (to the style, along with the text-align:center) the &amp;quot;font-weight: bold&amp;quot; doublet. Then &amp;quot;... || &amp;lt;format(s), as templates and/or raw&amp;gt; | Cell Text || ...&amp;quot; doesn't ''need'' to 'enclose' the Cell Text in any way.&lt;br /&gt;
::: But making the change from something that expects to transclude the &amp;lt;u&amp;gt;range of the template&amp;lt;/u&amp;gt; &amp;quot;... || &amp;lt;u&amp;gt;format | Cell Text&amp;lt;/u&amp;gt; || ...&amp;quot; to &amp;quot;... || &amp;lt;u&amp;gt;format&amp;lt;/u&amp;gt; | Cell Text || ...&amp;quot; obviously requires that each and every table-cell item that uses &amp;quot;... || &amp;lt;nowiki&amp;gt;{{template|Cell Text}}&amp;lt;/nowiki&amp;gt; || ...&amp;quot; to be converted to &amp;quot;... || &amp;lt;nowiki&amp;gt;{{template}}&amp;lt;/nowiki&amp;gt; | Cell Text || ...&amp;quot;, or... it'll definitely not work as it was originally set.&lt;br /&gt;
::: Anyway, that's just my own vision of how you can do what you seem to have wanted to, without introducing more complications. As the cell-formatting gladly accepts multiple statements of the form style=&amp;quot;...&amp;quot; (it adds &amp;lt;code&amp;gt;style=&amp;quot;...&amp;quot; style=&amp;quot;...&amp;quot; style=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt; together, much as &amp;lt;code&amp;gt;style=&amp;quot;...; ...; ...&amp;quot;&amp;lt;/code&amp;gt; does), an editor now has complete freedom to compound the two format-templates you created. And any additional ones that might be useful. Such ones to usefully colour cell backgrounds as red/yellow/green (for use on the various Confusion Tables), something that I sometimes take a couple of goes to do... not least because I habitually spell 'color' as 'colour'..! ;)&lt;br /&gt;
::: ...but that's just to explain so that (should you/anybody else wish to follow my own instincts on the matter), you have some decent idea of what I'm getting at. There are probably other ways of doing it. Templates can be made to detect and extract pipes, so that &amp;quot;... || &amp;lt;u&amp;gt;&amp;lt;nowiki&amp;gt;{{template1|{{templete2|Cell Text}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/u&amp;gt; || ...&amp;quot; ''or'' &amp;quot;... || &amp;lt;u&amp;gt;&amp;lt;nowiki&amp;gt;{{template2|{{templete1|Cell Text}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/u&amp;gt; || ...&amp;quot; would equally produce &amp;quot;... || &amp;lt;u&amp;gt;templateOneOrTwoFormat templateTwoOrOneFormat | Cell Text&amp;lt;/u&amp;gt; || ...&amp;quot;, but that would take a degree of of unwieldy parameter-processing functions (that I'd have to work out, probably would involve some subst-function, but might depend upon what's available in the installed mediawiki version). I just think you could avoid all that trouble! [[Special:Contributions/162.158.74.118|162.158.74.118]] 22:51, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Forgot to say, that for what you want to use it for, there's ''another'' way:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Example 2&lt;br /&gt;
|-&lt;br /&gt;
! Number (Centered) !! Foo !! Bar (Centered) !! Baz&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
| Normal text of a normal style&lt;br /&gt;
! Some text of whatever size (centered)&lt;br /&gt;
| More normal text of a normal style&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| Normal text of a normal style&lt;br /&gt;
! Some text of whatever size (also centered, though not so obviously so)&lt;br /&gt;
| More normal text of a normal style&lt;br /&gt;
|}&lt;br /&gt;
:::... This is only possible by newlining each new cell, in the example (you can't do &amp;quot;! cell || cell !! cell || cell&amp;quot;, you have to line-break it as you change from &amp;quot;!&amp;quot;-/&amp;quot;|&amp;quot;-starting cell-groups), but it isn't really so great a loss to do so.&lt;br /&gt;
:::The &amp;quot;wikitable&amp;quot; class gives these 'header cells' a different background too, but (if you really don't like that) it that can be adjusted in various other ways (including with scope=&amp;quot;col&amp;quot;, I think), or you can leave the wikitable class off (it centres and bolds, but doesn't give cell-borders) and re-add the whole-table bordering style that this now leaves out. But you really don't want me listing ''every'' idea I had, just this one was the other (template-free) option to enforcing centre-aligning bold text on ''certain'' cells. [[Special:Contributions/162.158.74.119|162.158.74.119]] 23:09, 17 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::::Huh, I was actually thinking of doing the opposite of what you're suggesting: include even more pipes inside the template so the editor is cleaner and easier to use. (UPDATE: this probably worse than the other option you gave at the end, see below). So instead of this: &lt;br /&gt;
&lt;br /&gt;
 |-&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;| {{ac|4}} || &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::::You would just use this:&lt;br /&gt;
&lt;br /&gt;
 |-&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{ac|4}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::::And it would contain all the pipes needed. I guess then we would have to update the documentation to point out that this template's use case is extremely narrow. Also, if you want to see how it is currently used, the table is on my user page! That's the only place where it's used&lt;br /&gt;
&lt;br /&gt;
::::Since you seem very interested in templates, What do you think of the idea of a creating a template like these:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{yt|YTNUMBER (1, 2, 3, etc)|YTLINK|VIDEOTITLE (optional)}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::::It would be used in the column that we still need to create. It would also colour the cell in '''red'''. I was also thinking of doing a similar thing for the What If? books:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{bk|WHICH-BOOK|CHAPTER-NUMBER|CHAPTER-TITLE (if different)}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::::For example, it would look like this: (This one would also colour the cell based on the book, e.g., green for WI?1, yellow for WI?2, blue for WI10th ed.)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|2|69|Jellyfish}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 What If? 2, chapter '''69: Jellyfish'''&lt;br /&gt;
&lt;br /&gt;
::::Would you be able to create something like this? I know nothing about templates, and i doubt I'll be able to ask chatgpt to do everything for me correctly. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 07:16, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::&amp;gt; Forgot to say, that for what you want to use it for, there's ''another'' way:&lt;br /&gt;
:::::Oh, i think i had forgotten to read this part!! This seems very interesting! I should try that, since it seems much simpler. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 10:10, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::'''Update:''' {{Done}} I applied your suggestion, now the numbers are in their own row:&lt;br /&gt;
 |-&lt;br /&gt;
 !1&lt;br /&gt;
 | The rest of the table&lt;br /&gt;
--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 10:33, 18 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What If Chapters ==&lt;br /&gt;
Hey FaviFake, there are some What If? Chapters that aren’t included in the blog. Are we going to add them to the table? '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 17:41, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Great timing! You sent me this message while i was in the process of replying to the question. I'm not good at prioritising, I should've definitely responded before doing other edits. Check out my &amp;lt;s&amp;gt;list of questions for y'all&amp;lt;/s&amp;gt; reply above! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:10, 22 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== YouTube template ==&lt;br /&gt;
Hey FaviFake, on the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{yt}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; template, you asked for help on fixing the code of the template. What help do you need to “improve” it? I’m willing to help now that I’m not sick, as I was last week. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 18:35, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Thank you! Glad to hear you're healthy. That message was mostly a joke, but it is in fact barely held together. (Try modifying the hyperlink that's displayed when a title isn't provided, somehow what you add gets duplicated??) If you have the time and know how to make it more reliable and easily editable in the future, please do! I am honstly scared to touch it fearing it might explode.&lt;br /&gt;
&lt;br /&gt;
:Buuut, to be fair there is one template that i desperately needed help with, and that is [[:Template:book]]. I wasted a ton of time to try to get it to change the cell background, and it never worked, so i decided to create [[Template:book1]], [[Template:book2]], [[Template:book3]], [[Template:book4]], and these do work beaytifully, but are harder to edit in bulk. (I still have profound hatred towards [[Template:book]]...). If you actually manage to do what i wanted (which i'm not sure is even clear after the all the mess i've made... ask me if you can't figure it out!), I would be very grateful. PS. I'm not sure if i should warn you, given my very low ability to create templates, but it's definitely not easy, imo.&lt;br /&gt;
&lt;br /&gt;
:I'm not sure how skilled you are at template editing, so if you want, you can absolutely continue uploading the What If? thumbnails like you did a few days ago! I just added [[User:FaviFake|a new batch of articles]] (about 60) thanks to some annoyingly complex jailbreaking of Google's NotebookLM. The new table of course includes the quick 100px link to upload a file. Again, thanks for reaching out! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 19:04, 19 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The YT link appears to be going to &amp;lt;nowiki&amp;gt;[[whatever the name of the YouTube video is called]]&amp;lt;/nowiki&amp;gt; and not acting as a [youtube.com filler thingy] linking to a YouTube video. I’m going to hit the books on template writing and try to see if I can do anything about it. Cheers! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 03:11, 21 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Oh great, that's broken too. I didn't even realise it. Thanks!--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 04:57, 21 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Partly because you've removed the bit about how to better sort the book-column elements, but are using the same trick in the youtube-column, and partly because it's easier (more on that in a moment), I've just modified the {{template|yt}} to give it the sort value (of article number) directly. Have not removed the expression test to make &amp;quot;6th video ...&amp;quot; into &amp;quot;06th video ...&amp;quot;, for sorting purposes, but I feel confident that you ''can'' do that (and remove the comment about making it give &amp;quot;006th video ...&amp;quot;, in future, should that become necessary) if you now so wish.&lt;br /&gt;
&lt;br /&gt;
:For the books, I was thinking that if, instead of &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, you could maybe use &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{#expr:10000+{{{1|0}}}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; for ''What If?'' (in {{template|book1}}) and &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{#expr:20000+{{{1|0}}}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; for ''What If? 2'' (in {{template|book2}}), to let it sort by book ''and then'' chapter within book...&lt;br /&gt;
&lt;br /&gt;
:For ''What If? 10th Anniversary Edition'' ({{template|book3}}), I was thinking if you could make the added-to number 11000. Though anything from above 10000+&amp;lt;last chapter number&amp;gt; and below 20000-&amp;lt;last chapter number&amp;gt; would do (and 15000 would work), it leaves room to make any appearance of the 15th anniversary, 20th anniversary, 42nd anniversary, ..., 95th anniversary be able to use the mnemonic offsets of 11500+, 12000+, 14200+, ..., 19500+.. ;) Obviously, it would need revamping if there becomes a centenary edition of Book 1 (or any version of it ever gets ''so many'' &amp;quot;bonus chapters&amp;quot; that it breaks out of its own sequence into the next extant anniversary edition. But you'd need to start adding 100 newly-numbered chapters ''per year'' to do that, so probably not likely. But, right now, the sorting on the &amp;quot;Exclusive to ''What If? 10th Anniversary Edition''&amp;quot; line sorts ''before'' the &amp;quot;NNth chapter of ''What If?''&amp;quot; lines. The above should fix that...&lt;br /&gt;
&lt;br /&gt;
:And the format can be used for other (future?) books and their (possible) reissues: For ''What If? '''N''''', reissued '''YY''' years after the original, that's the number &amp;quot;NYY00&amp;quot;, to which you add the chapter number. Fairly futureproofed, but if Randall ''ever'' publishes anything that makes you need to make the offset &amp;quot;NNYYY000&amp;quot; (e.g. for the quarter-of-a-millenium reissue of ''What If? 15'', having a total of 512 chapters being 15250000+[1..512]) then I reckon the requisite changes will be easy enough to handle as and when, swapping in the expanded offset. And... hey... if they're still being written, ''and'' published, then I can only hope I'm still around to be able to add that edition to my bookshelf!&lt;br /&gt;
&lt;br /&gt;
:You could even redo the {{template|book}} idea (parameters of ...|book=#|chapter=#|optional:edition=#?|...) to only ever need to maintain the one source with ''all'' this flexibility. You've already got experience (by the 1st/2nd/3rd/Nth code) with what's needed to translate Book Number(+Edition Number, if applicable) into unique background colour codes.&lt;br /&gt;
&lt;br /&gt;
:The big problem, though, is still the non-numeric chapter 'numbers' in ''WI?2''. I have two (or three) different thoughts about that.&lt;br /&gt;
&lt;br /&gt;
:*For only the numeric bits (currently, in the test for less-than-10, etc; in the above for within the &amp;lt;code&amp;gt;data-sort-value=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt;) you might want to switch &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#if:{{#ifexpr:{{{1|0}}}}}|99|{{{1|0}}}}}{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;... This should test the param1 value for being a valid value (or missing, when you already make it zero... though not sure for what circumstance you should consider it validly missing) and using it if it is so, or else using the value &amp;quot;99&amp;quot; (or you could have &amp;quot;0&amp;quot;, or &amp;quot;0.5&amp;quot;, or whatever floats your boat). Then at least you'd get ''a'' value (that doesn't cause errors), though it probably wouldn't be sorted very precisely (though appear just after/before all other chapters of the book).&lt;br /&gt;
&lt;br /&gt;
:*The other idea is to use &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{effectiveChapter|{{{1|0}}}}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;, then you can append a parameter of &amp;lt;code&amp;gt;...|effectiveChapter=11.5}}&amp;lt;/code&amp;gt; to a non-numeric one sitting between actual chapters 11 and 12 (I haven't checked if that's an actual example, but imagine it is...). Also, for multiple items on page-chapter, you could even have =11.51, =11.52, =11.53, etc, to retain order within the book and ''upon the page''... (You could also give effectiveChapter as &amp;quot;NYYCC(.optional)&amp;quot; format, direct, for ''all'' what if? Numbers, YYearly-editions and CChapters (with possibly sub-positions), come to that, but I don't see that as any simpler a solution as building it in.)&lt;br /&gt;
&lt;br /&gt;
:*The third option would be to use (for hidden sorting-only purpose, mostly) a value of P(.optionalDecimal) either as another numeric parameter or a named one, with P as ''page number'', not chapter number. But, given how hardback vs. paperback (or just another imprint, not necessarily even a Anniversary redo, but I've got the UK edition with an additional UK foreword) ''might'' effect page numbers and/or where end-of-pages interupts any given chapter internals, it's possible that this is not consistent enough. But food for thought, maybe. Only needs to be definitively done once (or thoroughly checked and shuffled along as nevessary if redone to include other changes that require consistency).&lt;br /&gt;
&lt;br /&gt;
:Any of that make sense? Hopefully I've at least given you enough examples to ponder, where not immediately obvious. I'd ''really'' rather not change all your hard work just for the sake of a minor cosmetic change with a possibly major set of retouches, which is one of the reasons why I thought I'd do just the basic Youtube 'sort assisting' bit and let those of you who have already had so much 'fun' (tweaking the table formats) decide if and how you make full use of it. Assuming it isn't (differently) broken, for whatever reason may crop up, it shouldn't be a problem if you do nothing at all more with it (either in the {{template|yt}} or {{template|book#}}s). [[Special:Contributions/172.71.241.26|172.71.241.26]] 14:38, 28 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
*Thank you so much! Would you mind if I moved your message to [[Talk:What If? chapters]], to group everything regarding the index in one place?&amp;lt;!-- Do as you wish, it's your Talk namespace, here, and *if* you can make it halfway readable then you can display it where you like, on my behalf. You (and Firestar) made decent use of my ideas, which I had no time to get into the actual implementation of. Signed: that IP again.--&amp;gt; &amp;lt;!--Got it! Thank you. Signed: FaviFake--&amp;gt; Anyways:&lt;br /&gt;
*I did the thing on the yt and {{template|blog}} one and it works!&lt;br /&gt;
&lt;br /&gt;
 For the books, I was thinking that if, instead of &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt;, you could maybe use &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{#expr:10000+{{{1|0}}}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; for ''What If?'' (in {{template|book1}}) and &amp;lt;code&amp;gt;=&amp;quot;&amp;lt;nowiki&amp;gt;{{#expr:20000+{{{1|0}}}}}&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;lt;/code&amp;gt; for ''What If? 2'' (in {{template|book2}}), to let it sort by book ''and then'' chapter within book...&lt;br /&gt;
*Done! Thanks! For ({{template|book3}}) i used 30000 to have the chapter in chronological order.&lt;br /&gt;
&lt;br /&gt;
 You could even redo the {{template|book}} idea&lt;br /&gt;
*Sorry but I'm not touching that... ''thing'' anymore. That template traumatized me (jk! if you want to try fixing it i'd be very happy)&lt;br /&gt;
&lt;br /&gt;
 For only the numeric bits (currently, in the test for less-than-10, etc; in the above for within the &amp;lt;code&amp;gt;data-sort-value=&amp;quot;...&amp;quot;&amp;lt;/code&amp;gt;) you might want to switch &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{#if:{{#ifexpr:{{{1|0}}}}}|99|{{{1|0}}}}}{{{1|0}}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;... This should test the param1 value for being a valid value (or missing, when you already make it zero... though not sure for what circumstance you should consider it validly missing) &lt;br /&gt;
*I'm not sure why that's needed (and also how to actually implement it). What happens if the value is invalid? it seems to work. Or is it required for the other improvements you suggested?&lt;br /&gt;
&lt;br /&gt;
 The other idea is...&lt;br /&gt;
 The third option would be...&lt;br /&gt;
*Yeah this seems pretty hard to solve easily (which is why i'd love it if you did it!). I guess it'll stay slightly broken until it becomes a bigger issue. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 16:54, 28 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::It seems like you just forgot to escape pipe characters in the [[Template:book|book template]] in the table within the switch statement, so it just interpreted the non-formatting statements to be a case grouped with the next 'actual' case [[User:Firestar233|guess who]] ([[User talk:Firestar233|if you desire conversing]] | [[Special:Contributions/Firestar233|what i have done]]) 07:23, 29 January 2025 (UTC)&lt;br /&gt;
::BTW I fixed the book template. It should now appear the same as the other templates, and even work with the youtube template [[User:Firestar233|guess who]] ([[User talk:Firestar233|if you desire conversing]] | [[Special:Contributions/Firestar233|what i have done]]) 09:13, 29 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::OMG THANK YOU SO MUCH!!! IT ACTUALLY WORKS! What! How! Why!&lt;br /&gt;
:::Thanks so much for fixing the template! I can't describe how glad I am to see it working as (and even better than) I wanted. My life is finally complete. I have switched to using your template in the index.&lt;br /&gt;
:::The reason there was a YT link in one of the {{template|book}} documentation examples is because I was going insane and likely pasted it there by accident. From what I can tell, you seem to have set up {{template|book}} so well that {{template|book}} accepts a YouTube link as input, while the {{template|yt}} template it's based on doesn't if used by itself (requires only the ID). I love this! Since we're gonna have many YT videos to add, it's great to have a much simpler option which doesn't require extracting the ID of the video. Is there a way you could maybe incorporate this improvement into {{template|yt}} itself? Or maybe you're 10 steps ahead of me and you've already done it (which wouldn't surprise me given the amount of wizardry you used on these bad boys!), and I just didn't notice. Please let me know! And again, thank you so much!!! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:56, 29 January 2025 (UTC)&lt;br /&gt;
:::Also, since you've already rendered 4 templates useless thanks to your improvements, why not also add {{template|yt}} to the list of pages to delete, by incorporating it into {{template|book}}? This, unlike {{template|book}}, is absolutely not needed, and I also have no idea if it's as easy as a simple copy-and-paste, or if it requires more work. If it's the latter, please don't do it if you don't want to! I'm just throwing ideas around! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:04, 29 January 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
That IP, here. I (think) I fixed the sorting ''and'' error-fallback issues. I think (without trying to roll back to how you had it) you 'broke the sort' by putting in line-feeds (maybe double-ones), that messed up the table/cell handling. Then you broke the handling by commenting out too much (you needed to &amp;quot;&amp;lt; ! - -&amp;quot; and &amp;quot;- - &amp;gt;&amp;quot;, without spaces, without crossing the quotes and |ing boundaries in data-sort-value=&amp;quot;...&amp;quot; style=&amp;quot;...&amp;quot; and the 'release', by pipe symbol, to cell-contents).&lt;br /&gt;
&amp;lt;br/&amp;gt;Recommented for it to work normally, first without the new 'sort assistance' and then with again. Had a look at the error-catcher (went down a blind alley, at first) and made it an explicit &amp;quot;catch all other inputs&amp;quot; for the errororing display, which I formatted in a more obvious manner ''and'' forced to sort to the start. (Well, almost the start. It puts empty cells with no sorting 'ahead' of even the -999 value I made it give any error-caught cells.)&lt;br /&gt;
&amp;lt;br/&amp;gt;If it were me, I'd be happy to have {{template|yt}} entirely separate from the {{template|book}} handling. It is mnemonically confusing and adds needless (and possibly error-prone) &amp;quot;if we have far too many params for Book template, feed it all into the Youtube template&amp;quot;. Unless you're folding the ''whole'' Youtube template into the body of the Book one (even more work to maintain/debug), it's just adding complication for both server and editors who feel forced to use it. The beauty of the monolithic Book template is that (otherwise identical) &amp;quot;Book N, chapter C, optional new title T&amp;quot; information is trivially similar between different Ns. But it's not my project.&lt;br /&gt;
&amp;lt;br/&amp;gt;I'll have a dig about in maybe how to have a table sort &amp;quot;valueless&amp;quot; cells (in reality the empty value of cell absolutely without anything in it) beyond the sort-valued ones. The 'easiest' means I could imagine is to accept &amp;lt;nowiki&amp;gt;{{book|0}}&amp;lt;/nowiki&amp;gt;, needing no further params, to create a &amp;lt;code&amp;gt;data-sort-value=&amp;quot;999999&amp;quot; |''&amp;lt;blank&amp;gt;''&amp;lt;/code&amp;gt; cell-definition, and have every book-column cell without a book-reference explicitly use that (ditto for &amp;lt;nowiki&amp;gt;{{yt|0}}&amp;lt;/nowiki&amp;gt; to have the same pre-trap to it). But seems wasteful. A template &amp;lt;nowiki&amp;gt;{{empty}}, or even something like {{e}},&amp;lt;/nowiki&amp;gt; (without checking if either of those are free names) could also just give us this behaviour straight off, of course. It's potentially a lot of fuss to make consistent and flexible enough, either way.&lt;br /&gt;
&amp;lt;br/&amp;gt;But what I already did probably also needs to be checked for more edge-conditions... I may still have to tweak things when I have a better chance of catching errors (very difficult, on a tablet), and quicker. [[Special:Contributions/172.70.162.196|172.70.162.196]] 21:32, 29 January 2025 (UTC)&lt;br /&gt;
:I also think that the book template shouldn't be used for the videos, on the basis that youtube is not a book.&lt;br /&gt;
:for the default cell, it would probably take no arguments (i.e. just &amp;lt;nowiki&amp;gt;{{yt}}&amp;lt;/nowiki&amp;gt;), and it would also probably be it's own template rather than implemented on each template. However, I have done some digging, and empty cells (cells with no sort value) are given a value of &amp;quot;-infinity&amp;quot;, so they sort as the absolute minimum no matter what sort method is used (which means always at the top when sorting ascending). I have been looking to find a way to make a row always sort to the bottom regardless of sort order if the column that is sorted has an empty/valueless cell at that row, but if it exists, it is not documented.&lt;br /&gt;
:Interestingly, it is possible to sort by many columns at once by shift-clicking the second column after sorting the first column, and the rows will be sorted within the first sorting. it might be useful for sorting by chapter within each book [[User:Firestar233|guess who]] ([[User talk:Firestar233|if you desire conversing]] | [[Special:Contributions/Firestar233|what i have done]]) 06:51, 30 January 2025 (UTC)&lt;br /&gt;
::Yes, a book (or youtube) template could default to whatever seems suitable as sort-value without params, but it might be more obvious if explicitly book(/video) zero. Or caught by &amp;lt;nowiki&amp;gt;{{book|nobook=yet}}&amp;lt;/nowiki&amp;gt;, or whatever. I'm trying to think what looks least confusing to future editors (those expanding/editing the table, and/or template(s)), but conflicted about what to anticipate.&lt;br /&gt;
::I had indeed been looking to see if the -infinity thing could be overriden by a column header defined &amp;lt;code&amp;gt;blank-sort-value=&amp;quot;999999&amp;quot;&amp;lt;/code&amp;gt; sort of thing. If nothing else, you'd expect there to be a perceived need to sort a range of cells so that explicit negative and explicit positive contents, either by actual cell value or data-sort-value, to sit either side of blank cells... Not ''all'' the time, as sorting to show blanks ''separate'' from filled rows with actual zeroes is also useful, but it seems to useful not to have been suggested as a configurable change.&lt;br /&gt;
::The booknumber*A_LARGE_NUMBER offset to the chapter number is probably one of the most useful ways to sort by (primarily) book, then chapter, as it takes just one click. (I believe clicking the secondary and then clicking the primary does the same job as clicking the primary and shift-clicking the primary.) I see so little use to doing a primary sort by chapter (with or without secondary sorting by books, or any other column's detail), to interleave all chapter 1s and so on, that having a &amp;quot;book #&amp;quot; column and a &amp;quot;chapter(/page) #&amp;quot; column (two cells in sequence easily created by the book template, and could also handle the double-blank needed by book=none implementation, if we went that route) would be just complicating matters in an unnecessary manner. (As opposed to how we've complicated matters in a 'necessary' one!)&lt;br /&gt;
::Good catch on bringing the BOOK+CHAPTER sort value out of the #switch, BTW, as I was debating how much of the switch-statement I could treat as generic and not need repeating. (My original idea for the 10th Anniversary version of Book 1 to be effectively &amp;quot;Book1.1&amp;quot; made me still want to option of overriding the N*10000 as being 3=&amp;gt;11000 instead of =&amp;gt;30000, but that could ''still'' be implemented by a bit of &amp;quot;(if N=3, 1.1, else N) times 10000&amp;quot; pre-logic, ''or'' by handling &amp;lt;nowiki&amp;gt;{{book|1.10|...}} instead of {{book|3|...}}&amp;lt;/nowiki&amp;gt;. Anyway, not important, either way.)&lt;br /&gt;
::...all this is why I left Favi (and you/others) get on with the original restructuring effort without jumping in (despite having two of the three books, and having seen all the youtubes). I had plenty of ideas of what to do, but did not want to restructure anything from what seemed to be a happy little project with its own momentum and targets. I finally gave in when I noticed an impasse being hit, with errors and confusion, to which I since ''hope'' I have provided a net reduction in both. Though it's only the first of these about which I'm fairly confident. ;) Anyway, perhaps I'm sliding back to my position on the sidelines, now... [[Special:Contributions/172.70.91.245|172.70.91.245]] 11:20, 30 January 2025 (UTC)&lt;br /&gt;
:::These comments are great and extremely detailed, thank you! Thanks to your efforts I was able to retire these templates: book1, book2, book3, book4, and yt, so now we only have the huge {{template|book}} template and {{template|blog}}. I kinda agree with IP that it might not be future-proof, but I don't really see a reason to believe we'll add 2 more parameters to the book-specific columns. And even then, it's not that hard to update the template. But please do let me know if you can think of other issues with the current implementation! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 19:50, 30 January 2025 (UTC)&lt;br /&gt;
----&lt;br /&gt;
I've added a minor feature to the template so that we can see which short video one is. For example, the &amp;quot;everyone jump&amp;quot; short is the 17th one posted, so it now displays on the table as &amp;quot;17th Short video, on 2025‑11‑25: What if everyone on Earth was in the same place and jumped at the same time?&amp;quot;. Hope it helps! [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#5CA7CF&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#F08DB0&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#9E9E9E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#F08DB0&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#5CA7CF&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;]]&amp;lt;/span&amp;gt;&amp;lt;/sup&amp;gt; 17:38, 11 February 2026 (UTC)&lt;br /&gt;
:Thanks! Initially i didn't add it to allow column sorting to work only for videos, but now that there are many shorts the number is definitely neeeded somehwere :) [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 20:39, 13 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== tldr ==&lt;br /&gt;
&lt;br /&gt;
hey favifake! i just came back from a 5 day yosemite trip, that’s why i have been awol for that time. could you please really quick give me a tldr of what has been going on in the past couple days? i see that we finished the index, but i’m just wondering if there’s anything else. thanks! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 02:52, 1 February 2025 (UTC)&lt;br /&gt;
:Welcome back! We now only use the {{template|book}} and {{template|blog}} templates, all the others have been merged into {{template|book}} by the incredible [[User:Firestar233]], the templates are much more solid, they also added all the questions and almost all the what if? 2-exclusive chapters. So now we're only missing the questions from the first book and an explanation for the third's bonus chapter (which you own!). I don't have much time, but you can look at the history of the templates and the main what if chapters page, and also this talk section. There's also a to-do list above the index! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 18:32, 1 February 2025 (UTC)&lt;br /&gt;
::ok, great! i'll try to work on the chapter explainations once i find the time '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:04, 1 February 2025 (UTC)&lt;br /&gt;
:::Amazing! Thanks for your help. If you're interested, I've just added a simple (yet boring) task:&lt;br /&gt;
:::*''&amp;quot;Need to add the name(s) of the readers who asked each questions. It's easy! The instructions are in the ''[[What If? chapters#Editors|Editors section]]''!&amp;quot;''&lt;br /&gt;
:::If you have time, the names are missing for some book-exclusive articles and the blog articles. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 10:59, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Table for smaller screens ==&lt;br /&gt;
Do we think we should list out who asked each question in the table? [[User:Firestar233|guess who]] ([[User talk:Firestar233|if you desire conversing]] | [[Special:Contributions/Firestar233|what i have done]]) 03:09, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:If so (and I'm not sure it's necessary), please not as an extra column. Already it's squeezing what's there down, something chronic. At least on my current screen, right now. &lt;br /&gt;
:*The thumbnail column can't get smaller (unless we use smaller/downscaled thukbnails, of course, but there's a limit to that)&lt;br /&gt;
:*The title column (of the first non-hdader is &amp;quot;Relatacistic(Newline)Baseball&amp;quot;.&lt;br /&gt;
:*The &amp;quot;Reader's(Newline)question&amp;quot; column goes &amp;quot;(quote)What would(Newline)happen if you(Newline)(...etc)&amp;quot;.&lt;br /&gt;
:*The &amp;quot;Randall's answer&amp;quot; column is positively spacious (no doubt forced to be so by the &amp;quot;Too short!&amp;quot; infoboxes), letting it read &amp;quot;The ball would create plasma and(Newline)reach home plate by about 70(Newline)(...etc)&amp;quot;.&lt;br /&gt;
:*The three columns for Blog/Book/Vid couldn't be narrower and make sense.&lt;br /&gt;
:If the questioner is to be asked, set it after the question (same cell, maybe horizontal rule).&lt;br /&gt;
:In fact, what do you think of the following layout modification?&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!Title&lt;br /&gt;
!Question / Answer&lt;br /&gt;
!Blog&lt;br /&gt;
!Books&lt;br /&gt;
!YouTube&lt;br /&gt;
|-&lt;br /&gt;
|'''{{what if|1|Relativistic Baseball}}'''&lt;br /&gt;
 [[File:Relativistic Baseball.png|100px]]&lt;br /&gt;
|''&amp;quot;What would happen if you tried to hit a baseball pitched at 90% the speed of light?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;Ellen McManis&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
The ball would create plasma and reach home plate by about 70 nanoseconds. The result would be some kind of nuclear explosion, destroying everything about a mile from the field. A ruling of &amp;quot;{{w|hit by pitch}}&amp;quot; could be interpreted in this situation.&lt;br /&gt;
|{{blog|1|2012|07|10}}&lt;br /&gt;
|{{book|1|2}}&lt;br /&gt;
|{{book|5|2024|02|06|3EI08o-IGYk|What if you threw a baseball at nearly light speed?}}&lt;br /&gt;
|-&lt;br /&gt;
|'''{{what if|2|SAT Guessing}}'''&lt;br /&gt;
 [[File:SAT Guessing.png|100px]]&lt;br /&gt;
|''&amp;quot;What if everyone who took the SAT guessed on every multiple-choice question? How many perfect scores would there be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;Rob Balder&amp;lt;/div&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
No one would get a perfect score. The odds of guessing correctly on every question would be less than the odds of every ex-living president at that time and the main cast of [[:Category:Firefly|Firefly]] getting struck by lightning on the same day.&lt;br /&gt;
|{{blog|2|2012|07|10|7d early}}&lt;br /&gt;
|{{book|1|66}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
:Saves trouble of having emphatically unsortable columns, this way, being mere continuations of the cell contents we ''do'' want to sort. Assuming we don't decide we want to sort by &amp;quot;Firstname(s) Lastname&amp;quot; (or &amp;quot;Lastname, Firstname(s)&amp;quot;), as well as by sorting by &amp;quot;What would...&amp;quot; / &amp;quot;What if...&amp;quot; / &amp;quot;How much...&amp;quot; / &amp;quot;Is there...&amp;quot;ness, etc. But that's another step with another answer to it. (e.g. a &amp;quot;By&amp;quot; column with data-sort-value=&amp;quot;Lastname, Firstname(s)&amp;quot; defined but ''no visible content''... It'll be as minimally thin as &amp;quot;By&amp;quot; and the sort-glyph allows, only minimally squeezing the other columns. ...if that's more desirous than merely 'data-sort-value'ing the Question(/Name)/Answer field by name (whatever format), and finding little real reason to sort the &amp;quot;How&amp;quot;s from the &amp;quot;What&amp;quot;s from the &amp;quot;Is&amp;quot;s. But that's something that deserves more thought!)&lt;br /&gt;
:But what I ''do'' highly suggest (at least add the &amp;quot;Who&amp;quot; after the &amp;quot;Question&amp;quot;, same cell, and looks nice with right-align; on top of that, cell-mergering like this, ''probably'' with the horizontal rule markup in the Q&amp;amp;A divide) looks good to me.&lt;br /&gt;
:&amp;quot;Relativistic Baseball&amp;quot;(noNewline!) and &amp;quot;(quote)What would happen if you tried to hit a&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;nbsp;(Newline, etc...)&amp;quot; is how the example table pans out in Preview, which is an improvement for readability.&lt;br /&gt;
:I won't pre-emptimptively assume you're ok with this plan, but (if it seems the idea is liked/not disliked), when I have the time to do it I could blitz this (or any other consensus change of similar radicality, that gets proposed instead) later on (at least 12 hours from now, maybe a full day...). I'll do what I can to fill (or visibly format, if already there) such authors as I'm not left totally stumped about for whatever nazcent reason. Sound good to y'all? ;) [[Special:Contributions/141.101.98.190|141.101.98.190]] 05:00, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Thanks for your suggestions! These are my thoughts:&lt;br /&gt;
 Do we think we should list out who asked each question in the table?&lt;br /&gt;
::Yes! I thought about doing this after you commented each reader after the question, but didn't have the time. The ay you went about adding them makes it very easy to create a &amp;quot;find-and-replace&amp;quot; to do it for all cells at once.This is how I'd do it:&lt;br /&gt;
:: &amp;lt;nowiki&amp;gt;''&amp;quot;Question?&amp;quot;''&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
:: &amp;lt;nowiki&amp;gt;&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rob Balder&amp;lt;/div&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 In fact, what do you think of the following layout modification?&lt;br /&gt;
 [...] cell-mergering like this, ''probably'' with the horizontal rule markup in the Q&amp;amp;A divide) looks good to me.&lt;br /&gt;
::I don't really like it and I don't think it's needed, mainly because it only looks good on a small screen. Meanwhile, on a normal-sized desk monitor, it makes the table '''almost twice as tall''' on my end. I don't think we should optimise for smaller screens and disregard other users with a larger screen real estate. If you find any other way to improve the table on both screen sizes, please do let us know!&lt;br /&gt;
 (e.g. a &amp;quot;By&amp;quot; column with data-sort-value=&amp;quot;Lastname, Firstname(s)&amp;quot; defined but ''no visible content''... It'll be as minimally thin as &amp;quot;By&amp;quot; and the sort-glyph allows, only minimally squeezing the other columns.&lt;br /&gt;
::I don't really like this idea, seems confusing for the end user (why is there an empty column?), doesn't add so much value, and needs to be maintained. If someone wants to sort by reader alphabetically, they'll likely find a way to isolate the '''&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rob Balder&amp;lt;/div&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;''' part.&lt;br /&gt;
 But what I ''do'' highly suggest (at least add the &amp;quot;Who&amp;quot; after the &amp;quot;Question&amp;quot;, same cell, and looks nice with right-align [...]&lt;br /&gt;
::Love that! See above.&lt;br /&gt;
::--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 09:01, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::I formatted them! All the ones that were added as comments in the table are now visible. I also added this to-do, mainly for blog posts:&lt;br /&gt;
::*Need to add the name(s) of the readers who asked each questions. It's easy! The instructions are in the ''[[What If? chapters#Editors|Editors section]]''!&lt;br /&gt;
::--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 10:57, 2 February 2025 (UTC)&lt;br /&gt;
:::Regarding &amp;quot;...on a normal-sized desk monitor, it makes the table '''almost twice as tall''' on my end.&amp;quot; my display (non-desktop) has ultra-wide aspect ratio (when landscape; I rarely use portrait for browsing because then web-pages are scaled to unreadable levels).&lt;br /&gt;
:::With side-by-side Q and A columns, the &amp;quot;Too small&amp;quot; warning box dictates the minimum width of the Answer column, making the Question column even more narrow (when you take the minimum width of the thumbnail out of the horizontal space, then the title and the three &amp;quot;occurance&amp;quot; columns fight for what remains) than it might otherwise need to be. (If/when we remove ''all'' these hints to edit longer answer-'summaries', the table will doubtless realign its contents to a more equitable share of width between columns.)&lt;br /&gt;
:::Most often, this still results in (non-short) &amp;quot;Answer&amp;quot; columns being longer than they need to be, and forcing the whole row to be vertically wasteful. An opposite case (such as replicated below) does it with the Question having to have excessive linefeeds, being less readable (needs scrolling to read it all) and leaving a vast desert of blankness in the cell to its immediate right.&lt;br /&gt;
:::Isolating just the Q and A columns (to remove other confounding factors, for most displays except maybe phones-in-portrait - which is already an abominable mode and I find most websites look ''far'' more unreadable in ultra-tall-portrait orientation, so I generally avoid doing that on my tablet) and manually adding the line-breaks I see, you get:&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
|&amp;quot;When my wife&amp;lt;br/&amp;gt;and I started&amp;lt;br/&amp;gt;dating she&amp;lt;br/&amp;gt;invited me over&amp;lt;br/&amp;gt;for dinner at one&amp;lt;br/&amp;gt;time. Her&amp;lt;br/&amp;gt;kitchen had&amp;lt;br/&amp;gt;something&amp;lt;br/&amp;gt;called Bauhaus&amp;lt;br/&amp;gt;chairs, which are&amp;lt;br/&amp;gt;full of holes,&amp;lt;br/&amp;gt;approx 5-6&amp;lt;br/&amp;gt;millimeters in&amp;lt;br/&amp;gt;diameter in both&amp;lt;br/&amp;gt;back and seat.&amp;lt;br/&amp;gt;During this&amp;lt;br/&amp;gt;lovely dinner I&amp;lt;br/&amp;gt;was forced to&amp;lt;br/&amp;gt;liberate a small&amp;lt;br/&amp;gt;portion of wind&amp;lt;br/&amp;gt;and was relieved&amp;lt;br/&amp;gt;that I managed&amp;lt;br/&amp;gt;to do so very&amp;lt;br/&amp;gt;discretely. Only&amp;lt;br/&amp;gt;to find that the&amp;lt;br/&amp;gt;chair I sat on&amp;lt;br/&amp;gt;converted the&amp;lt;br/&amp;gt;successful&amp;lt;br/&amp;gt;silence into a&amp;lt;br/&amp;gt;perfect, and&amp;lt;br/&amp;gt;loud, flute note.&amp;lt;br/&amp;gt;We were both&amp;lt;br/&amp;gt;(luckily) amazed&amp;lt;br/&amp;gt;and surprised&amp;lt;br/&amp;gt;and I have often&amp;lt;br/&amp;gt;wondered what&amp;lt;br/&amp;gt;the odds are for&amp;lt;br/&amp;gt;something like&amp;lt;br/&amp;gt;that happening.&amp;lt;br/&amp;gt;We kept the&amp;lt;br/&amp;gt;chairs for five&amp;lt;br/&amp;gt;years but&amp;lt;br/&amp;gt;despite laborious&amp;lt;br/&amp;gt;attempts it&amp;lt;br/&amp;gt;couldn't be&amp;lt;br/&amp;gt;reproduced.&amp;quot;&lt;br /&gt;
|This... isn’t actually a question, but&amp;lt;br/&amp;gt;thank you for sharing!&lt;br /&gt;
|}&lt;br /&gt;
:::Integrating the row into the above-suggested format of table, we get (showing just that single combined Q+A cell, minus any &amp;quot;by&amp;quot;-line), the following:&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
|&amp;quot;When my wife and I started dating she invited&amp;lt;br/&amp;gt;me over for dinner at one time. Her kitchen had&amp;lt;br/&amp;gt;something called Bauhaus chairs, which are full&amp;lt;br/&amp;gt;of holes, approx 5-6 millimeters in&amp;lt;br/&amp;gt;diameter in both back and seat. During this lovely dinner I&amp;lt;br/&amp;gt;was forced to liberate a small portion of wind&amp;lt;br/&amp;gt;and was relieved that I managed to do so very&amp;lt;br/&amp;gt;discretely. Only to find that the chair I sat on&amp;lt;br/&amp;gt;converted the successful silence into a perfect,&amp;lt;br/&amp;gt;and loud, flute note. We were both (luckily)&amp;lt;br/&amp;gt;amazed and surprised and I have often&amp;lt;br/&amp;gt;wondered what the odds are for something like&amp;lt;br/&amp;gt;that happening. We kept the chairs for five&amp;lt;br/&amp;gt;years but despite laborious attempts it couldn't be reproduced.&amp;quot;&lt;br /&gt;
----&lt;br /&gt;
This... isn’t actually a question, but thank you&amp;lt;br/&amp;gt;for sharing!&lt;br /&gt;
|}&lt;br /&gt;
:::Yes, the non-Q&amp;amp;A cells (which I've left out, just there) are still comparatively empty (especially as &amp;quot;Relativistic Baseball&amp;quot; isn't forced into two lines, and even the final three columns don't need quite as many linefeeds between them ...you could probably narrow them further by forcing some linebreaks back into them, giving even more width to Q+A column), but they're actually often ''less'' empty because they aren't as artifically tall as a function of =max(height(question),height(answer)), instead being =height(wider(question+answer)). The conversion to not force a short question to inhabit a desolately empty cell as long as narrowly squashed answer, ''and'' a short answer to be as long as an even more narrowly squashed question, seems to be more wasteful of space than to give combined Q&amp;amp;A far more width and let it be ''exactly'' as long as it needs to be for both to fill it (being the crux of the row, the rest being 'annotations' to the paragraphed question/answer interplay).&lt;br /&gt;
:::Though I'm not next to my own desktop display, right now, I can tell you that the space-wasting I'm showing is notable (though not quite so egregious) there, too, and I had already thought to try out (at least for a Preview) a Q+A column.&lt;br /&gt;
:::I wasn't, at that time, even thinking of thumbnail+title columns merging (which would help even more), but I'm sorely tempted now. Whether or not Q+A merging is accepted by the wider set of editors. Merging title+thumbnail ''could'' trivially let the Q-column expand maybe to double its current width, depending upon the other dynamics involved in apportioning rendered width and height. [[Special:Contributions/172.70.90.9|172.70.90.9]] 13:00, 2 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Ok, for reference: The desktop machine has the following line-feeds for the above example, as ''currently'' shown in the Thumbnail|Title|Question|Answer|... format:&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
|&amp;quot;When my wife and I started dating she invited me&amp;lt;br/&amp;gt;over for dinner at one time. Her kitchen&amp;lt;br/&amp;gt;had something called Bauhaus chairs, which are full of&amp;lt;br/&amp;gt;holes, approx 5-6 millimeters in diameter in both&amp;lt;br/&amp;gt;back and seat. During this lovely dinner I was forced&amp;lt;br/&amp;gt;to liberate a small portion of wind and was relieved&amp;lt;br/&amp;gt;that I managed to do so very discretely. Only to find&amp;lt;br/&amp;gt;that the chair I sat on converted the successful&amp;lt;br/&amp;gt;silence into a perfect, and loud, flute note. We were&amp;lt;br/&amp;gt;both (luckily) amazed and surprised and I have often&amp;lt;br/&amp;gt;wondered what the odds are for something like that&amp;lt;br/&amp;gt;happening. We kept the chairs for five years but&amp;lt;br/&amp;gt;despite laborious attempts it couldn't be&amp;lt;br/&amp;gt;reproduced.&amp;quot;&lt;br /&gt;
|This... isn’t actually a question, but thank you for sharing!(Single line!)&lt;br /&gt;
|}&lt;br /&gt;
:::Testing the above-suggested format of table, we get:&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
|&amp;quot;When my wife and I started dating she invited me over for dinner at one time. Her kitchen had something called Bauhaus&amp;lt;br/&amp;gt;chairs, which are full of holes, approx 5-6 millimeters in diameter in both back and seat. During this lovely dinner I was&amp;lt;br/&amp;gt;forced to liberate a small portion of wind and was relieved that I managed to do so very discretely. Only to find that the&amp;lt;br/&amp;gt;chair I sat on converted the successful silence into a perfect, and loud, flute note. We were both (luckily) amazed and surprised&amp;lt;br/&amp;gt;and I have often wondered what the odds are for something like that happening. We kept the chairs for five years but&amp;lt;br/&amp;gt;despite laborious attempts it couldn't be reproduced.&amp;quot;&lt;br /&gt;
----&lt;br /&gt;
This... isn’t actually a question, but thank you for sharing!&lt;br /&gt;
|}&lt;br /&gt;
:::Again, produces shorter (and more readable?) rows. In this particularly extreme example, at least. [[Special:Contributions/162.158.74.49|162.158.74.49]] 14:25, 2 February 2025 (UTC)&lt;br /&gt;
::::Thanks for your answer, these are my thoughts:&lt;br /&gt;
 the &amp;quot;Too small&amp;quot; warning box dictates the minimum width of the Answer column, making the Question column even more narrow [...] than it might otherwise need to be&lt;br /&gt;
::::*I hadn't thought of that, but still: if the issue is mainly caused by these notices, it's very easy to replace them with something else that doesn't force the column to be too wide.&lt;br /&gt;
  I generally avoid doing that on my tablet&lt;br /&gt;
::::*Oh, you're still the same IP as before! Hey there! My point ''wasn't'' that your idea wouldn't benefit small-sized screens like tablets (because it does, as you proved!), but that we should mainly focus on desktop users, which is how most readers that aren't on their phones will use the index. I don't like the idea of making the experience worse for everyone except tablet users (and phone users, but i can't imagine someone browsing such a huge index on their phones, so i don't think we should consider them). I'd love it you could improve the experience for both types of devices!&lt;br /&gt;
 &amp;quot;When my wife and I started dating she invited me over for dinner at one time. Her kitchen&lt;br /&gt;
::::*I think that's a bad example because the question is 4x the normal question length and there is no answer. I don't think we'd want to optimise the index so that that specific article looks better but most other articles don't.&lt;br /&gt;
::::*I think the perfect example of how it will one day look is article 2, with the question being slightly shorter than the answer, and that difference being balanced by the name of the reader who asked the question:&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!class=&amp;quot;unsortable&amp;quot;|Thumbnail&lt;br /&gt;
!Title&lt;br /&gt;
!Reader's question&lt;br /&gt;
!class=&amp;quot;unsortable&amp;quot;|Randall's answer&lt;br /&gt;
!Blog&lt;br /&gt;
!Books&lt;br /&gt;
!YouTube&lt;br /&gt;
|-&lt;br /&gt;
|[[File:SAT Guessing.png|100px]]&lt;br /&gt;
|'''{{what if|2|SAT Guessing}}'''&lt;br /&gt;
|''&amp;quot;What if everyone who took the SAT guessed on every multiple-choice question? How many perfect scores would there be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—This is a name&amp;lt;/div&amp;gt;&lt;br /&gt;
|No one would get a perfect score. The odds of guessing correctly on every question would be less than the odds of every ex-living president at that time and the main cast of [[:Category:Firefly|Firefly]] getting struck by lightning on the same day.&lt;br /&gt;
|{{blog|2|2012|07|10|7d early}}&lt;br /&gt;
|{{book|1|66}}&lt;br /&gt;
|{{book|16|2024|09|24|0EytSWiKrFg|What if example?}}&lt;br /&gt;
|}&lt;br /&gt;
::::*This specific example, which is how most articles do/will look hopefully, is '''~45% shorter''' than [[#Question askers|your example]] and thus wastes much less space on my screen size.&lt;br /&gt;
 the final three columns don't need quite as many linefeeds between them ...you could probably narrow them further by forcing some linebreaks back into them [...]&lt;br /&gt;
::::*If they need linebreaks, doesn't that mean that their column would be the most narrow one? I thought mediawiki balanced the table pretty well.&lt;br /&gt;
 thumbnail+title columns merging (which would help even more), but I'm sorely tempted now&lt;br /&gt;
::::*But I think this idea has the same problem, looking too tall on desktops and beautiful on a tablet. I wouldn't want to ruin the UX of desktop users to favour tablet users, but i'd love a way to improve both!&lt;br /&gt;
::::*Also, I'd like to one day make the thumbnail bigger, because currently it's too small in my opinion. But if i increased its size right now, it would force every row to be even taller, which would waste space on desktop (and, of course, save space on small screens, or at least not make that big of a difference). --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:04, 2 February 2025 (UTC)&lt;br /&gt;
::::Is there a &amp;quot;mobile&amp;quot; version/url for this site? because there might be a way to make the table try to display a different layout if it's on the mobile url/version or if the screen is too small, but that would require putting complicated expressions in every row and in the header columns. [[User:Firestar233|guess who]] ([[User talk:Firestar233|if you desire conversing]] | [[Special:Contributions/Firestar233|what i have done]]) 20:53, 3 February 2025 (UTC)&lt;br /&gt;
:::::Yeah I had thought of doing a similar thing, maybe have two pages with different coding and use complex transclusions to keep the content the same? But I wouldn’t even know where to begin with that. But you're the wiki-editing wizard here. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:50, 4 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::::As I predicted, now that most columns are filled, on my screen they're almost the same width! I think it'd be even more balanced if we removed the notices --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:44, 31 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== adding what if? 10th ann   ==&lt;br /&gt;
&lt;br /&gt;
as most of you know, the what if? 10th anniversary edition is basically an updated version of what if?, compete with red annotations and a bonus chapter that i need to get around to explaining. since it has all the original what if? chapters, should we add a red 10th anniversary box under each green what if? box? '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 16:12, 3 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yeah I realized it was just small annotations after i created the template and now I've changed the 10th ann. one to say ''Featured '''exclusively''' on the 3rd ed. etc.'' Not sure if that's enough, could also be much longer since it's only used on 1 row, but we definitely shouldn't add the template to every other article, (would break the style= html tag). Someone should still mention that articles on the first book are all available on the 3rd (and add more info) on both '''[[what if? (blog)]]''' and '''[[What If? 10th Anniversary Edition]]'''.&lt;br /&gt;
:Don't worry too much about explaining it, it can just be a couple of sentences. People can watch the video if they want details. Thanks for your work!{{unsigned|FaviFake|09:57, 3 February 2025 (UTC)}} &amp;lt;!-- I'm so bad at this! I love how both IP and Firestar rushed to add my signature hahaha --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:The fact that the 10th Anniversary ed (&amp;quot;book3&amp;quot;, in original nomenclature) was basically a bonus-chapter version of the original (&amp;quot;book1&amp;quot;), was behind my suggestion that book|3 should sort-value itself as between book|1 articles and the completely new book|2, but there are severl ways of doing it (including maybe using something akin to {{w|Template:Diagonal split header}} for book|1 (assumed to also be book|3) rendering. [[Special:Contributions/162.158.38.96|162.158.38.96]] 21:08, 3 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::That's interesting, I didn't know that existed! I wonder if there's a less repetitive and/or space-efficient way of expressing the same message (&amp;quot;this is on both&amp;quot;), but idk. (look, I remembered to sign this time!) --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:43, 4 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::another question: should i be updating the explanations to be accurate as of 2024? many of the red annotations contain corrections or updates. '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 16:08, 4 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
That's interesting! I like the idea of adding them, but I can't seem to find a nice way to add them:&lt;br /&gt;
*We could add them to the existing explanation, but that would be weird because half of the blog articles, which are public on the site, don't have these additions.&lt;br /&gt;
*We could add them to the book column, but it'd likely get too big, and we would need to figure out a way to make the template do that.&lt;br /&gt;
*We could create a duplicate row of every red-annotated article, even if they're on the blog, but that would be confusing and might clutter the index.&lt;br /&gt;
*We could create a new column, but we already have too many.&lt;br /&gt;
*Also, we'd need to figure out how to add them. Do we want to make the text red like in the book? Should we use a new/old template for that?&lt;br /&gt;
--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:43, 4 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== By what measure is anything &amp;quot;too short&amp;quot;. ==&lt;br /&gt;
&lt;br /&gt;
I am very close to just removing all the &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{notice|Too short}}&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; additions, on the basis that this seems to be a purely subjective measure. The only reason I haven't is because they'll probably just be added back in again (with no more reasoning than before). But, if anyone wants more information, everyone already knows where they can find the ''full'' text (or narrated video) that gives it, while a summary is a summary. [[Special:Contributions/172.70.85.49|172.70.85.49]] 20:28, 19 March 2025 (UTC)&lt;br /&gt;
:The reason I add them is because I'd like people browsing the index to be able to glance at a question and read its summary. I try to check the original article to see if there are any important things we missed and point them out. But if, after reading through an article, you find that our summary is clear and '''fully answers''' the question, you can remove it. I started adding these because some early summaries were way too short, just 5-10 words, and mostly didn't answer the question. For example, if an answer is &amp;quot;We would all die&amp;quot;, that doesn't answer the question, but &amp;quot;The radiation from the nuclear bomb would be so pervasive that we would all die in 2 years&amp;quot; does.&lt;br /&gt;
&lt;br /&gt;
:Of course people can just read all ~250 articles, but if someone just wants the answer quickly, we offer that. Please feel free to remove them from answers that are already complete, but not all of them.--[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 16:48, 20 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Reviewing the current first five &amp;quot;Too short&amp;quot; complaints, IMO you cannot get much more fully answered without expanding the &amp;quot;summary&amp;quot; to basically going through the article's in-depth explanation and copying/paraphrasing it. Which seems to me to miss the point.&lt;br /&gt;
::Parallel requests for rewording/better phrasing I can understand (if I thought that any change I made in that direction was going to stand when it got &amp;quot;made longer&amp;quot;, I might even try to help out in that direction), but I'm still none the wiser why they are too short.&lt;br /&gt;
::Answering a question of &amp;quot;How long/heavy/bright/fast is &amp;lt;foo&amp;gt;?&amp;quot; shouldn't need more than a simple &amp;quot;it is &amp;lt;measurement&amp;gt;, given &amp;lt;caveat&amp;gt;&amp;quot;, in most cases. Maybe a couple of those if there's different caveats, or add why it would end the world if you even ''had'' such a &amp;lt;foo&amp;gt;. &amp;quot;Could I/we/humanity &amp;lt;bar&amp;gt;?&amp;quot; probably doesn't need much more than &amp;quot;[Yes/No], but &amp;lt;unexpected thing...&amp;gt;&amp;quot; And I'm not sure if it's still there, because I'm not going to recheck it all, but at one point I noted at least one short-question/short-answer that had a longer 'summary' than the answer given.&lt;br /&gt;
::I like words. I need to expend effort to not use more of them, myself, and am quite pleased if I ''can'' satisfactorily say what I'm trying to say in a succint manner. (i.e. not like this...) But I'm still none the wiser what (lower) thresholds there are in this situation. I'm going to consider if I can help, here, but not right this moment. [[Special:Contributions/172.71.241.122|172.71.241.122]] 20:29, 20 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Oooh you're the same IP! I didn't recognise you.&lt;br /&gt;
 Reviewing the current first five &amp;quot;Too short&amp;quot; complaints, IMO you cannot get much more fully answered without expanding the &amp;quot;summary&amp;quot; to basically going through the article's in-depth explanation and copying/paraphrasing it. Which seems to me to miss the point.&lt;br /&gt;
:::Sounds good. If the explanation is satisfactory and mentions everything except things like the methodology used and minor &amp;quot;sub-answers&amp;quot;, feel free to remove the notices!&lt;br /&gt;
&lt;br /&gt;
  &amp;quot;How long/heavy/bright/fast is &amp;lt;foo&amp;gt;?&amp;quot; shouldn't need more than a simple &amp;quot;it is &amp;lt;measurement&amp;gt;, given &amp;lt;caveat&amp;gt;&amp;quot;, in most cases. Maybe a couple of those if there's different caveats, or add why it would end the world if you even had such a &amp;lt;foo&amp;gt;.&lt;br /&gt;
:::Agreed!&lt;br /&gt;
&lt;br /&gt;
 &amp;quot;Could I/we/humanity &amp;lt;bar&amp;gt;?&amp;quot; probably doesn't need much more than &amp;quot;[Yes/No], but &amp;lt;unexpected thing...&amp;gt;&amp;quot;&lt;br /&gt;
:::Agree, but usually the entire article revolves around that unexpected thing, so i think we should summarise that too. Agin, feel free to remove the ones you're sure can't be made any longer in a useful way At the start, I added a lot and didn't have time to go read the article for each one! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:56, 21 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Alternate universe What-Ifs ==&lt;br /&gt;
&lt;br /&gt;
Should we make the explanation for Alternate universe What-Ifs a separate page? Explaining every section in this article might be too long, and if the other explanations are anything to go by, an explanation that fits would be considered too short. [[Special:Contributions/172.68.174.147|172.68.174.147]] 06:09, 21 March 2025 (UTC)&lt;br /&gt;
:I think we should definitely explain it, but maybe it's better if we keep it in the table? Why'd you want to split into another page?&lt;br /&gt;
:Also, the short-answer articles aren't too short. If you look at [https://www.explainxkcd.com/wiki/index.php/What_If%3F_chapters#:~:text=Short Answer Section II Short%20Answer%20Section%20II], for example, it explanations are very short, and rightfully so. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:49, 21 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== What about Good Question? ==&lt;br /&gt;
&lt;br /&gt;
There does appear to be a *fourth* &amp;quot;What If?&amp;quot; thing Randall has done that is seemingly only documented at [[New York Times: Good Question]]; the New York Times's [https://www.nytimes.com/column/good-question-randall-munroe-xkcd Good Question], which does appear to maybe have some chapter reposts (i.e. Cosmic Road Trip/&amp;quot;How Long Is the Drive to the Edge of the Universe?&amp;quot;). My question is, is this worth documenting on this page in specific? [[User:Adrmcr|Adrmcr]] ([[User talk:Adrmcr|talk]]) 18:36, 21 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Oh, right, I had forgotten about that page! I like the idea of doing something with it, it's currently almost impossible to find. To give it more visibility, I think we could move its contents here. I'm not sure if we should add them to the existing table or put them in a new section, maybe at the bottom. I could see something like this working:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; |  Thumbnail&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; data-sort-type=text|  Title&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; data-sort-type=text|  question&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; |  Randall's answer&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot;|                                  Article available in... &amp;lt;noinclude&amp;gt;&amp;lt;!--&amp;lt;/noinclude&amp;gt;&amp;lt;span style=&amp;quot;background-color:#FFFF00;&amp;quot;&amp;gt;&amp;lt;noinclude&amp;gt;--&amp;gt;&amp;lt;/noinclude&amp;gt;&amp;amp;nbsp;''(click to sort)''&amp;amp;nbsp;&amp;lt;noinclude&amp;gt;&amp;lt;!--&amp;lt;/noinclude&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;noinclude&amp;gt;--&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           Blog&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           Books&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           YouTube&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |'''Good Question'''&lt;br /&gt;
|[https://www.nytimes.com/column/good-question-randall-munroe-xkcd ''&amp;quot;How Long Is the Drive to the Edge of the Universe?&amp;quot;'']&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Randall Munroe&amp;lt;/div&amp;gt;&lt;br /&gt;
|Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sagittis lacus sit amet porta vulputate.&lt;br /&gt;
|1st &amp;quot;[https://www.nytimes.com/column/good-question-randall-munroe-xkcd Good Question]&amp;quot; NYT article, on 2012‑07‑10&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.nytimes.com/column/good-question-randall-munroe-xkcd ''&amp;quot;Shark or Orca: Which Should You Fear More?&amp;quot;'']&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Randall Munroe&amp;lt;/div&amp;gt;&lt;br /&gt;
|rutrum eros id, tincidunt neque. Integer hendrerit magna ac nibh fringilla, &lt;br /&gt;
|2nd &amp;quot;[https://www.nytimes.com/column/good-question-randall-munroe-xkcd Good Question]&amp;quot; NYT article, on 2012‑07‑10&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.nytimes.com/column/good-question-randall-munroe-xkcd ''&amp;quot;	How Many Languages Could a Child Speak?&amp;quot;'']&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Randall Munroe&amp;lt;/div&amp;gt;&lt;br /&gt;
|non venenatis lacus hendrerit. Pellentesque ullamcorper dolor eget nunc gravida, nec euismod risus efficitur. &lt;br /&gt;
|3rd &amp;quot;[https://www.nytimes.com/column/good-question-randall-munroe-xkcd Good Question]&amp;quot; NYT article, on 2012‑07‑10&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:The old page could become a redirect to the new section/NYT table. --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 08:49, 22 March 2025 (UTC)&lt;br /&gt;
::Anyone? --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 16:56, 23 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Striking a match on Titan - additional ==&lt;br /&gt;
&lt;br /&gt;
Depends on how you read it, but try to strike a safety match ''on'' Titan probably would do nothing at all (just like if you tried to strike it on a bit of Earth rock, here on the surface of Earth), as it needs the chemicals in the striking-strip to (in small amounts) combine with the oxidiser in the match-head coating to spark up and ''then'' prompt the relatively slower-burning process that leads to the atmosphere-fed burning of the 'stick'.&lt;br /&gt;
&lt;br /&gt;
This means that striker+match reaction will also work in most situations (including underwater and in vacuum), though of course may then fail to get significant amount of post-striking ignition to continue. As non-safety/strike-anywhere ones will, given the friction (hmmm... would you get good friction off of the ice-boulders of Titan?).&lt;br /&gt;
&lt;br /&gt;
But coating your matchheads with wax (or manufactured with a suitable coating) is advisable for 'survival kit' matches, to prevent infusion of water to 'dampen the squib'. Would be interesting to know to what degree the anoxic atmosphere of Titan might seep in and similarly suppress the various types of ready-to-react compounds, before even the lack of free oxygen ends the intended flare-up. [[Special:Contributions/172.71.26.37|172.71.26.37]] 10:19, 29 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Uhh, what article are you talking about? This info could be useful to add in the index! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:06, 29 March 2025 (UTC)&lt;br /&gt;
::Easily searchable (or made visible as per my recent change), it's not the only &amp;quot;match&amp;quot; or &amp;quot;Titan&amp;quot; reference, but there aren't so many of either that you need to check much further than the first appearance of either, probably.&lt;br /&gt;
::But, as you ask, it's in the Book 2 &amp;quot;Short Answers #3&amp;quot; collection (the penultimate one of that grouping). And, now that I've reached home, I can also tell you that it's pp.141-142 in the UK hardback edition (whether or not that's identical/near to your own copy's appearance of it).&lt;br /&gt;
::However, no ''more'' info needs to be added, IMO. I changed the prior edit (not sure who/which IP did it, without checking, but their edit popped it up on my own radar as worthy of minor refinement) to just say that it's oxidiser, not just &amp;quot;oxygen&amp;quot; (there's oxygen in the &amp;quot;stick&amp;quot; and any other &amp;quot;head&amp;quot;-coatings applied, but basically incidental to the initial ignition when it's the oxidiser component that primarily contributes to that). And, to my mild and gratifying surprise, now find that this is pretty much exactly what the Short Answer says (except in 'Merkin form of &amp;quot;oxidizer&amp;quot; - so now, I think to myself, did I write my edit in Leftpondian (as I should, just because Noah Webster wanted to be a Lexicographical Edgelord), or Rightpondian (as is my default habit, because that's how I was educated)... need to check that!), in the form of a summary which ''our'' summary pretty much matches&amp;lt;sup&amp;gt;&amp;amp;#91;[[559: No Pun Intended|''NPI!'']]&amp;amp;#93;&amp;lt;/sup&amp;gt; in all useful ways.&lt;br /&gt;
::I added the stuff here, about the Safety Match detail, as a bonus bit of info for anyone who cares to scan down here to know this additional thing that I happen to know (but not necessarily explain well?)... Randall does not go that far into the details in his book-answer (he does divert into a footnote about KClO&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; being used in airliner oxygen masks, but that's beyond the scope of adding here, and he totally avoids the safety/strike-anywhere distinctions). Adding the above to the Explanation Table would be overkill, and misrepresent Randall's original format to no real benefit (except maybe some curious pyromaniacs, on Earth or elsewhere) [[Special:Contributions/172.69.195.179|172.69.195.179]] 16:58, 29 March 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== A bit disappointed in the lack of progress ==&lt;br /&gt;
&lt;br /&gt;
I mean, I understand that this is a volunteer project and I can't force people to work on this thing, hell, I don't even have the time to fill out most of the pages even if I HAVE read the What IF in question. However, it's still a bit disheartening to see so many &amp;quot;too shorts&amp;quot; even after several weeks. [[Special:Contributions/172.69.208.133|172.69.208.133]] 12:32, 17 April 2025 (UTC)&lt;br /&gt;
:If it was up to me, I'd solve the issue of too many &amp;quot;Too short&amp;quot;s by... deleting the unnecessary &amp;quot;Too short&amp;quot;s... I have no desire to expand the sufficient summaries with much longer reruns of the full answers. [[Special:Contributions/162.158.216.168|162.158.216.168]] 15:39, 17 April 2025 (UTC)&lt;br /&gt;
::I think the progress we made is still a lot, considering the state the index was previously. Also, it's not the only incomplete thing, there are about other 80 incomplete pages here. Also, as I said a while back:&lt;br /&gt;
::If the explanation is satisfactory and mentions everything except things like the methodology used and minor &amp;quot;sub-answers&amp;quot;, please remove the notices! &amp;quot;Could I/we/humanity &amp;lt;bar&amp;gt;?&amp;quot; probably doesn't need much more than &amp;quot;[Yes/No], but &amp;lt;unexpected thing...&amp;gt;&amp;quot;. Agree, but usually the entire article revolves around that unexpected thing, so i think we should summarise that too. Again, feel free to remove the ones you're ''sure'' can't be made any longer in a useful way. At the start of the project, I added a lot and didn't have time to go read the article for each one! --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 17:03, 17 April 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;nonmonomolecular&amp;quot; and peptides ==&lt;br /&gt;
&lt;br /&gt;
About &amp;quot;the longest sequence of letters using one number key&amp;quot;: Yamaki, Sahori B. et al.'s article published on 15 March, 2005 in ''Journal of Colloid and Interface Science'' volume 283, issue 2 on pages 464–471 titled ''Morphological and structural characteristics of diazo dyes at the air–water interface: in situ Brewster angle microscopy and polarized UV/vis analysis'' uses &amp;quot;nonmonomolecular&amp;quot; (with neither hyphens nor dashes nor anything else), a word with 9 consecutive letters using the 6 key a total of 20 times. The word also has [[:wikt:nonmonomolecular|an article on Wiktionary]].&lt;br /&gt;
&lt;br /&gt;
About the peptides: &amp;quot;Glycylglycylglycyl[…]glycine&amp;quot; and other spelled-out amino acid sequences (like titin's) status as a word is dubious. If we assume they are all considerable as words, there is no upper limit on peptide sequence word length (e. g. &amp;quot;glycyl&amp;quot; adds 6 to the length and 0 to the count of unallowed letters (U, B, X, O, J, Z), &amp;quot;phenylalanyl&amp;quot; adds 12 and 0, respectively, etc.). [[Special:Contributions/172.70.39.208|172.70.39.208]] 21:21, 27 April 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Great! You can add all that in the explanation in the main table :D &amp;amp;nbsp; --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 14:32, 28 April 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Contact Randall (or his team): link rot on &amp;quot;Pressure Cooker&amp;quot; What if? page ==&lt;br /&gt;
&lt;br /&gt;
On this page: https://what-if.xkcd.com/40/ &lt;br /&gt;
&lt;br /&gt;
There's a link ostensibly to an article about O2F2, link text is &amp;quot;Another article&amp;quot;. It goes to lateralscience.com. Unfortunately, the original site there has been replaced by a domain squatter advertising online casinos. I don't know how to contact Mr. Munroe to tell him. [[User:Nitpicking|Nitpicking]] ([[User talk:Nitpicking|talk]]) 20:23, 12 May 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can just shoot him an email at his personal address: rmunroe@gmail.com &amp;amp;nbsp; --[[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:03, 13 May 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== 10th Anniversary Annotations ==&lt;br /&gt;
&lt;br /&gt;
Hello, new here. I honestly have no idea what I am doing. But I read the 10th anniversary edition of ''[[What If?]]'', and one annotation, in the same chapter, added dimethylmercury far off to the right, and about halfway up the y axis. [[User:Majordesmosnerd|Majordesmosnerd]] ([[User talk:Majordesmosnerd|talk]]) 22:18, 19 March 2026 (UTC)&lt;br /&gt;
:We as a community have not decided what to do with annotations, as there are many of them scattered throughout the book and it would be a painstaking process to document them all. I would like invite further discussion about this so we can come to a consensus. [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#7E7E7E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 01:05, 20 March 2026 (UTC)&lt;br /&gt;
::Agree it'd be nice to have them documented somewhere! [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 12:21, 4 April 2026 (UTC)&lt;br /&gt;
:::How would we format it? Do we want to make a new template for these annotations? I'd be willing to go through my book if I can find the time for it between all my work. [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#7E7E7E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 19:41, 5 April 2026 (UTC)&lt;br /&gt;
::::Maybe a second table somewhere else on the page, with a link from the main table (in the book column?) that goes to the second table, so a user can jump between them when they see the little &amp;quot;see annotations!&amp;quot; link in the book column? (or another column?) I've already filled the table with anchors, so for example to jump to chapter 34 of the second book just can just type [[#2-34]] and it'll take you there. Or for the blog, type any number like [[#55]]. I'm not sure how we should format the annotations, maybe copy the text around it (coloured black like normal text) and make the annotations bold? Or create a {{tl|red}} template that just makes the text of the annotation red. It could work! Unfortunately i don't have the book, i bought the first one :( ㅤ [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 16:06, 7 April 2026 (UTC)&lt;br /&gt;
:::::I think that a second page would be smart. We could do something like &amp;lt;nowiki&amp;gt;[[what if? articles/Annotations]]&amp;lt;/nowiki&amp;gt; with a table: page number, chapter, transcript, and I'll see if I can find the images for the actual annotations somewhere. As for formatting, I think we should do black text for describing any doodles that Randall made, then red text for the actual annotation itself. Let me know if you have any other concerns. [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#7E7E7E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 16:28, 15 April 2026 (UTC)&lt;br /&gt;
::::::Sure, sounds good. The reason I was thinking of doing it all in the same page is that readers could jump back and forth from the explanation of the annotations to the explanation of the chapter and vice versa, without having to reload the page. [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 19:36, 17 April 2026 (UTC)&lt;br /&gt;
:::::::So a different table, but on the same page on a different section? That can work for me. [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#7E7E7E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 18:49, 19 April 2026 (UTC)&lt;br /&gt;
::::::::Yeah exactly! [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 08:26, 21 April 2026 (UTC)&lt;br /&gt;
== new youtube short ==&lt;br /&gt;
Add why is the sky blue youtube channel short that is on xkcd what if channel. {{unsigned ip|185.88.42.163|12:58, 23 April 2026 (UTC)}}&lt;br /&gt;
:on it! please remember to sign your comments with &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; in the future, thanks! [[User:42.book.addict|&amp;lt;span style=&amp;quot;font:11pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;tor&amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;i :3&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font:8pt Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:#7E7E7E&amp;quot;&amp;gt;talk &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#C0728D&amp;quot;&amp;gt;to &amp;lt;/span&amp;gt;&amp;lt;span style=&amp;quot;color:#4A86A6&amp;quot;&amp;gt;me!&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt; 18:47, 23 April 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== interesting things ==&lt;br /&gt;
I just noticed that what if 12 (Raindrop) has a different background color. Just found it interesting.--[[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 20:50, 26 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=what_if%3F_articles&amp;diff=413630</id>
		<title>what if? articles</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=what_if%3F_articles&amp;diff=413630"/>
				<updated>2026-05-26T20:48:18Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: :)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{DISPLAYTITLE:''what if?'' articles}}For other instances of this title, see [[What If (disambiguation)]].''&amp;lt;!--&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
==Article index==&lt;br /&gt;
&amp;lt;noinclude&amp;gt;--&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{incomplete|The [[10th Anniversary Edition]] annotations have not been added yet. If you have the book and can help, please see the [[Talk:what if? articles#10th_Anniversary_Annotations|Talk Page]] for more info!}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&amp;lt;!--&amp;lt;div style=&amp;quot;display:none;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;--&amp;gt;This is an index of all articles featured in Randall Munroe's ''what if?'' [[what if? (blog)|blog]] and [[:Category:Books|book series]]. For each article, the original question and a summary of Randall's answer are provided. If an article is available on the blog, you can click the title to read it in full. You can use the columns to sort the table alphabetically, by release date on the blog or YouTube, or by chapter in the books. The thumbnail is only available for articles published on the blog. If the title of a blog article differs from the one in the book, the latter will be provided in the Book column. A much simpler list that doesn't include book-exclusive articles can be found in the [https://what-if.xkcd.com/archive archive section] of the blog. Similar articles by Randall have also been [[New York Times: Good Question|published in the New York Times]].&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Incomplete explanations| ]]&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
{| class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; |  Thumbnail&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; data-sort-type=text|  Title&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; data-sort-type=text|  Reader's question&lt;br /&gt;
! rowspan=&amp;quot;2&amp;quot; scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; |  Summary of Randall's answer&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot;|                                  Article available in... &amp;lt;noinclude&amp;gt;&amp;lt;!--&amp;lt;/noinclude&amp;gt;&amp;lt;span style=&amp;quot;background-color:#FFFF00;&amp;quot;&amp;gt;&amp;lt;noinclude&amp;gt;--&amp;gt;&amp;lt;/noinclude&amp;gt;&amp;amp;nbsp;''(click to sort)''&amp;amp;nbsp;&amp;lt;noinclude&amp;gt;&amp;lt;!--&amp;lt;/noinclude&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;noinclude&amp;gt;--&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           Blog&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           Books&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; data-sort-type=number |           YouTube&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Relativistic Baseball.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|1|Relativistic Baseball}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;What would happen if you tried to hit a baseball pitched at 90% the speed of light?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ellen McManis&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |The ball would create plasma and reach home plate in about 70 nanoseconds. The result would be some kind of nuclear explosion, destroying everything about a mile from the field. A ruling of &amp;quot;{{w|hit by pitch}}&amp;quot; could be interpreted in this situation.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{blog|1|2012|07|10}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|2}}&lt;br /&gt;
|{{book|5|2024|02|06|3EI08o-IGYk|What if you threw a baseball at nearly light speed?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|14|short-video=yes|2025|10|28|Uj10jGq2O8o|What if you tried to hit a baseball pitched at 90% the speed of light?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:SAT Guessing.png|100px]]&lt;br /&gt;
|'''{{What If|2|SAT Guessing}}'''&lt;br /&gt;
|''&amp;quot;What if everyone who took the SAT guessed on every multiple-choice question? How many perfect scores would there be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rob Balder&amp;lt;/div&amp;gt;&lt;br /&gt;
|No one would get a perfect score. The odds of guessing correctly on every question would be less than the odds of every living ex-president at that time and the main cast of [[:Category:Firefly|Firefly]] getting struck by lightning on the same day. To put this as a number, the odds of this happening would be less than 1/10^100 (one {{w|googol}}).&lt;br /&gt;
|{{blog|2|2012|07|10|7d early}}&lt;br /&gt;
|{{book|1|66}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Yoda.png|100px]]&lt;br /&gt;
|'''{{What If|3|Yoda}}'''&lt;br /&gt;
|''&amp;quot;How much Force power can Yoda output?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ryan Finnie&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yoda can output about 19.2 kilowatts, or 25 horsepower. &amp;quot;Yoda power&amp;quot; would cost about $2/hour.&lt;br /&gt;
|{{blog|3|2012|07|17}}&lt;br /&gt;
|{{book|1|32}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:A Moles of Moles.png|100px]]&lt;br /&gt;
|'''{{What If|4|A Mole of Moles}}'''&lt;br /&gt;
|''&amp;quot;What would happen if you were to gather a mole (unit of measurement) of moles (the small furry critter) in one place?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sean Rice&amp;lt;/div&amp;gt;&lt;br /&gt;
|In physics, a {{w|mole (unit)|mole}} is a number that equals approximately 6.022 × 10&amp;lt;sup&amp;gt;23&amp;lt;/sup&amp;gt;. If this amount of moles (the furry animals) were put in space, they would form a sphere a little bit larger than our Moon with about the same gravity as Pluto. The surface would freeze and trap the interior warmth, causing geysers of hot meat and methane.&lt;br /&gt;
|{{blog|4|2012|07|24}}&lt;br /&gt;
|{{book|1|10}}&lt;br /&gt;
|{{book|29|2025|8|19|lLlwvmu1ZeA|What if you had a mole of moles?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Robot Apocalypse.png|100px]]&lt;br /&gt;
|'''{{What If|5|Robot Apocalypse}}'''&lt;br /&gt;
|''&amp;quot;What if there was a robot apocalypse? How long would humanity last?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rob Lombino&amp;lt;/div&amp;gt;&lt;br /&gt;
|Humanity would most likely survive. Most robots can easily be subdued because technology hasn’t been developed enough to allow them to walk, evade being destroyed, and kill us efficiently. They could decide to use our nuclear weapons, but that would hurt them more than us.&lt;br /&gt;
|{{blog|5|2012|07|31}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Glass Half Empty.png|100px]]&lt;br /&gt;
|'''{{What If|6|Glass Half Empty}}'''&lt;br /&gt;
|''&amp;quot;What if a glass of water was, all of a sudden, literally half empty?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Vittorio Iacovella&amp;lt;/div&amp;gt;&lt;br /&gt;
|If the vacuum were on the bottom half, it would explode, but if it were on the top half, the air rushes in and it becomes normal water.&lt;br /&gt;
|{{blog|6|2012|08|07}}&lt;br /&gt;
|{{book|1|26}}&lt;br /&gt;
|{{book|16|2024|09|24|0EytSWiKrFg|What if a glass of water were LITERALLY half empty?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Everybody Out.png|100px]]&lt;br /&gt;
|'''{{What If|7|Everybody Out}}'''&lt;br /&gt;
|''&amp;quot;Is there enough energy to move the entire current human population off-planet?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Adam&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, at least not without starving to death quickly and leaving our pets, belongings, and everything else behind. The best way to do it is either with a space tether or to ride the shockwave of a nuclear bomb, but the former lacks a good material and the latter is literally ''riding the shockwave of a nuclear bomb''. In any case, highly impractical.&lt;br /&gt;
|{{blog|7|2012|08|14}}&lt;br /&gt;
|{{book|1|35}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Everybody Jump.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|8|Everybody Jump}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;What would happen if everyone on e&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;E&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;arth stood as close to each other as they could and jumped, everyone landing on the ground at the same instant?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Thomas Bennett (and many others)&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |Earth would be unaffected, but almost all humans would probably be wiped out, due to the congestion of everybody being in one place at once. Utilities and everything requiring human oversight would eventually fail because no one was maintaining them. If airports became functional, only the largest would be able to efficiently get everybody home. Only the people at the edges of the giant crowd would be able to escape, with the rest almost certainly dying due to suffocation. The Earth would then be a lawless wasteland, with a severely diminished population trying to restore humanity to its former glory.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|8|2012|08|21}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|9}}&lt;br /&gt;
|{{book|9|2024|04|16|p2M8Y0z9Rl0|What if everyone jumped at once?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|17|short-video=yes|2025|11|25|Ny9m2l6h478|What if everyone on Earth was in the same place and jumped at the same time?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Soul Mates.png|100px]]&lt;br /&gt;
|'''{{What If|9|Soul Mates}}'''&lt;br /&gt;
|''&amp;quot;What if everyone actually had only one soul mate, a random person somewhere in the world?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Benjamin Staffin&amp;lt;/div&amp;gt;&lt;br /&gt;
|Assuming the soul mate can exist at any time, there is a high chance that you would not find your soul mate. Around 100 billion humans have ever existed, but only 8 billion of those people are alive today. This means that there is an over 90% chance that your soul mate is long dead. This is made worse by the fact that people will also be born in the future, and your soul mate could live very far in the future. &lt;br /&gt;
&lt;br /&gt;
Even if it is assumed that someone's soul mate must be alive while they are alive, there's still a very low chance of finding your soul mate due to the sheer amount of people in the world. Even if you find them, they may speak another language and be unable to understand you. &lt;br /&gt;
&lt;br /&gt;
Jobs would also be affected, with very social jobs such as waiters, cashiers, or traffic guards being highly sought-after.&lt;br /&gt;
|{{blog|9|2012|08|28}}&lt;br /&gt;
|{{book|1|6}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cassini.png|100px]]&lt;br /&gt;
|'''{{What If|10|Cassini}}'''&lt;br /&gt;
|''&amp;quot;What would the world be like if the land masses were spread out the same way as now - only rotated by an angle of 90 degrees?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Socke&amp;lt;/div&amp;gt;&lt;br /&gt;
|Hard to tell with any sort of certainty, but North America remains the same (just flipped, so Canada is tropical), South America becomes more like Europe before this question, Asia is flipped just like North America was, Europe becomes more like southeast Asia, Africa's climate is essentially rotated 90 degrees and East Africa gets a lot more tornadoes, Australia is colder and wetter, and Antarctica becomes a tropical rainforest. Of course, the biosphere collapses due to the shuffling and the ice caps (prematurely) melt, while also making certain wildlife appear elsewhere than normal.&lt;br /&gt;
|{{blog|10|2012|09|04}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|23|2025|04|01|WH4g1ptJ-70|What if the Earth rotated 90 degrees?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Droppings.png|100px]]&lt;br /&gt;
|'''{{What If|11|Droppings}}'''&lt;br /&gt;
|''&amp;quot;If you went outside and lay down on your back with your mouth open, how long would you have to wait until a bird pooped in it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Adrienne Olson&amp;lt;/div&amp;gt;&lt;br /&gt;
|Assuming an even distribution of all birds across the Earth's surface and a frequency of 1 poop per hour, it would take you about 195 years on average. However, those assumptions are unrealistic: It would probably be closer to a few hours if you were laying under an area where large amounts of birds are common, such as a power line or tree.&lt;br /&gt;
|{{blog|11|2012|09|11}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Raindrop.png|100px]]&lt;br /&gt;
|'''{{What If|12|Raindrop}}'''&lt;br /&gt;
|''&amp;quot;What if a rainstorm dropped all of its water in a single giant drop?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael McNeill&amp;lt;/div&amp;gt;&lt;br /&gt;
|The surrounding area would be obliterated via the violent rush of crushing water, causing flash flooding in the surrounding area. There would be mass confusion for many following years.&lt;br /&gt;
|{{blog|12|2012|09|18}}&lt;br /&gt;
|{{book|1|65}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Laser Pointer.png|100px]]&lt;br /&gt;
|'''{{What If|13|Laser Pointer}}'''&lt;br /&gt;
|''&amp;quot;If every person on Earth aimed a laser pointer at the Moon at the same time, would it change color?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Peter Lipowicz&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would take lots of power, but yes, assuming you want to drain the Earth's oil and cover Asia in megawatt lasers. Going even further in power level fries the Earth and launches the Moon into the solar system.&lt;br /&gt;
|{{blog|13|2012|09|25}}&lt;br /&gt;
|{{book|1|7}}&lt;br /&gt;
|{{book|18|2024|11|05|JqFSGkFPipM|What if everyone pointed a laser at the m&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;m&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;oon?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |[[File:Short Answer Section.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |'''{{What If|14|Short Answer Section}}'''&lt;br /&gt;
|''&amp;quot;How long would the Sun last if a giant water hose were focused upon it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Austin Dickey&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Sun would actually burn brighter due to water being mostly hydrogen (main fusion fuel of stars) and eventually become a black hole with all the mass of the water.&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot;{{blog|14|2012|10|02}}&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if you shined a flashlight (or a laser) into a sphere made of one-way mirror glass?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Chase Montgomery&amp;lt;/div&amp;gt;&lt;br /&gt;
|One-way glass does not exist. The light shines through just like normal glass. The glass used for &amp;quot;one-way mirror glass&amp;quot; is semi-transparent and semi-reflective so that if it's used as a window between a brightly lit room and a dimly lit room, the reflection or transmission from the bright room will overwhelm the transmission or reflection from the dim room so that people looking at the glass from either side will see the bright room.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If Michael Phelps could hold his breath indefinitely, how long would it take for him to reach the lowest point in the ocean and back if he swam straight down and then straight back up?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jimmy Morey&amp;lt;/div&amp;gt;&lt;br /&gt;
|Michael Phelps would die somewhere between 100 and 400 meters of depth. If he were immune to pressure, then it would take 3 hours to swim to the bottom of the Marianas Trench and back.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;In the first Superman movie, Superman flies around Earth so fast that it begins turning in the opposite direction. This somehow turns back time [... ] How much energy would someone flying around the Earth have to exert in order to reverse the Earth's rotation?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Aidan Blake&amp;lt;/div&amp;gt;&lt;br /&gt;
|Superman wasn't pushing the Earth. He was flying {{w|Superluminal motion|superluminally}} and was thus travelling back through time.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How fast would you have to go in your car to run a red light claiming that it appeared green to you due to the Doppler Effect?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Yitzi Turniansky&amp;lt;/div&amp;gt;&lt;br /&gt;
|The {{w|Doppler Effect}} is when waves (such as light or sound) change based on movement or position. You would need to go about one sixth of the {{w|speed of light}}.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you opened a portal between Boston (sea level) and Mexico City (elev. 8000+ feet)?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jake G.&amp;lt;/div&amp;gt;&lt;br /&gt;
|There would be winds of 440 mph (708 km/h) sucking Boston into Mexico City.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;When my wife and I started dating she invited me over for dinner at one time. Her kitchen had something called Bauhaus chairs, which are full of holes, approx 5-6 millimeters in diameter in both back and seat. During this lovely dinner I was forced to liberate a small portion of wind and was relieved that I managed to do so very discretely. Only to find that the chair I sat on converted the successful silence into a perfect, and loud, flute note. We were both (luckily) amazed and surprised and I have often wondered what the odds are for something like that happening. We kept the chairs for five years but despite laborious attempts it couldn't be reproduced.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—R. D.&amp;lt;/div&amp;gt;&lt;br /&gt;
|This... isn’t actually a question, but thank you for sharing!&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Mariana Trench Explosion.png|100px]]&lt;br /&gt;
|'''{{What If|15|Mariana Trench Explosion}}'''&lt;br /&gt;
|''&amp;quot;What if you exploded a nuclear bomb (say, the Tsar Bomba) at the bottom of the Marianas Trench?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Evin Sellin&amp;lt;/div&amp;gt;&lt;br /&gt;
|Surprisingly, not much! Large waves already disappear quickly when created by surface explosions, and moving the detonation underwater only lessens the effect. If you exploded a Tsar Bomba at the bottom of the Mariana Trench, the resulting eruption would create massive bubbles before turning into warm water and debris. &lt;br /&gt;
|{{blog|15|2012|10|09}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;6&amp;quot; |[[File:Today's topic- Lightning.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;6&amp;quot; |'''{{What If|16|Today's topic: Lightning}}'''&lt;br /&gt;
|''&amp;quot;How dangerous is it to be in a pool during a thunderstorm?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jay Gengelbach&amp;lt;/div&amp;gt;&lt;br /&gt;
|Pretty dangerous, as if the pool was hit, 20,000 amps of electricity from the lightning bolt would spread across the surface and shock you. Randall recommends that one should stay at least 12 meters away from a pool during a thunderstorm.&lt;br /&gt;
| rowspan=&amp;quot;6&amp;quot;{{blog|16|2012|10|16}}&lt;br /&gt;
| rowspan=&amp;quot;6&amp;quot;{{book|1|19|Lightning}}&lt;br /&gt;
| rowspan=&amp;quot;6&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you were taking a shower or standing under a waterfall when you were struck by lightning?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Same3Chords&amp;lt;/div&amp;gt;&lt;br /&gt;
|The droplets of water wouldn’t be dangerous, but a tub of water or any puddle you stand in ''will'' be dangerous.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you were in a boat, plane or a submarine that got hit by lightning?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Soobnauce&amp;lt;/div&amp;gt;&lt;br /&gt;
|A boat would be as safe as a car if it had a cabin and lightning protection, while a submarine would be completely safe. The plane was not mentioned.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if you were changing the light at the top of a radio tower and lightning struck? Or what if you were doing a backflip? Or standing in a graphite field? Or looking straight up at the bolt?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Danny Wedul&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would get shocked normally if you were on a radio tower, doing a backflip, or looking straight up (which would also damage your eyes). These all don’t matter much. Randall doesn’t know what a graphite field is and chose not to answer that part of the question.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if lightning struck a bullet in midair?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Timothy Campbell&amp;lt;/div&amp;gt;&lt;br /&gt;
|The bullet might be heated a little bit, but it’s travelling too fast to have any impact.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if you were flashing your BIOS during a thunderstorm and you got hit by lightning?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—NJSG&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would bring you to “Microsoft BOB®”, “Gateway 2000 Edition”.&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Green Cows.png|100px]]&lt;br /&gt;
|'''{{What If|17|Green Cows}}'''&lt;br /&gt;
|''&amp;quot;If cows could photosynthesize, how much less food would they need?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|They would need 4% less food. There simply isn't enough area on the cow for photosynthesis to provide all its energy requirements.&lt;br /&gt;
|{{blog|17|2012|10|23}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:BB Gun.png|100px]]&lt;br /&gt;
|'''{{What If|18|BB Gun}}'''&lt;br /&gt;
|''&amp;quot;In Armageddon, a NASA guy comments that a plan to shoot a laser at the asteroid is like “shooting a b.b. gun at a freight train.” What would it take to stop an out-of-control freight train using only b.b. guns?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Charles James O'Keefe&amp;lt;/div&amp;gt;&lt;br /&gt;
|This would normally be impossible. However, with enough people shooting the train, it can happen. This would require about 100,000 people shooting, distributed over 2 kilometers of track, each firing a few dozen rounds once the train comes close enough. This would, eventually, be enough to bring the train to a stop.&lt;br /&gt;
|{{blog|18|2012|10|30}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tie Vote.png|100px]]&lt;br /&gt;
|'''{{What If|19|Tie Vote}}'''&lt;br /&gt;
|''&amp;quot;What if there's LITERALLY a tie?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nate Silver (&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://twitter.com/fivethirtyeight/status/154434288287363072 '''Twitter, January 4th, 2012''']&amp;lt;/span&amp;gt;)&amp;lt;/div&amp;gt;&lt;br /&gt;
|In the case of each candidate getting the exact same amount of votes on Election Day, most states would randomly pick one, whether it be through tossing a coin, drawing a name or straws. The chances of this happening in 9 battleground states would be about equal to the elector drawing a name from a hat, then being smashed by a bale of cocaine by drug smugglers and obliterated by a meteorite impact while being swept away in a tornado.&lt;br /&gt;
|{{blog|19|2012|11|06}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Diamond.png|100px]]&lt;br /&gt;
|'''{{What If|20|Diamond}}'''&lt;br /&gt;
|''&amp;quot;If a meteor made out of diamond and 100 feet in diameter was traveling at the speed of light and hit the e&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;E&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;arth, what would happen to it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Aidan Smith, Age 8, via his father Jeff&amp;lt;/div&amp;gt;&lt;br /&gt;
|Nothing made of matter can travel at the speed of light, but at the closest speed observed (99.99999999999999999999951% of the speed of light, the speed of the {{w|Oh-My-God particle}}), the Earth would explode with enough force to impact the entire inner Solar System.&lt;br /&gt;
|{{blog|20|2012|11|13}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Machine Gun Jetpack.png|100px]]&lt;br /&gt;
|'''{{What If|21|Machine Gun Jetpack}}'''&lt;br /&gt;
|''&amp;quot;Is it possible to build a jetpack using downward firing machine guns?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rob B&amp;lt;/div&amp;gt;&lt;br /&gt;
|You'd need a Russian 30 mm rotary cannon to do it optimally, and the excessive force would definitely hurt you. If you braced the rider, created an aerodynamic craft strong enough to survive the acceleration, and cooled the craft, you'd be able to jump mountains.&lt;br /&gt;
|{{blog|21|2012|11|20}}&lt;br /&gt;
|{{book|1|14|Machine-Gun Jetpack}}&lt;br /&gt;
|{{book|36|2026|2|10|IdlQsjq5vKo|What if you made a jetpack using rifles?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cost of Pennies.png|100px]]&lt;br /&gt;
|'''{{What If|22|Cost of Pennies}}'''&lt;br /&gt;
|''&amp;quot;If you carry a penny in your coin tray, how long would it take for that penny to cost you more than a cent in extra gas?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Leto Atreides&amp;lt;/div&amp;gt;&lt;br /&gt;
|140,000 miles if gas was the only cost involved. The exercise of picking up the penny can prolong your lifespan, but you've wasted valuable seconds reading this article.&lt;br /&gt;
|{{blog|22|2012|11|27}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |[[File:Short Answer Section II.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |'''{{What If|23|Short Answer Section II}}'''&lt;br /&gt;
|''&amp;quot;If my printer could literally print out money, would it have that big an effect on the world?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Derek O’Brien&amp;lt;/div&amp;gt;&lt;br /&gt;
| Using the printer, you could make about 200 million dollars per year, depending on the type of printer. This would actually be the perfect sweet spot for you, as it would be enough to make you very, very rich, but not enough to have any effect on the world. The United States [https://www.bep.gov/currency/production-figures/annual-production-reports prints approximately $160 billion per year], so $200 million a year would be nothing more than a drop in the bucket.&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot;{{blog|23|2012|12|04}}&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot;{{book|1|18|Short-Answer Section}}&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you exploded a nuclear bomb in the eye of a hurricane? Would the storm cell be immediately vaporized?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rupert Bainbridge (and hundreds of others)&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. Dr. Christopher Landsea of the National Oceanic and Atmospheric Administration has [https://www.aoml.noaa.gov/hrd-faq/#hurricane-mitigation:~:text=Stop%20a%20Hurricane%3F-,Nuclear%20Weapons,-Adding%20Hygroscopic%20Particles published a response] explaining why it wouldn't work.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If everyone put little turbine generators on the downspouts of their houses and businesses, how much power would we generate? Would we ever generate enough power to offset the cost of the generators?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Damien&amp;lt;/div&amp;gt;&lt;br /&gt;
|If it's very rainy, it would generate 800 watts of power, which isn't enough to offset the cost of the generators.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Using only pronounceable letter combinations, how long would names have to be to give each star in the universe a unique one word name?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Seamus Johnson&amp;lt;/div&amp;gt;&lt;br /&gt;
|About 24 characters.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I bike to class sometimes. It's annoying biking in the wintertime, because it's so cold. How fast would I have to bike for my skin to warm up the way a spacecraft heats up during reentry?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—David Nai&amp;lt;/div&amp;gt;&lt;br /&gt;
|You'd have to bike at about 200 m/s, which would make your commute very fast indeed. However, the amount of energy required to bike at that speed would cause you to die from overexertion. This might work if you didn't exert any energy, however.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How much physical space does the internet take up?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Max L&amp;lt;/div&amp;gt;&lt;br /&gt;
|Using humanity's total produced storage space from the last few years as an upper bound, and assuming 3.5&amp;quot; drives, the Internet is less than the size of an oil tank.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if you strapped C4 to a boomerang? Could this be an effective weapon, or would it be as stupid as it sounds?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Chad Macziewski&amp;lt;/div&amp;gt;&lt;br /&gt;
|Strapping C4 to a boomerang does not sound like an effective weapon. The weapon as depicted in the image would have terrible aerodynamics, and would not fly an easily predictable trajectory. C4 is, by itself, an inert substance which would need some form of detonator to actually explode, in which case it would depend upon how you set it up (e.g. timer or inertial trigger) and at what point in its flight this would activate. ''If'' this happened as it returns (or flies past, if thrown reasonably correctly but being unable or unwilling to catch it), it might kill or injure the thrower and/or those nearby. There were many unstated details as to how the proposal would be implemented, as Randall lampshades in his open answer.&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Model Rockets.png|100px]]&lt;br /&gt;
|'''{{What If|24|Model Rockets}}'''&lt;br /&gt;
|''&amp;quot;How many model rocket engines would it take to launch a real rocket into space?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Greg Schock, PA&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would take about 65,000, but they’d have to be layered in a cone shape with about 30 stages so the vehicle has thrust for long enough. It could carry 60 kg, much of that spent on all the parts of the rocket that aren't the engine.  And this contraption would not attain orbital velocity, but rapidly fall back to Earth after briefly leaving the atmosphere.  Accelerating to orbital velocity is a whole other class of problem and cannot be achieved using model rocket engines in any practical way.&lt;br /&gt;
|{{blog|24|2012|12|11}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Three Wise Men.png|100px]]&lt;br /&gt;
|'''{{What If|25|Three Wise Men}}'''&lt;br /&gt;
|''&amp;quot;The story of the three wise men got me wondering: What if you did walk towards a star at a fixed speed? What path would you trace on the Earth? Does it converge to a fixed cycle?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—N. Murdoch&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, but the paths they would take would make some really cool patterns due to various factors, such as the Earth's rotation and its position changing in its orbit around the Sun.&lt;br /&gt;
|{{blog|25|2012|12|18}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|22|2025|03|04|YL2VNtus4xk|What if the wise men kept walking after Jesus’s birth?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Leap Seconds.png|100px]]&lt;br /&gt;
|'''{{What If|26|Leap Seconds}}'''&lt;br /&gt;
|''&amp;quot;Every now and then we have to insert a leap second because the Earth’s rotation is slowing down. Could we speed up Earth’s rotation, so that we do not need Leap Seconds?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anton (Berlin, Germany)&amp;lt;/div&amp;gt;&lt;br /&gt;
|The only real way to do this is by hitting Earth with asteroids; all other ideas would be too difficult or wouldn’t work. With 50,000 planets B-612 hitting the Earth each second and a few assumptions, we could stop worrying about leap seconds (mostly because it would deliver the energy of about one dinosaur-killer asteroid every couple days, wiping out life on Earth quite quickly)&lt;br /&gt;
|{{blog|26|2012|12|31|6d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Death Rates.png|100px]]&lt;br /&gt;
|'''{{What If|27|Death Rates}}'''&lt;br /&gt;
|''&amp;quot;If one randomly chosen extra person were to die each second somewhere on Earth, what impact would it have on the world population?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Guy Petzall&amp;lt;/div&amp;gt;&lt;br /&gt;
|The world population would continue to grow, though 40% more slowly. Pilots, drivers, and surgeons would die en route and mid-operation, but these would be comparable to usual accident rates and handled fairly easily.&lt;br /&gt;
|{{blog|27|2013|01|08|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Steak Drop.png|100px]]&lt;br /&gt;
|'''{{What If|28|Steak Drop}}'''&lt;br /&gt;
|''&amp;quot;From what height would you need to drop a steak for it to be cooked when it hit the ground?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alex Lahey&amp;lt;/div&amp;gt;&lt;br /&gt;
|From the very edge of the atmosphere, but even in that case it might not be fully cooked, as the steak will have to pass through parts of the atmosphere that are freezing cold and the parts of the fall where heat is being applied are more likely to char and disintegrate the steak than cook it.&lt;br /&gt;
|{{blog|28|2013|01|15}}&lt;br /&gt;
|{{book|1|23}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Spent Fuel Pool.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|29|Spent Fuel Pool}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;What if I took a swim in a typical spent nuclear fuel pool? Would I need to dive to actually experience a fatal amount of radiation? How long could I stay safely at the surface?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jonathan Bastien-Filiatrault&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |As long as you don't touch strange things and you don't swim too close to the fuel rods, it would be just like a regular pool. Except for the fact you would never make it to the pool, as the guards would notice and shoot you to death.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|29|2013|01|22}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|3}}&lt;br /&gt;
|{{book|8|2024|04|02|EFRUL7vKdU8|What if you swam in a nuclear storage pool?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|16|short-video=yes|2025|11|18|vBfR2Zb0dkc|Could you swim in a spent nuclear fuel pool?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Interplanetary Cessna.png|100px]]&lt;br /&gt;
|'''{{What If|30|Interplanetary Cessna}}'''&lt;br /&gt;
|''&amp;quot;What would happen if you tried to fly a normal Earth airplane above different Solar System bodies?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Glen Chiacchieri&amp;lt;/div&amp;gt;&lt;br /&gt;
|Most of the Solar System bodies lack atmospheres and thus cannot be flown over. An airplane close enough to the sun to try to fly in its atmosphere would be instantaneously vaporized. It would be difficult to fly on Mars because the atmosphere is thin enough that a plane like the hypothetical Cessna must travel at Mach 1 to stay aloft, which would make the momentum too high for such a plane to steer properly, so you would crash. Jupiter's gravity is too strong, so the plane would sink into the atmosphere, tumbling in the high winds, until the increasing pressure crushed it. The remaining gas giants have weaker gravity, but still have nowhere to land, so you would eventually freeze, tumble and be crushed. Titan and Venus are the best bets, but Titan is cold, so the pilot would freeze to death, and Venus is full of sulfuric acid, which would cause the plane to burn up.&lt;br /&gt;
|{{blog|30|2013|01|29}}&lt;br /&gt;
|{{book|1|30}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:FedEx Bandwidth.png|100px]]&lt;br /&gt;
|'''{{What If|31|FedEx Bandwidth}}'''&lt;br /&gt;
|''&amp;quot;When - if ever - will the bandwidth of the Internet surpass that of FedEx?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Johan Öbrink&amp;lt;/div&amp;gt;&lt;br /&gt;
|Probably never, unless the Internet's transfer rate grows faster than storage rates, the Internet won't surpass an army of FedEx trucks. However, the ping times would be ''absurd''.&lt;br /&gt;
|{{blog|31|2013|02|05}}&lt;br /&gt;
|{{book|1|44}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |[[File:Hubble.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''{{What If|32|Hubble}}'''&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |''&amp;quot;If the Hubble telescope were aimed at the Earth, how detailed would the images be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kyle Rankin&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |Very blurry because Hubble isn't able to rotate fast enough to track the surface of the Earth. Hubble is the wrong tool for the job, you're thinking of a spy satellite.&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{blog|32|2013|02|12}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
|{{book|1|2023|11|29|2LSyizrk8-0|What if we aimed the Hubble Telescope at Earth?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|10|short-video=yes|2025|09|16|TgA0lXEW7dw|Could the Hubble take a photo of you?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|11|short-video=yes|2025|09|23|i6e4NnFnQi0|How detailed would the Hubbles images be if it looked at Earth?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Ships.png|100px]]&lt;br /&gt;
|'''{{What If|33|Ships}}'''&lt;br /&gt;
|''&amp;quot;How much would the sea level fall if every ship were removed all at once from the Earth's waters?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael Toje&amp;lt;/div&amp;gt;&lt;br /&gt;
|The sea level would fall by about 6 microns, slightly more than the diameter of a strand of spider silk. However, since the oceans are currently rising at about 3.3 millimeters per year due to global warming, the water would be back up to its original average level in 16 hours.&lt;br /&gt;
|{{blog|33|2013|02|19}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:what if? Twitter.png|100px]]&lt;br /&gt;
|'''{{What If|34|Twitter}}'''&lt;br /&gt;
|''&amp;quot;How many unique English tweets are possible? How long would it take for the population of the world to read them all out loud?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Eric H., Hopatcong, NJ&amp;lt;/div&amp;gt;&lt;br /&gt;
|Since there are 2 * 10&amp;lt;sup&amp;gt;46&amp;lt;/sup&amp;gt; meaningful English tweets based on the original character limit of 140 and written English having an average information content of 1.1 bits per character, reading them all would take 10,000 &amp;quot;eternal years&amp;quot;, with an eternal day being the length of time needed to wear down a 100-mile mountain if a bird scraped 1 grain every thousand years.&lt;br /&gt;
|{{blog|34|2013|02|26}}&lt;br /&gt;
|{{book|1|50}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hair Dryer.png|100px]]&lt;br /&gt;
|'''{{What If|35|Hair Dryer}}'''&lt;br /&gt;
|''&amp;quot;What would happen if a hair dryer with continuous power was turned on and put in an airtight 1x1x1 meter box?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nathan Terrell&amp;lt;/div&amp;gt;&lt;br /&gt;
|The box would heat up to about 60°C. This is hot enough to burn out a normal hair dryer. For an indestructible hair dryer, incrementing the power would heat it further until the containing box melted, which would happen by the 187 MW mark for most materials. If both the hair dryer and the box were indestructible, incrementing the power would heat it further until the ground starts melting, and around the 20 GW mark, it would eventually create updrafts and bounce around everywhere. Turning it off and on again (to 11 PW) would launch it out of the sky in glowing fury.&lt;br /&gt;
|{{blog|35|2013|03|05}}&lt;br /&gt;
|{{book|1|11}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cornstarch.png|100px]]&lt;br /&gt;
|'''{{What If|36|Cornstarch}}'''&lt;br /&gt;
|''&amp;quot;How much cornstarch can I rinse down the drain before unpleasant things start to happen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anna R., Fort Wayne, IN&amp;lt;/div&amp;gt;&lt;br /&gt;
|It depends what you consider unpleasant. Your sink will clog and your house will flood with oobleck, but if you really really like cornstarch then nothing unpleasant will happen.&lt;br /&gt;
|{{blog|36|2013|03|12}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Supersonic Stereo.png|100px]]&lt;br /&gt;
|'''{{What If|37|Supersonic Stereo}}'''&lt;br /&gt;
|''&amp;quot;What if you somehow managed to make a stereo travel at twice the speed of sound, would it sound backwards to someone who was just casually sitting somewhere as it flies by?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tim Currie&amp;lt;/div&amp;gt;&lt;br /&gt;
|Assuming the stereo is indestructible, yes. Although with a ballistic launch, you’d only get it supersonic for less than a second, it would spend just a few seconds within hearing range, and the backwards music you'd hear would be mixed with music sounding at half speed as the stereo departs.&lt;br /&gt;
|{{blog|37|2013|03|19}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:what if? Voyager.png|100px]]&lt;br /&gt;
|'''{{What If|38|Voyager}}'''&lt;br /&gt;
|''&amp;quot;With today's technology, would it be possible to launch an unmanned mission to retrieve Voyager I?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Elliot Bennett&amp;lt;/div&amp;gt;&lt;br /&gt;
|You could ''reach'' Voyager I with some well-timed gravity assists from Jupiter and Saturn, but getting back would require an ''absurd'' amount of fuel. You could use ion fields to require less fuel, but they also produce less thrust.&lt;br /&gt;
|{{blog|38|2013|03|26}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hockey Puck.png|100px]]&lt;br /&gt;
|'''{{What If|39|Hockey Puck}}'''&lt;br /&gt;
|''&amp;quot;How hard would a puck have to be shot to be able to knock the goalie himself backwards into the net?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tom&amp;lt;/div&amp;gt;&lt;br /&gt;
|This can't really happen, due to the size and weight difference between the goalie and a hockey puck. You'd need to fire an object at Mach 8 to knock the goalie back, but firing a puck at that speed would char the puck while air resistance would slow it down. If a hockey puck actually reached the goalie at such a high speed, it would have a similar effect to hitting a cake with a tomato as hard as you can.&lt;br /&gt;
|{{blog|39|2013|04|02}}&lt;br /&gt;
|{{book|1|24}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Pressure Cooker.png|100px]]&lt;br /&gt;
|'''{{What If|40|Pressure Cooker}}'''&lt;br /&gt;
|''&amp;quot;Am I right to be afraid of pressure cookers? What's the worst thing that can happen if you misuse a pressure cooker in an ordinary kitchen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Delphine Lourtau&amp;lt;/div&amp;gt;&lt;br /&gt;
|Ordinarily, the worst that can happen is the lid blowing off and superheated liquid spraying everywhere, but you can use one to make {{w|Dioxygen difluoride}}, which is much worse.&lt;br /&gt;
|{{blog|40|2013|04|9}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Go West.png|100px]]&lt;br /&gt;
|'''{{What If|41|Go West}}'''&lt;br /&gt;
|''&amp;quot;If everybody in the US drove west, could we temporarily halt continental drift?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Derek&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. While technically the car fleet could reverse the momentum of the North American plate, the continental drift is being powered by the forces in the Earth's mantle, and these forces outmatch the car fleet by millions of times.&lt;br /&gt;
|{{blog|41|2013|04|16}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Longest Sunset.png|100px]]&lt;br /&gt;
|'''{{What If|42|Longest Sunset}}'''&lt;br /&gt;
|''&amp;quot;What is the longest possible sunset you can experience while driving, assuming we are obeying the speed limit and driving on paved roads?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael Berg&amp;lt;/div&amp;gt;&lt;br /&gt;
|The longest way you can experience a sunset while driving is on certain roads in Norway and Finland around the winter solstice for 95 minutes, as this is where the best method to outpace the Sun works (outpacing {{w|Terminator (solar)|the terminator}}). The answer references comic [[162: Angular Momentum]].&lt;br /&gt;
|{{blog|42|201304|23}}&lt;br /&gt;
|{{book|1|52}}&lt;br /&gt;
|{{book|32|2025|10|21|U8F7UNK9jco|Can you drive west to lengthen the sunset?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Train Loop.png|100px]]&lt;br /&gt;
|'''{{What If|43|Train Loop}}'''&lt;br /&gt;
|''&amp;quot;Could a high-speed train run through a vertical loop, like a rollercoaster, with the passengers staying comfortable?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Gero Walter&amp;lt;/div&amp;gt;&lt;br /&gt;
|Even if we change the requirements to just the passengers surviving, this isn't plausible. A train can't complete a full loop without the loop being too small, making the train move too fast and making every passenger die from the g-forces involved.&lt;br /&gt;
|{{blog|43|2013|04|30}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:High Throw.png|100px]]&lt;br /&gt;
|'''{{What If|44|High Throw}}'''&lt;br /&gt;
|''&amp;quot;How high can a human throw something?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Irish Dave on the Isle of Man&amp;lt;/div&amp;gt;&lt;br /&gt;
|Based on estimations and aerodynamics calculations, Aroldis Chapman (holder of the record for fastest pitch) could probably throw up to 16 giraffes (80 m) high if he were using a golf ball. Unless you count letting go of balloons, of course.&lt;br /&gt;
|{{blog|44|2013|05|07}}&lt;br /&gt;
|{{book|1|38}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:ISS Music Video.png|100px]]&lt;br /&gt;
|'''{{What If|45|ISS Music Video}}'''&lt;br /&gt;
|''&amp;quot;Is [https://www.youtube.com/watch?v=KaOC9danxNo '''this'''] the most expensive music video ever?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Various Yout&amp;lt;!-- don't change it, that's how it's written on the site --&amp;gt;ube commenters&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. If the construction cost of the setpiece is how this is measured, then it would be U2's &amp;quot;Last Night on Earth&amp;quot; on a section of Interstate Highway. If not, then it doesn't even come close to Thriller.&lt;br /&gt;
|{{blog|45|2013|05|14}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Bowling Ball.png|100px]]&lt;br /&gt;
|'''{{What If|46|Bowling Ball}}'''&lt;br /&gt;
|''&amp;quot;I've been told that if the Earth were shrunk down to the size of a bowling ball, it would be smoother than said bowling ball. My question is, what would a bowling ball look like if it were blown up to the size of the Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Seth C.&amp;lt;/div&amp;gt;&lt;br /&gt;
|A bowling ball the size of the Earth would be much less dense, and have much less gravity. The surface bumps and ridges would be much smaller than those on Earth with a maximally rough ball having peaks of roughly 200 m. The finger holes, on the other hand, would be huge, about a thousand km across and several thousand km deep. Due to this, the finger holes would collapse. causing eruptions of hydrocarbons and scars similar to those on the Moon.&lt;br /&gt;
|{{blog|46|2013|05|21}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Alien Astronomers.png|100px]]&lt;br /&gt;
|'''{{What If|47|Alien Astronomers}}'''&lt;br /&gt;
|''&amp;quot;Let's assume there's life on the the nearest habitable exoplanet and that they have technology comparable to ours. If they looked at our star right now, what would they see?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Chuck H.&amp;lt;/div&amp;gt;&lt;br /&gt;
|They wouldn't be able to see us very well. Radio waves fade quickly in space and we've stopped sending out as many of them. If they happened to pick up, they would only get a message similar to the [https://en.wikipedia.org/wiki/Wow!_signal Wow! Signal]. The best message they could see is visible light, as the water and weather on Earth's surface would be a telltale marker of some form of life.&lt;br /&gt;
|{{blog|47|2013|05|28}}&lt;br /&gt;
|{{book|1|28}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Sunset on the British Empire.png|100px]]&lt;br /&gt;
|'''{{What If|48|Sunset on the British Empire}}'''&lt;br /&gt;
|''&amp;quot;When (if ever) did the Sun finally set on the British Empire?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kurt Amundson&amp;lt;/div&amp;gt;&lt;br /&gt;
|If the British Empire kept the borders it had when the question was written, it would continue to experience eternal sunshine for many thousands of years until a total eclipse hits the Pitcairn Islands at the right time. &lt;br /&gt;
&lt;br /&gt;
However, in 2025, after the publication of this article, [https://www.bbc.co.uk/news/live/clyvv04wk8zt the UK signed a treaty to give the British Indian Ocean Territory to Mauritius]. Once the treaty is ratified, and the territory is officially handed over, the Sun can finally set on the British Empire.&lt;br /&gt;
|{{blog|48|2013|06|04}}&lt;br /&gt;
|{{book|1|60}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Sunless Earth.png|100px]]&lt;br /&gt;
|'''{{What If|49|Sunless Earth}}'''&lt;br /&gt;
|''&amp;quot;What would happen to the Earth if the Sun suddenly switched off?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Many, many readers&amp;lt;/div&amp;gt;&lt;br /&gt;
|We would see a variety of benefits across our lives such as the elimination of time zones, more reliable satellites, easier astronomy, and safer wild parsnip, but the downside is we would all freeze and die.&lt;br /&gt;
|{{blog|49|2013|06|11}}&lt;br /&gt;
|{{book|1|57}}&lt;br /&gt;
|{{book|24|2025|04|15|X7sbn9LMZOg| What if the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un suddenly went out?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Extreme Boating.png|100px]]&lt;br /&gt;
|'''{{What If|50|Extreme Boating}}'''&lt;br /&gt;
|''&amp;quot;What would it be like to navigate a rowboat through a lake of mercury? What about bromine? Liquid gallium? Liquid tungsten? Liquid nitrogen? Liquid helium?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nicholas Aron&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would be difficult to row the boat on mercury because it's very dense. Bromine smells terrible and is highly toxic. Gallium would dissolve an aluminium boat. Liquid tungsten would incinerate you instantly. Liquid nitrogen would kill you either by suffocation or hypothermia. Liquid helium's superfluid properties would sink your boat, but at least you'd hear the “third sound” as you die.&lt;br /&gt;
|{{blog|50|2013|06|18}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Free Fall.png|100px]]&lt;br /&gt;
|'''{{What If|51|Free Fall}}'''&lt;br /&gt;
|''&amp;quot;What place on Earth would allow you to freefall the longest by jumping off it? What about using a squirrel suit?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dhash Shrivathsa&amp;lt;/div&amp;gt;&lt;br /&gt;
|It takes 26 seconds to fall from the top of {{w|Mount Thor}} into a pit of cotton candy at the bottom of the cliff. The record for the longest wingsuit glide is 3 minutes and 20 seconds, from the {{w|Eiger}} – enough time for Joey Chestnut and Takeru Kobayashi to eat 45 hot dogs.&lt;br /&gt;
|{{blog|51|2013|06|25}}&lt;br /&gt;
|{{book|1|45}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Bouncy Balls.png|100px]]&lt;br /&gt;
|'''{{What If|52|Bouncy Balls}}'''&lt;br /&gt;
|''&amp;quot;What if one were to drop 3,000 bouncy balls from a seven story parking structure onto a person walking on the sidewalk below? Should the person survive, what would be the number of bouncy balls needed to kill them? What injuries would occur and what would the associated crimes be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ginger Bread&amp;lt;/div&amp;gt;&lt;br /&gt;
|If you dropped 3000 balls as stated, the balls would spread out like a cloud, and most of them would miss, with the remainder striking the target separately from one another. Around 3,000,000 balls would be enough to either crush a person or bury them too deep for them to get out. Death would occur and you would be charged with manslaughter or murder.&lt;br /&gt;
|{{blog|52|2013|07|02}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Drain the Oceans.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|53|Drain the Oceans}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;How quickly would the ocean's drain if a circular portal 10 meters in radius leading into space was created at the bottom of Challenger Deep, the deepest spot in the ocean? How would the Earth change as the water is being drained?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ted M.&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |Hundreds of thousands of years, so you'll need a bigger portal. As their basins are cut off, many shallow seas and a few deep trenches remain, leaving much of Earth still covered with water. Massive, unpredictable environmental changes would probably wipe out mankind. If they didn't, the Dutch would take over the world, no longer preoccupied with preventing their lands from flooding as they are now.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|53|2013|07|09}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|48}}&lt;br /&gt;
|{{book|12|2024|06|18|Jpy55EgMQgY|What if you drained the oceans?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|17|short-video=yes|2025|12|16|aMshLs0YCTQ|What if you drained the oceans?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Drain the Oceans Part II.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|54|Drain the Oceans: Part II}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;Supposing you did '''{{what if|53|Drain the Oceans}}''', and dumped the water on top of the Curiosity rover, how would Mars change as the water accumulated?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Iain&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |The water would fill the {{w|Valles Marineris}}, eventually leaving only {{w|Olympus Mons}} and some other small islands. The sea would ultimately freeze over, become covered in dust, and migrate to permafrost at the poles. In the meantime, the Netherlands would colonize Mars through the portal.  The video additionally mentions that the greenhouse gas effects caused by all the new water might keep Mars's oceans liquid.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|54|2013|07|16}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|49}}&lt;br /&gt;
|{{book|14|2024|08|13|FkUNHhVbQ1Q|What if we teleported the oceans to Mars?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|18|short-video=yes|2025|12|23|2p305nzcVQE|What if we teleported the oceans to Mars?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Random Sneeze Call.png|100px]]&lt;br /&gt;
|'''{{What If|55|Random Sneeze Call}}'''&lt;br /&gt;
|''&amp;quot;If you call a random phone number and say &amp;quot;God bless you&amp;quot;, what are the chances that the person who answers just sneezed? On average, not just in spring or fall.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mimi&amp;lt;/div&amp;gt;&lt;br /&gt;
|The chances they just sneezed are 1 in 40000. There's also a 1 in a billion chance that the person you called just murdered someone, a 1 in 10 trillion chance they've just been killed by lightning, and – if five people spend a day trying this by calling random people – another 1 in 10 trillion chance that you and the other person called each other simultaneously. &lt;br /&gt;
|{{blog|55|2013|07|23}}&lt;br /&gt;
|{{book|1|53}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Restraining an Airplane.png|100px]]&lt;br /&gt;
|'''{{What If|56|Restraining an Airplane}}'''&lt;br /&gt;
|''&amp;quot;If you wanted to anchor an airplane into the ground so it wouldn't be able to take off, what would the rope have to be made out of?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Connor Childerhose&amp;lt;/div&amp;gt;&lt;br /&gt;
|A steel cable an inch thick, the lines of an army of thousands of fishermen, or the hair of 20 people. Hair has the highest tensile strength of any material in your body.&lt;br /&gt;
|{{blog|56|2013|07|30}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Dropping a Mountain.png|100px]]&lt;br /&gt;
|'''{{What If|57|Dropping a Mountain}}'''&lt;br /&gt;
|''&amp;quot;What if a huge mountain—Denali, say—had the bottom inch of its base disappear? What would happen from the impact of the mountain falling 1 inch? What about 1 foot? What if the mountain's base were raised to the present height of the summit, and then the whole thing were allowed to drop to the e&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;E&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;arth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—John-Clark Levin&amp;lt;/div&amp;gt;&lt;br /&gt;
|An inch or a foot wouldn't do much, it would only feel like a 3.5 magnitude earthquake. Dropped from its own height, Denali would cause a magnitude 7 earthquake and crush coal to diamonds. Dropped from the edge of Earth's gravity well, that's just a large asteroid (roughly 10% of the energy of the Chicxulub impact that caused the {{w|Cretaceous-Paleogene extinction event}}) and it would cause firestorms and an impact winter. If you removed it from Earth's gravity well but still tried to &amp;quot;drop&amp;quot; it, it might crash into Mars instead.&lt;br /&gt;
|{{blog|57|2013|08|06}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |[[File:Orbital Speed.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''{{What If|58|Orbital Speed}}'''&lt;br /&gt;
|''&amp;quot;What if a spacecraft slowed down on re-entry to just a few miles per hour using rocket boosters like the Mars-sky-crane? Would it negate the need for a heat shield?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brian&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |No, because you need to go 8 km/s to stay in orbit, and it would take impossible amounts of fuel to slow down. The Curiosity rover used a heat shield for most of its deceleration and then used the sky crane for finer maneuvering relatively close to the ground.&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot;{{blog|58|2013|08|12|1d early}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot;{{book|1|43}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Is it possible for a spacecraft to control its reentry in such a way that it avoids the atmospheric compression and thus would not require the expensive (and relatively fragile) heat shield on the outside?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Christopher Mallow&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Could a (small) rocket (with payload) be lifted to a high point in the atmosphere where it would only need a small rocket to get to escape velocity?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kenny Van de Maele&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Updating a Printed Wikipedia.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|59|Updating a Printed Wikipedia}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;If you had a printed version of the whole of (say, the English) Wikipedia, how many printers would you need in order to keep up with the changes made to the live version?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Susanne Könings&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |You'd need six printers, but if using an ink printer, costs would rack up to $500,000 a month, dwarfing paper and maintenance costs. You'd need to file away past versions in case they were reverted (restored), which would be a nightmare.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|59|2013|08|20|1d late}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|58}}&lt;br /&gt;
|{{book|13|2024|7|9|RgBYohJ7mIk|What if you tried to print Wikipedia?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|19|short-video=yes|2026|01|27|WQTNLuhfkwk|What if you printed all of Wikipedia?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Signs of Life.png|100px]]&lt;br /&gt;
|'''{{What If|60|Signs of Life}}'''&lt;br /&gt;
|''&amp;quot;If you could teleport to a random place of the surface of the Earth, what are the odds that you'll see signs of intelligent life?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Borislav Stanimirov&amp;lt;/div&amp;gt;&lt;br /&gt;
|70% of the time you would end up in the ocean. Restricting yourself to land, you'd see farmlands or dirt roads about 20-25% of the time (6-7% overall). But if it’s night, you can see satellites just by looking up.&lt;br /&gt;
|{{blog|60|2013|08|27}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Speed Bump.png|100px]]&lt;br /&gt;
|'''{{What If|61|Speed Bump}}'''&lt;br /&gt;
|''&amp;quot;How fast can you hit a speed bump while driving and live?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Myrlin Barber&amp;lt;/div&amp;gt;&lt;br /&gt;
|At highway speeds, you could wreck your tires and suspension. Around 150-300 mph, the aerodynamics of a typical sedan will cause it to flip and crash before even reaching the speed bump. At 90% the speed of light, you could face a billion-dollar speeding ticket.&lt;br /&gt;
|{{blog|61|2013|09|03}}&lt;br /&gt;
|{{book|1|41}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Falling With Helium.png|100px]]&lt;br /&gt;
|'''{{What If|62|Falling With Helium}}'''&lt;br /&gt;
|''&amp;quot;What if I jumped out of an airplane with a couple of tanks of helium and one huge, un-inflated balloon? Then, while falling, I release the helium and fill the balloon. How long of a fall would I need in order for the balloon to slow me enough that I could land safely?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Colin Rowe&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would need either an air-filled balloon at least 10 to 20 meters across to slow your fall, or 10 helium tanks that are 250 cubic feet. You'd only have a few minutes though, and starting from a higher place will not help much due to your higher terminal velocity in the thin atmosphere.&lt;br /&gt;
|{{blog|62|2013|09|10}}&lt;br /&gt;
|{{book|1|34}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Google's Datacenters on Punch Cards.png|100px]]&lt;br /&gt;
|'''{{What If|63|Google's Datacenters on Punch Cards}}'''&lt;br /&gt;
|''&amp;quot;If all digital data were stored on punch cards, how big would Google's data warehouse be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—James Zetlin&amp;lt;/div&amp;gt;&lt;br /&gt;
|Using electric consumption and datacenter spending as a measuring stick, Google probably has around 1-2 million servers, which equates to around 15 exabytes (or 15,000,000,000,000,000,000 bytes). Assuming a punch card holds 80 characters, all of that data comes out a pile of punch cards that could cover New England to a depth of 4.5 kilometers/2.8 miles, 3x deeper than the ice sheets that covered the region during the most recent ice age.&lt;br /&gt;
|{{blog|63|2013|09|17}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Rising Steadily.png|100px]]&lt;br /&gt;
|'''{{What If|64|Rising Steadily}}'''&lt;br /&gt;
|''&amp;quot;If you suddenly began rising steadily at one foot per second, how exactly would you die? Would you freeze or suffocate first? Or something else?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rebecca B&amp;lt;/div&amp;gt;&lt;br /&gt;
|A nudist would survive for five hours, then succumb to the cold. With a good coat, one would survive for seven, even plausibly eight, until reaching the low-oxygen {{w|death zone}} and suffocating. However, your corpse would outlast the Earth as it was swallowed by the Sun.&lt;br /&gt;
|{{blog|64|2013|09|24}}&lt;br /&gt;
|{{book|1|15}}&lt;br /&gt;
|{{book|37|2026|3|3|oTzW-mTQd5w|What if you floated upwards 1 ft every second?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Twitter Timeline Height.png|100px]]&lt;br /&gt;
|'''{{What If|65|Twitter Timeline Height}}'''&lt;br /&gt;
|''&amp;quot;If our Twitter timelines (tweets by the people we follow) actually extended off the screen in both directions, how tall would they be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|It's difficult to pin down an &amp;quot;average&amp;quot; for Twitter timeline lengths, as it greatly depends on how many people you follow and whom. An estimate by Diego Basch and the Tweet rate as of 2013 suggests that if everyone followed everyone, the section timeline extending to the past would have 345 billion tweets and be 8,000,000 kilometers (5,000,000 miles) tall. Using extrapolation techniques similar to those used in the {{w|German tank problem}}, the future and past timelines combined would likely contain 690 billion tweets.&lt;br /&gt;
|{{blog|65|2013|10|01}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:500 MPH.png|100px]]&lt;br /&gt;
|'''{{What If|66|500 MPH}}'''&lt;br /&gt;
|''&amp;quot;If winds reached 500 mph, would it pick up a human?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Grey Flynn, age 7, Stoneham, MA&amp;lt;/div&amp;gt;&lt;br /&gt;
|500 mph winds are more than fast enough to pick up a person and propel them through the air. The speed at which the wind starts being able to pick up and propel a person is around 120 mph. In fact, 500 mph winds are so fast that they only occur on Earth in extreme situations like the immediate vicinity of an erupting volcano or the aftermath of a major asteroid impact at which point wind speed would only be one of many dangers to human survival.&lt;br /&gt;
|{{blog|66|2013|10|08}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Expanding Earth.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|67|Expanding Earth}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;How long would it take for people to notice their weight gain if the mean radius of the world expanded by 1cm every second? (Assuming the average composition of rock were maintained.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dennis O’Donnell&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |After a month, the gain would be measurable but within the normal variation of gravity. After a year, it would be more prominent at 5%. Humans could survive with difficulty for a decade, but even in specially-built environments, they would succumb within a century as air itself became toxic from atmospheric pressure. After a few centuries, the Moon would fall into the Roche limit and crumble into rings.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|67|2013|10|15}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|55}}&lt;br /&gt;
|{{book|17|2024|10|15|-1-ldW4kpLM|What if Earth grew 1cm every second?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|6|short-video=yes|2025|08|05|5k8ciEx__5w|Circumference pop quiz!}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Little Planet.png|100px]]&lt;br /&gt;
|'''{{What If|68|Little Planet}}'''&lt;br /&gt;
|''&amp;quot;If an asteroid was very small but supermassive, could you really live on it like the Little Prince?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Samantha Harper&amp;lt;/div&amp;gt;&lt;br /&gt;
|Technically, yes. However, there would be major challenges. For one, gravity would be at full strength at your feet, but only 25% strength at your head, giving the illusion that you're being stretched. You would only need to be able to dunk a basketball to jump out of the gravity well, or you could alternatively sprint at 5 meters per second; if you don't make it to that point, you would enter a highly irregular orbit during which tidal forces would pull on your body in strange ways.&lt;br /&gt;
|{{blog|68|2013|10|22}}&lt;br /&gt;
|{{book|1|22}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Facebook of the Dead.png|100px]]&lt;br /&gt;
|'''{{What If|69|Facebook of the Dead}}'''&lt;br /&gt;
|''&amp;quot;When, if ever, will Facebook contain more profiles of dead people than of living ones?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Emily Dunham&amp;lt;/div&amp;gt;&lt;br /&gt;
|This depends on if Facebook stays popular or declines in popularity over time. In the former case, the dead would only outnumber the living well into the 2100s; while in the latter, this happens around 2060. Facebook can afford to keep all our data indefinitely, but there are ethical questions.&lt;br /&gt;
|{{blog|69|2013|10|29}}&lt;br /&gt;
|{{book|1|59}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:The Constant Groundskeeper.png|100px]]&lt;br /&gt;
|'''{{What If|70|The Constant Groundskeeper}}'''&lt;br /&gt;
|''&amp;quot;How big of a lawn would you have to have so that when you finished mowing you'd need to start over because the grass has grown?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nick Nelson&amp;lt;/div&amp;gt;&lt;br /&gt;
|A normal, standard-issue mower running for 10 hours straight could cut an area of 25,000 square meters, or 27,000 yards; the ideal frequency to cut your lawn is once every 10 days, which means that 0.25 km² of lawn can be maintained by 10 hours of mowing every day [or 0.6 km² by mowing it constantly]. Using a much faster mower commissioned by the magazine ''Top Gear'' that is used all day, every day, it could cut an adult male cougar's home range (which [https://wdfw.wa.gov/species-habitats/species/puma-concolor#:~:text=Adult%20male%20cougars%20roam%20widely,terrain%2C%20and%20availability%20of%20prey. the Washington Department of Fish and Wildlife] reports as 50-150 square miles or 130-390 square kilometers).&lt;br /&gt;
|{{blog|70|2013|11|05}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Stirring Tea.png|100px]]&lt;br /&gt;
|'''{{What If|71|Stirring Tea}}'''&lt;br /&gt;
|''&amp;quot;I was absentmindedly stirring a cup of hot tea, when I got to thinking, &amp;quot;aren't I actually adding kinetic energy into this cup?&amp;quot; I know that stirring does help to cool down the tea, but what if I were to stir it faster? Would I be able to boil a cup of water by stirring?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Will Evans&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, not really. It would take at least 1 horsepower (a lot for a person stirring), and reducing the power would just make it cool faster. Stirring faster and faster would cause a vacuum to form and stirring to become ineffective (and the tea would splash out everywhere).&lt;br /&gt;
|{{blog|71|2013|11|12}}&lt;br /&gt;
|{{book|1|61}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Loneliest Human.png|100px]]&lt;br /&gt;
|'''{{What If|72|Loneliest Human}}'''&lt;br /&gt;
|''&amp;quot;What is the furthest one human being has ever been from every other living person? Were they lonely?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Bryan J. McCarter&amp;lt;/div&amp;gt;&lt;br /&gt;
|The most well-documented candidates are the six Apollo astronauts piloting the Command Module orbiting the Moon while their fellow astronauts descended on the surface, at most 3585 km away. Antarctic explorers and pre-colonialism Polynesian explorers have a shot, but there's no good evidence of specific people who beat the Apollo record. Astronauts Mike Collins and Al Worden said they were not at all lonely, the latter even enjoying his solitude.&lt;br /&gt;
|{{blog|72|2013|11|19}}&lt;br /&gt;
|{{book|1|63}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Lethal Neutrinos.png|100px]]&lt;br /&gt;
|'''{{What If|73|Lethal Neutrinos}}'''&lt;br /&gt;
|''&amp;quot;How close would you have to be to a supernova to get a lethal dose of neutrino radiation?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—(Overheard in a physics department)&amp;lt;/div&amp;gt;&lt;br /&gt;
|Neutrinos are subatomic particles that barely interact with the universe at all, so it's hard to imagine a scenario where they could harm you, even in a supernova. But at about 2.3 AU, or a little farther than Mars is from the Sun, even the neutrinos would be dense enough to kill you. On the other hand, if you were that close, you were probably inside the star that created the supernova, in which case ''[[#115|Into the Sun]]'' would apply.&lt;br /&gt;
|{{blog|73|2013|11|26}}&lt;br /&gt;
|{{book|1|39}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Soda Planet.png|100px]]&lt;br /&gt;
|'''{{What If|74|Soda Planet}}'''&lt;br /&gt;
|''&amp;quot;How much of the Earth's currently-existing water has ever been turned into a soft drink at some point in its history?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brian Roelofs&amp;lt;/div&amp;gt;&lt;br /&gt;
|Humans have likely consumed 6.5 trillion liters or 1.7 trillion gallons of soda ever, based on estimates of population growth and popularity of soda. Assuming humanity has drunk 100 trillion liters (26 trillion gallons) of water, it is reasonable to conclude that only 0.0000005% of Earth's current water reservoir has been turned into a soft drink. However, considering how long water takes to cycle around and certain prehistoric life forms, the water in the average soda was likely once consumed by a dinosaur.&lt;br /&gt;
|{{blog|74|2013|12|03}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Phone Keypad.png|100px]]&lt;br /&gt;
|'''{{What If|75|Phone Keypad}}'''&lt;br /&gt;
|''&amp;quot;I use one of those old phones where you type with numbers—for example, to type &amp;quot;Y&amp;quot;, you press 9 three times. Some words have consecutive letters on the same number. When they do, you have to pause between letters, making those words annoying to type. What English word has the most consecutive letters on the same key?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Stewart Bishop&amp;lt;/div&amp;gt;&lt;br /&gt;
|According to Randall, the English word with the most consecutive letters on the same key is &amp;quot;Nonmonogamous&amp;quot;. This would require you to type the 6 key (MNO) 16 times without stopping, in order to type 'nonmono'. With every letter included, typing this word would require pressing the 2, 4, 7, and 8 keys once each, and the 6 key a nice, even 20 times. However, Randall is wrong. The actual word with most consecutive letters on the same key is 'nonmonomolecular'. In order to type 'nonmonomo', you need to hit the 6 key a full 20 times. However, typing the full word wouldn't add any more presses of the 6 key, so it takes the same amount of 6 to type the full word as nonmonogamous.&lt;br /&gt;
|{{blog|75|2013|12|10}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Reading Every Book.png|100px]]&lt;br /&gt;
|'''{{What If|76|Reading Every Book}}'''&lt;br /&gt;
|''&amp;quot;At what point in human history were there too many (English) books to be able to read them all in one lifetime?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Gregory Willmot&amp;lt;/div&amp;gt;&lt;br /&gt;
|About the 1500s, as the population of active English writers reached a few hundred, meaning you would never be able to catch up (using the average word count for a few famous authors as a baseline). You might not want to read them, anyways.&lt;br /&gt;
|{{blog|76|2013|12|17}}&lt;br /&gt;
|{{book|2|10}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Growth Rate.png|100px]]&lt;br /&gt;
|'''{{What If|77|Growth Rate}}'''&lt;br /&gt;
|''&amp;quot;What height would humans reach if we kept growing through our whole development period (i.e. till late teens/early twenties) at the same pace as we do during our first month?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Maria&amp;lt;/div&amp;gt;&lt;br /&gt;
|We would reach 10 to 12 meters at age 20, though the human body is not scalable to those heights, as our bone structure is too thin, while our hearts wouldn't be able to pump the blood around.&lt;br /&gt;
|{{blog|77|2013|12|31|7d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:T-rex Calories.png|100px]]&lt;br /&gt;
|'''{{What If|78|T-rex Calories}}'''&lt;br /&gt;
|''&amp;quot;If a T-rex were released in New York City, how many humans/day would it need to consume to get its needed calorie intake?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tony Schmitz&amp;lt;/div&amp;gt;&lt;br /&gt;
|Estimates vary, but the T-rex was estimated to need 40,000 calories per day. Ryan North of Dinosaur Comics tells us that the average 80 kg/175 pound human [http://www.topatoco.com/merchant.mvc?Screen=PROD&amp;amp;Store_Code=TO&amp;amp;Product_Code=QW-PERSON&amp;amp;Category_Code=QW contains 110,000 calories]. Therefore, a T-rex would need to eat someone every 2 days or so. On the other hand, a T-rex wouldn't necessarily have to use humans specifically as a food source and could instead eat 80 hamburgers a day.&lt;br /&gt;
|{{blog|78|2014|01|07}}&lt;br /&gt;
|{{book|2|7|T. Rex Calories}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Lake Tea.png|100px]]&lt;br /&gt;
|'''{{What If|79|Lake Tea}}'''&lt;br /&gt;
|''&amp;quot;What if we were to dump all the tea in the world into the Great Lakes? How strong, compared to a regular cup of tea, would the lake tea be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alex Burman&amp;lt;/div&amp;gt;&lt;br /&gt;
|An average cup of tea requires 2 grams of tea per 100 mL of water, and to make proper tea out of the Great Lakes, you would need 450 billion tons of tea for the Great Lakes' 22,600 cubic kilometers/5400 cubic miles of water. A total year's supply of tea is only 4.8 million tons, which would make tea about as strong as 2 drops in a bathtub. To make proper lake tea, you could use Wular Lake in Kashmir or Ullswater in UK's lake district, due to the volume of both being small enough for the tea to work. Heating those lakes to proper steeping temperature would likely be quite difficult, so Boiling Lake in Dominica or Frying Pan Lake in New Zealand could also be good candidates as they're already hot.&lt;br /&gt;
|{{blog|79|2014|01|14}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Pile of Viruses.png|100px]]&lt;br /&gt;
|'''{{What If|80|Pile of Viruses}}'''&lt;br /&gt;
|''&amp;quot;What if every virus in the world were collected into one area? How much volume would they take up and what would they look like?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dave&amp;lt;/div&amp;gt;&lt;br /&gt;
|''Human'' viruses would fill about ten oil drums. ''All'' viruses would form a wet heap the size of a small mountain, with a texture resembling pus or meat slurry. The viruses are likely to have a small angle of repose, so to avoid having the pile collapse and flood the surrounding area, all the viruses could instead be contained in 150 football stadiums.&lt;br /&gt;
|{{blog|80|2014|01|21}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Catch!.png|100px]]&lt;br /&gt;
|'''{{What If|81|Catch!}}'''&lt;br /&gt;
|''&amp;quot;Is there any way to fire a gun so that the bullet flies through the air and can then be safely caught by hand? e.g. shooter is at sea level and catcher is up a mountain at the extreme range of the gun.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ed Hui, London&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes, eventually the bullet would come to a maximum height, at which point you could grab the bullet before it fell down. You'd need to grip it firmly, because the bullet would still have its rotational momentum and might jump out of your hand. A larger bullet would require a larger height to catch it at, and even then, it would still be difficult to grab. Of course, this is illegal and can injure you or other people.&lt;br /&gt;
|{{blog|81|2014|01|28}}&lt;br /&gt;
|{{book|2|12}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hitting a comet.png|100px]]&lt;br /&gt;
|'''{{What If|82|Hitting a comet}}'''&lt;br /&gt;
|''&amp;quot;Astrophysicists are always saying things like &amp;quot;This mission to this comet is equivalent to throwing a baseball from New York and hitting a particular window in San Francisco.&amp;quot; Are they really equivalent?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tom Foster&amp;lt;/div&amp;gt;&lt;br /&gt;
|The baseball thing is much harder. You'd have to hit it out of the atmosphere, and a baseball is too small to do that. Even if you could, it's still not a fair comparison because astrophysicists are allowed to refine their approach as they close in on the target, which you can't do with a thrown baseball. It turns out that the comet mission requires about the same level of precision as laser eye surgery.&lt;br /&gt;
|{{blog|82|2014|02|05|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Star Sand.png|100px]]&lt;br /&gt;
|'''{{What If|83|Star Sand}}'''&lt;br /&gt;
|''&amp;quot;If you made a beach using grains the proportionate size of the stars in the Milky Way, what would that beach look like?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jeff Wartes&amp;lt;/div&amp;gt;&lt;br /&gt;
|Although red giants aren't as common as Sun-like stars or red dwarfs, they would form a stretch of gravel that went on for miles due to their large relative volume. 99% of all stars would form a small patch of sand.&lt;br /&gt;
|{{blog|83|2014|02|11|1d early}}&lt;br /&gt;
|{{book|2|16}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Paint the Earth.png|100px]]&lt;br /&gt;
|'''{{What If|84|Paint the Earth}}'''&lt;br /&gt;
|''&amp;quot;Has humanity produced enough paint to cover the entire land area of the Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Josh (Bolton, MA)&amp;lt;/div&amp;gt;&lt;br /&gt;
|There isn't enough paint to go around. The total estimated amount of produced paint, a trillion litres, is only enough to paint as much as the land area of Russia.&lt;br /&gt;
|{{blog|84|2014|02|18}}&lt;br /&gt;
|{{book|2|14}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Rocket Golf.png|100px]]&lt;br /&gt;
|'''{{What If|85|Rocket Golf}}'''&lt;br /&gt;
|''&amp;quot;Assuming that you have a spaceship in orbit around the Earth, could you propel your ship to speeds exceeding escape velocity by hitting golf balls in the other direction? If so, how many golf balls would be required to reach the Moon?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dan (Kanata, Ontario)&amp;lt;/div&amp;gt;&lt;br /&gt;
|A person theoretically ''could'' propel your ship using golf balls, but, assuming they are being fired at 226 mph (363 km/h), the fastest world record, the amount of golf balls needed for this would be around the size of Earth and wouldn't even get you to the Moon. (An ordinary golfer hitting the ball at 120 mph (50 km/h) would need a bag of golf balls bigger than the solar system that would collapse into a black hole and be even more unusable.) You'd need a potato cannon fueled by acetylene firing golf balls at 310 mph (500 km/h) which reduces the size of the golf mass to 150 miles (240 kilometers). This would be incredibly costly and firing them faster would essentially be the same as building a normal rocket.&lt;br /&gt;
|{{blog|85|2014|02|25}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Far-Traveling Objects.png|100px]]&lt;br /&gt;
|'''{{What If|86|Far-Traveling Objects}}'''&lt;br /&gt;
|''&amp;quot;In terms of human-made objects, has Voyager 1 travelled the farthest distance? It's certainly the farthest from Earth we know about. But what about the edge of ultracentrifuges, or generator turbines that have been running for years, for example?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Matt Russell&amp;lt;/div&amp;gt;&lt;br /&gt;
|There are a few different frames of reference you can look at, but in normal terms Mariner 10 has traveled much farther than Voyager 1. It's travelled a couple of light-days around the Sun, while the Voyager probes have only travelled a dozen light-hours.&lt;br /&gt;
|{{blog|86|2014|03|04}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Enforced by Radar.png|100px]]&lt;br /&gt;
|'''{{What If|87|Enforced by Radar}}'''&lt;br /&gt;
|''&amp;quot;I've occasionally seen &amp;quot;radar enforced&amp;quot; on speed limit signs, and I can't help but ask: How intense would radio waves have to be to stop a car from going over the speed limit, and what would happen if this were attempted?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Joausc&amp;lt;/div&amp;gt;&lt;br /&gt;
|Radio waves are generally ''very weak''. You'd need the collective energy of trillions of cell phones just to levitate a snow flake. To stop a car, you'd need at least 2 trillion joules of radiation, which would vaporize the car and everything else around it.&lt;br /&gt;
|{{blog|87|2014|03|11}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Soda Sequestration.png|100px]]&lt;br /&gt;
|'''{{What If|88|Soda Sequestration}}'''&lt;br /&gt;
|''&amp;quot;How much CO2 is contained in the world's stock of bottled fizzy drinks? How much soda would be needed to bring atmospheric CO2 back to preindustrial levels?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brandon Seah&amp;lt;/div&amp;gt;&lt;br /&gt;
|There are currently 400 parts of carbon dioxide per million. To bring it down to pre-Industrial levels, you'd need 450 quadrillion cans of soda, each being able to hold 2.2 grams of CO2. This would cover Earth's land 10 times over.&lt;br /&gt;
|{{blog|88|2014|03|18}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tungsten Countertop.png|100px]]&lt;br /&gt;
|'''{{What If|89|Tungsten Countertop}}'''&lt;br /&gt;
|''&amp;quot;How far would a tungsten countertop descend if I dropped it into the Sun?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael Leuchtenburg&amp;lt;/div&amp;gt;&lt;br /&gt;
|Tungsten has the highest melting point of any element, but even tungsten would melt before it got too far. If you protected it with a heat shield, it would get destroyed all the same by the battering of the particles in the Sun's atmosphere. It could possibly penetrate the surface if it was larger, but as it stands, it wouldn't get past the outer layers.&lt;br /&gt;
|{{blog|89|2014|03|25}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Great Tree, Great Axe.png|100px]]&lt;br /&gt;
|'''{{What If|90|Great Tree, Great Axe}}'''&lt;br /&gt;
|''&amp;quot;If all the seas were one sea,''&lt;br /&gt;
''What a great sea that would be!''&lt;br /&gt;
''If all the trees were one tree,''&lt;br /&gt;
''What a great tree that would be!''&lt;br /&gt;
''If all the men were one man,''&lt;br /&gt;
''What a great man that would be!''&lt;br /&gt;
''If all the axes were one axe,''&lt;br /&gt;
''What a great axe that would be!''&lt;br /&gt;
''And if the great man took the great axe,''&lt;br /&gt;
''And cut down the great tree,''&lt;br /&gt;
''And let if fall into the great sea,''&lt;br /&gt;
''What a great splish-splash that would be!''&lt;br /&gt;
&lt;br /&gt;
''... How great would all of these things be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—John Eifert (quoting a ''Mother Goose'' rhyme)&amp;lt;/div&amp;gt;&lt;br /&gt;
|The seas would be a little bigger than the Pacific Ocean. Trees can't grow taller than about 130 meters naturally, and would physically crush itself if above a few kilometers tall. Ignoring these restraints, the tree would be about 75 km tall with trunk diameter of 2 km. Ignoring human size restraints, the person would be close to 3 km tall. The axe would be about 500 meters long and relatively the size of a flimsy hatchet. It may take a few weeks to chop down the tree and the impact would create a tsunami that probably wouldn't wipe out the human race, but would be likely the deadliest single disaster in our history.&lt;br /&gt;
|{{blog|90|2014|04|03|2d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Faucet Power.png|100px]]&lt;br /&gt;
|'''{{What If|91|Faucet Power}}'''&lt;br /&gt;
|''&amp;quot;I just moved into a new apartment. It includes hot water but I have to pay the electric bill. So being a person on a budget ... what's the best way to use my free faucet to generate electricity?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—David Axel Kurtz&amp;lt;/div&amp;gt;&lt;br /&gt;
|A small hydroelectric dam in the bathtub would yield about $0.25 per month of electricity, but the best option would probably be to bottle and sell your tap water, yielding about $38 million per year at $1.50 per bottle.&lt;br /&gt;
|{{blog|91|2014|04|08|2d early}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:One-Second Day.png|100px]]&lt;br /&gt;
|'''{{What If|92|One-Second Day}}'''&lt;br /&gt;
|''&amp;quot;What would happen if the Earth's rotation were sped up until a day only lasted one second?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dylan&amp;lt;/div&amp;gt;&lt;br /&gt;
|Everything on Earth would die, but if it happened when the Moon crosses the plane of the Earth, then everything in the Solar System will die (whether there is a difference is debatable).&lt;br /&gt;
|{{blog|92|2014|04|15}}&lt;br /&gt;
|{{book|2|21}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Windshield Raindrops.png|100px]]&lt;br /&gt;
|'''{{What If|93|Windshield Raindrops}}'''&lt;br /&gt;
|''&amp;quot;At what speed would you have to drive for rain to shatter your windshield?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Daniel Butler&amp;lt;/div&amp;gt;&lt;br /&gt;
|Water droplets in air are normally lighter than the air, so this wouldn't happen under normal circumstances. However, at supersonic speeds, the water droplet would jet away from the impact point on the windshield at Mach 18. It wouldn't shatter the windshield, but it would slowly batter it away. If you really want to have your windshield broken by precipitation, it would probably be easier to find a hailstorm and drive under it.&lt;br /&gt;
|{{blog|93|2014|04|22}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |[[File:Billion-Story Building.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''{{What If|94|Billion-Story Building}}'''&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |''&amp;quot;My daughter — age 4.5 — maintains she wants a billion-story building. It turns out not only is that hard to help her appreciate this size, I am not at all able to explain all of the other difficulties you'd have to overcome.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Keira, via Steve Brodovicz, Media, PA &amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |The tower would be far too big to support itself under its own weight. The tower would also extend past the Moon. The sheer amount of elevators needed would provide little to no room for actual usable space. Additionally, space junk would be a large problem, as there is a high probability that space junk would collide with the tower. &lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{blog|94|2014|04|29}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{book|2|22}}&lt;br /&gt;
|{{book|21|2025|02|11|Z_xJ40QXu7Q|What if you built a billion-story building?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|21|short-video=yes|2026|02|17|J-E8rjWR9rM|What if we built a billion-story building?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|22|short-video=yes|2026|02|24|oMtAHGv-DU4|How many elevators would you need in a billion-story building?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Pyramid Energy.png|100px]]&lt;br /&gt;
|'''{{What If|95|Pyramid Energy}}'''&lt;br /&gt;
|''&amp;quot;What took more energy, the building of the Great Pyramid of Giza or the Apollo Mission? If we could convert the energy to build the Great Pyramid, would it be enough to send a rocket to the Moon and back?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael Marmol&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Apollo Program took about the same manpower as the building of the Great Pyramids, but physics wise, the Great Pyramid only contains 10&amp;lt;sup&amp;gt;12&amp;lt;/sup&amp;gt; joules of gravitational potential energy. A single Saturn V rocket's fuel has 20 times more energy.&lt;br /&gt;
|{{blog|95|2014|05|06}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:$2 Undecillion Lawsuit.png|100px]]&lt;br /&gt;
|'''{{What If|96|$2 Undecillion Lawsuit}}'''&lt;br /&gt;
|''&amp;quot;What if Au Bon Pain lost '''[http://www.loweringthebar.net/2014/05/2-undecillion-dollar-demand.html this lawsuit]''' and had to pay the plaintiff $2 undecillion?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kevin Underhill&amp;lt;/div&amp;gt;&lt;br /&gt;
|The debt would be incredibly great, to the point that everything ever created by man does not have enough value to pay it off. For comparison, former solicitor general Ted Olson leaked that he charges $1600 per hour for his services. Even if every habitable planet in the Milky Way had a population of 8 billion Ted Olsons, and you hired all of them for a thousand generations, the cost would still be lower than if you lost.&lt;br /&gt;
|{{blog|96|2014|05|14|1d late}}&lt;br /&gt;
|{{book|2|23}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Burning Pollen.png|100px]]&lt;br /&gt;
|'''{{What If|97|Burning Pollen}}'''&lt;br /&gt;
|''&amp;quot;What if you were to somehow ignite the pollen that floats around in the air in spring? Other than being a really bad idea, what effect would it have?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jessica Thornburg&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would just warm up the air by a very tiny bit, but only because it's so thinly spread. Gathering all of it from a large enough region into one pile could equal a nuclear weapon.&lt;br /&gt;
|{{blog|97|2014|05|20|1d early}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Blood Alcohol.png|100px]]&lt;br /&gt;
|'''{{What If|98|Blood Alcohol}}'''&lt;br /&gt;
|''&amp;quot;Could you get drunk from drinking a drunk person's blood?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Fiona Byrne&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, you can't. Alcohol in a drunk person's blood would be very diluted and by the time you drank the 14 glasses needed to get drunk, you would've vomited on the account of drinking blood. That aside, you could also get iron overload as well as various blood-borne diseases.&lt;br /&gt;
|{{blog|98|2014|05|27}}&lt;br /&gt;
|{{book|2|42}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Starlings.png|100px]]&lt;br /&gt;
|'''{{What If|99|Starlings}}'''&lt;br /&gt;
|''&amp;quot;I was watching '''[http://www.youtube.com/watch?v=eakKfY5aHmY this video]''' and was wondering: How many birds there would need to be for gravity to take over and force them into a gargantuan ball of birds?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Justin Basinger&amp;lt;/div&amp;gt;&lt;br /&gt;
|Each bird is 85 grams, with a density of around 43 grams per square meter. Because of this, the air would be 25 times stronger than the starlings and the substance governing the collapse. The air would have to be bigger than the Earth to collapse the starlings and the starlings themselves would need to be bigger than the Solar System. They would then promptly turn into a star.&lt;br /&gt;
|{{blog|99|2014|06|03}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:WWII Films.png|100px]]&lt;br /&gt;
|'''{{What If|100|WWII Films}}'''&lt;br /&gt;
|''&amp;quot;Did WWII last longer than the total length of movies about WWII? For that matter, which war has the highest movie time:war time ratio?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Becky&amp;lt;/div&amp;gt;&lt;br /&gt;
|Assuming the average run time of a WWII film was 95 minutes, the combined length was 300 days, meaning World War II was longer than the movies 7 times over. The two most likely candidates for highest movie:war ratio are the Indo-Pakistani war, which lasted 13 days and has 5 catalogued films about it, and the Anglo-Zanzibar war, which only lasted 38 minutes but lacked any films. In 2015, someone took Randall's advice and made [https://www.imdb.com/title/tt5954666/ Zanzibar], a short film (31 minutes) that takes the record.&lt;br /&gt;
|{{blog|100|2014|06|11|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Plastic Dinosaurs.png|100px]]&lt;br /&gt;
|'''{{What If|101|Plastic Dinosaurs}}'''&lt;br /&gt;
|''&amp;quot;As plastic is made from oil and oil is made from dead dinosaurs, how much actual real dinosaur is there in a plastic dinosaur?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Steve Lydford&amp;lt;/div&amp;gt;&lt;br /&gt;
|Contrary to the name, oil is not made of dead dinosaurs, mostly being composed of marine plankton and algae. Geology is complicated, but the gist is that only a small fraction of a plastic dinosaur toy could've come from dinosaur oil, and depending on the location, it may contain none at all.&lt;br /&gt;
|{{blog|101|2014|06|18}}&lt;br /&gt;
|{{book|2|26}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Keyboard Power.png|100px]]&lt;br /&gt;
|'''{{What If|102|Keyboard Power}}'''&lt;br /&gt;
|''&amp;quot;As a writer, I'm wondering what would be the cumulative energy of the hundreds of thousands of keystrokes required to write a novel.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nicholas Dickner&amp;lt;/div&amp;gt;&lt;br /&gt;
|Writing one full novel would provide enough energy to run a laptop for 15 seconds. If each novel takes you six months, this would save a fraction of a penny of electricity. To keep a laptop working on just keyboard power, you'd need to write a novel every ten seconds, and to run a microwave would require one novel per second. Typing fast enough to do either would require your fingers to move at relativistic speeds with similar destructive nuclear consequences of objects doing so to those described in {{what if|1|Relativistic Baseball}}.&lt;br /&gt;
|{{blog|102|2014|06|25}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|34|2025|12|02|0L44GEJ5pLE|Can you power your computer by typing?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Vanishing Water.png|100px]]&lt;br /&gt;
|'''{{What If|103|Vanishing Water}}'''&lt;br /&gt;
|''&amp;quot;What would happen if all the bodies of water on Earth magically disappeared?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Joanna Xu&amp;lt;/div&amp;gt;&lt;br /&gt;
|If all water vanished, the first to notice would be anybody currently in the ocean, and over the course of a minute, they would all fall, some of them dying but some surviving with minor injuries. After this, all marine life will have perished. Humans follow soon after as the water cycle would've stopped, collapsing global infrustructure and killing every plant and person by dehydration. The end of the water cycle also leads to a runaway greenhouse effect later on.&lt;br /&gt;
|{{blog|103|2014|07|02}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Global Snow.png|100px]]&lt;br /&gt;
|'''{{What If|104|Global Snow}}'''&lt;br /&gt;
|''&amp;quot;From my seven-year-old son: How many snowflakes would it take to cover the entire world in six feet of snow? (I don't know why six feet...but that's what he asked.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jed Scott&amp;lt;/div&amp;gt;&lt;br /&gt;
|Snow isn't very dense, and 1 inch of rain would lead to a foot or more of snow. Factoring in snow compressing throughout the day, you would need a mole of snowflakes to cover the Earth in 6 feet in snow.&lt;br /&gt;
|{{blog|104|2014|07|09}}&lt;br /&gt;
|{{book|2|59}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cannibalism.png|100px]]&lt;br /&gt;
|'''{{What If|105|Cannibalism}}'''&lt;br /&gt;
|''&amp;quot;How long could the human race survive on only cannibalism?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Quinn Shaffer&amp;lt;/div&amp;gt;&lt;br /&gt;
|If half of the world eats the other half, then it would take about 32 months before it came down to 2 people. However, this is also a very efficient way to get a {{w|Transmissible spongiform encephalopathy|prion disease}}. &lt;br /&gt;
|{{blog|105|2014|07|16}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|31|2025|09|30|PUtI3xoaHx0|Could we survive eating only humans?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Ink Molecules.png|100px]]&lt;br /&gt;
|'''{{What If|106|Ink Molecules}}'''&lt;br /&gt;
|''&amp;quot;Suppose you were to print, in 12 point text, the numeral 1 using a common cheap ink-jet printer. How many molecules of the ink would be used? At what numerical value would the number printed approximately equal the number of ink molecules used?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—David Pelkey&amp;lt;/div&amp;gt;&lt;br /&gt;
|You'd use about 100,000,000,000,000,000 molecules.&lt;br /&gt;
|{{blog|106|2014|07|23}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Letter to Mom.png|100px]]&lt;br /&gt;
|'''{{What If|107|Letter to Mom}}'''&lt;br /&gt;
|''&amp;quot;What’s the fastest way to get a hand-written letter from my place in Chicago to my mother in New Jersey?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tim&amp;lt;/div&amp;gt;&lt;br /&gt;
|An ICBM would take 12-15 minutes to cross the distance. While that is the best method, a few other methods come close. The Concorde would only take 30 minutes, while firing something with a rail gun down a vacuum tube would take only 10-20 minutes.&lt;br /&gt;
|{{blog|107|2014|07|30}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Expensive Shoebox.png|100px]]&lt;br /&gt;
|'''{{What If|108|Expensive Shoebox}}'''&lt;br /&gt;
|''&amp;quot;What would be the most expensive way to fill a size 11 shoebox (e.g. with 64 GB MicroSD cards all full of legally purchased music)?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rick Lewis&amp;lt;/div&amp;gt;&lt;br /&gt;
|There are many options (precious materials, hard drugs, physical file storage, etc.), but they all cap out at ~$2,000,000,000. That amount of platinum would be worth $13 million, while diamonds, Adcetris and LSD would be valued around 1-2 billion. A shoebox full of plutonium would be worth $3 billion, but since it would also have a mass of about 300 kg, which is well over the critical mass, monetary value is unlikely to be its most relevant property to anyone in its immediate vicinity. If the US Treasury ever decides to mint a trillion dollar coin, it could probably then fit in a shoebox, as could a check for an arbitrarily large sum.&lt;br /&gt;
|{{blog|108|2014|08|13|7d late}}&lt;br /&gt;
|{{book|2|31}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Into the Blue.png|100px]]&lt;br /&gt;
|'''{{What If|109|Into the Blue}}'''&lt;br /&gt;
|''&amp;quot;If I shot an infinitely strong laser beam into the sky at a random point, how much damage would it do?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Garrett D.&amp;lt;/div&amp;gt;&lt;br /&gt;
|Infinitely powerful laser beams do not exist, and if they did, they would vaporize the air and destroy everything like in the ''[[what if? (blog)|what if?]]'' article ''{{what if|13|Laser Pointer}}''. That being said, if it were truly random, it would be aimed at Earth 50% of the time. If you miss the Earth, 89,999 times out of 90,000, your beam will pass right out of the galaxy without hitting anything. When it does hit something, it will almost always be the Sun or the Moon.&lt;br /&gt;
|{{blog|109|2014|08|20}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Walking New York.png|100px]]&lt;br /&gt;
|'''{{What If|110|Walking New York}}'''&lt;br /&gt;
|''&amp;quot;Could a person walk the entire city of NY in their lifetime? (including inside apartments)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Asif Shamir&amp;lt;/div&amp;gt;&lt;br /&gt;
|Based on estimates of US Postal Service carriers and their travel times, we know that walking every street in NYC would probably take 14 years. Assuming it takes about 25 seconds to enter an apartment building, leave, and go to the next one, it would only take an additional 10 years to visit every apartment. However, under [http://ypdcrime.com/penal.law/article140.htm New York Penal Code], the punishment would take 2 million years or 2,000 millenia to finish.&lt;br /&gt;
|{{blog|110|2014|08|27}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:All the Money.png|100px]]&lt;br /&gt;
|'''{{What If|111|All the Money}}'''&lt;br /&gt;
|''&amp;quot;People sometimes say &amp;quot;If I had all the money in the world ...&amp;quot; in order to discuss what they would do if they had no financial constraints. I'm curious, though, what would happen if one person had all of the world's money?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Daniel Pino&amp;lt;/div&amp;gt;&lt;br /&gt;
|Currency only makes up a fraction of Earth's money, and it's unlikely people would agree to your sudden claims of ownership over all of the land, nor would they let you spend the actual currency you have. Said currency would quickly crush you, as most of its weight is in coinage. You could build a structure to contain the coins, but this would violate NYC building codes.&lt;br /&gt;
|{{blog|111|2014|09|02|1d early}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|25|2025|05|06|saj7b5C6TCM|What if you literally had all the money in the world?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Balloon Car.png|100px]]&lt;br /&gt;
|'''{{What If|112|Balloon Car}}'''&lt;br /&gt;
|''&amp;quot;My 12-year-old daughter is proposing an interesting project. She is planning to attach a number of helium balloons to a chair, which in turn would be tethered by means of a rope to a Ferrari. Her 13-year-old friend would then drive the Ferrari around, while she sits in the chair enjoying uninterrupted views of the countryside. Leaving aside the legal and insurance difficulties, my daughter is keen to know the maximum speed that she could expect to attain, and how many helium balloons would be required.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Phil Rodgers, Cambridge, UK&amp;lt;/div&amp;gt;&lt;br /&gt;
|A balloon just big enough to lift you would be pushed down by the wind, and a balloon big enough to counteract that would lift up the car along with you. The way to achieve this result is [https://www.youtube.com/results?search_query=parasailing parasailing].&lt;br /&gt;
|{{blog|112|2014|09|17|8d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Visit Every State.png|100px]]&lt;br /&gt;
|'''{{What If|113|Visit Every State}}'''&lt;br /&gt;
|''&amp;quot;How fast could you visit all 50 states?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—as discussed by Stephen Von Worley &amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;on [http://www.datapointed.net/2012/08/fastest-route-to-visit-all-fifty-united-states/ '''''Data Pointed''''']&amp;lt;/span&amp;gt;&lt;br /&gt;
|It would take you 160 hours by car, 39 hours by landing a private jet in each state, and 18 hours by F-22 fighter jet and helicopter landing in each state. However, if you relax the requirement to land in each state and simply count entering the state's airspace as &amp;quot;visiting&amp;quot; it, you can do it in around 7 hours with an SR-71 Blackbird. If we allow satellite orbits, you can do it in just over 6 hours with five orbits, assuming your satellite makes a course correction on each orbit.&lt;br /&gt;
|{{blog|113|2014|09|24}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Antimatter.png|100px]]&lt;br /&gt;
|'''{{What If|114|Antimatter}}'''&lt;br /&gt;
|''&amp;quot;What if everything was antimatter, EXCEPT Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sean Gallagher&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would wipe out all life on Earth, but surprisingly slower than you might expect. The annihilation of antimatter entering the atmosphere would add enough extra heat to create a runaway greenhouse effect and make Earth similar to Venus. We would be in much more danger from meteorites, with dinosaur-killer equivalents hitting the upper atmosphere every few months.&lt;br /&gt;
|{{blog|114|2014|10|01}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Into the Sun.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|115|Into the Sun}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;When I was about 8 years old, shoveling snow on a freezing day in Colorado, I wished that I could be instantly transported to the surface of the Sun, just for a nanosecond, then instantly transported back. I figured this would be long enough to warm me up but not long enough to harm me. What would actually happen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—AJ, Kansas City&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |You would not be warmed if you went to the surface, as the energy received by your skin would be minimal. You would maybe see a bright flash of light. The core, on the other hand, would vaporize you, as the energy delivered there would be able to give you a second-degree burn after 1 femtosecond (1 millionth of a nanosecond) in the core.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|115|2014|10|08}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|2|61}}&lt;br /&gt;
|{{book|15|2024|09|03|UXA-Af-JeCE|Could you survive a nanosecond on the Sun?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|20|short-video=yes|2026|02|03|m1aMh7z8Y7I|What if you teleported to the Sun?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |[[File:No-Rules NASCAR.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''{{What If|116|No-Rules NASCAR}}'''&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |''&amp;quot;If you stripped away all the rules of car racing and had a contest which was simply to get a human being around a track 200 times as fast as possible, what strategy would win? Let's say the racer has to survive.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Hunter Freyer&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |If the rider has to survive, 90 minutes is the limit based on human G-force tolerances. If survival is not a priority, you'd build a particle accelerator.&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{blog|116|2014|10|15}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{book|2|35}}&lt;br /&gt;
|{{book|3|2023|12|19|JcXpCyPc2Xw|What if NASCAR had no rules?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|8|short-video=yes|2025|08|26|eSPcp-tfGbA|How fast could a human accellerate (while staying alive)?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|9|short-video=yes|2025|09|02|rgUfcFAPicY|How fast could a vehicle go around a track - but the racer does not have to survive.}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Distant Death.png|100px]]&lt;br /&gt;
|'''{{What If|117|Distant Death}}'''&lt;br /&gt;
|''&amp;quot;What is the farthest from Earth that any Earth thing has died?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Amy from NZ&amp;lt;/div&amp;gt;&lt;br /&gt;
|The farthest that any human has died is about 167 kilometers. In terms of any living thing, however, bacterial spores on Voyager 1 are dying every few months, setting a new record each time.&lt;br /&gt;
|{{blog|117|2014|10|23|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Physical Salary.png|100px]]&lt;br /&gt;
|'''{{What If|118|Physical Salary}}'''&lt;br /&gt;
|''&amp;quot;What if people's incomes appeared around them as cash in real time? How much would you need to make to be in real trouble?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Julia Anderson, Albuquerque, NM&amp;lt;/div&amp;gt;&lt;br /&gt;
|At minimum US wage, a worker would earn about one water bottle of mixed coins per day. A CEO would earn about 600 such bottles per day, and the coins would accumulate on the floor at a rate of about 0.5 inches per day. Mark Zuckerberg would earn 25 such bottles ''per second'', and the coins would bury him if he sat still for an hour.&lt;br /&gt;
|{{blog|118|2014|10|30}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Laser Umbrella.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|119|Laser Umbrella}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;Stopping rain from falling on something with an umbrella or a tent is boring. What if you tried to stop rain with a laser that targeted and vaporized each incoming droplet before it could come within ten feet of the ground?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Zach Wheeler&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |It's doable in theory, but the energy required to completely vaporize a raindrop (rather than merely splattering it) is high enough that your surroundings would get dangerously hot. Targeting the droplets might be possible with adaptive optics, but it would require a complicated device. You could try firing rapidly in random directions instead, but your high-powered laser might go several hundred meters without hitting a raindrop, which would endanger your local neighborhood.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{blog|119|2014|11|13|7d late}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|2|37}}&lt;br /&gt;
|{{book|6|2024|02|20|zgBTwtg7H8E|Could you make an umbrella out of lasers?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|15|short-video=yes|2025|11|4|xA9aqKGBeOs|Could you use a laser as an umbrella?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Alternate Universe What Ifs.png|100px]]&lt;br /&gt;
|'''{{What If|120|Alternate Universe What Ifs}}'''&lt;br /&gt;
|''&amp;quot;Dispatches from a horrifying alternate universe&amp;quot;''&lt;br /&gt;
|Excerpts from ''what if?'' articles written in a world which, thankfully, is not the one we live in.&lt;br /&gt;
|{{blog|120|2014|11|20}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Frozen Rivers.png|100px]]&lt;br /&gt;
|'''{{What If|121|Frozen Rivers}}'''&lt;br /&gt;
|''&amp;quot;What would happen if all of the rivers in the US were instantly frozen in the middle of the summer?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Zoe Cutler&amp;lt;/div&amp;gt;&lt;br /&gt;
|Anywhere with rain or snowmelt would be horrifically flooded, and ice would break, then dam up rivers, forming huge lakes. Humanity would be worse for the wear, but all in all fine. Places where electricity is gotten using a hydroelectric dam may be out of power for a bit, but the flow of water would return in time.&lt;br /&gt;
|{{blog|121|2014|12|11}} 14d late)&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Lava Lamp.png|100px]]&lt;br /&gt;
|'''{{What If|122|Lava Lamp}}'''&lt;br /&gt;
|''&amp;quot;What if I made a lava lamp out of real lava? What could I use as a clear medium? How close could I stand to watch it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kathy Johnstone, 6th Grade Teacher (via a student)&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would need to use a metal or gemstone with a very high heat tolerance. You could possibly use sapphire or some sort of transparent or translucent tungsten, but the clear medium would eventually fog up and prevent you from seeing the lava. The lava would solidify after approximately a minute without some way to continuously heat it.&lt;br /&gt;
|{{blog|122|2014|12|18}}&lt;br /&gt;
|{{book|2|40}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Fairy Demographics.png|100px]]&lt;br /&gt;
|'''{{What If|123|Fairy Demographics}}'''&lt;br /&gt;
|''&amp;quot;How many fairies would fly around, if each fairy is born from the first laugh of a child and fairies were immortal?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mira Kühn, Germany&amp;lt;/div&amp;gt;&lt;br /&gt;
|If fairies appeared with the first laugh of a ''homo sapiens'', there would be around 100 billion fairies, and they, depending on their size, would probably be considered no more than a common pest. Because of their high population, however, they would probably be considered a major part of the ecosystems where they resided.&lt;br /&gt;
|{{blog|123|2015|01|01|7d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |[[File:Lunar Swimming.png|100px]]&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''{{What If|124|Lunar Swimming}}'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;What if there was a lake on the Moon? What would it be like to swim in it? Presuming that it is sheltered in a regular atmosphere, in some giant dome or something.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kim Holder&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |It would be super-cool, given that lower gravity would increase the size of splashes and the height of jumps.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{blog|124|2015|01|08}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|{{book|20|2024|12|24|aIIBBj6KR-Y|What if we put a pool on the m&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;m&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;oon?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|7|short-video=yes|2025|08|12|mtTbwHzhUiM|Petition to send a swimming pool to the moon!}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Bowling Ball 2.png|100px]]&lt;br /&gt;
|'''{{What If|125|Bowling Ball}}'''&lt;br /&gt;
|''&amp;quot;You are in a boat directly over the Mariana Trench. If you drop a 7kg bowling ball over the side, how long would it take to hit the bottom?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Doug Carter&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would take two hours and 20 minutes.&lt;br /&gt;
|{{blog|125|2015|01|15}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Stairs (What If?).png|100px]]&lt;br /&gt;
|'''{{What If|126|Stairs}}'''&lt;br /&gt;
|''&amp;quot;If you made an elevator that would go to space (like the one you mentioned in the '''{{what if|94|billion-story building}}''') and built a staircase up (assuming regulated air pressure) about how long would it take to climb to the top?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ethan Annas&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would take about half a day by motorcycle, or a week or two for a professional stair-climber. If going on foot, you'd also need to carry a huge backpack stuffed with nothing but sticks of butter in order to get your daily caloric intake (including the energy expended from climbing the stairs).&lt;br /&gt;
|{{blog|126|2015|01|22}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tug of War.png|100px]]&lt;br /&gt;
|'''{{What If|127|Tug of War}}'''&lt;br /&gt;
|''&amp;quot;Would it be possible for two teams in a tug-o-war to overcome the ultimate tensile strength of an iron rod and pull it apart? How big would the teams have to be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Markus Andersen&amp;lt;/div&amp;gt;&lt;br /&gt;
|Two teams of 25 people each would be able to rip a half-inch iron bar apart: tug-o-war is a very dangerous game, as there's so much force being exerted on the rope. The theoretical upper limit of a game is 100,000 players each, pulling a 200-mile–long rope made of graphite ribbons.&lt;br /&gt;
|{{blog|127|2015|01|28|1d early}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Zippo Phone.png|100px]]&lt;br /&gt;
|'''{{What If|128|Zippo Phone}}'''&lt;br /&gt;
|''&amp;quot;What in my pocket actually contains more energy, my Zippo or my smartphone? What would be the best way of getting the energy from one to the other? And since I am already feeling like Bilbo in this one, is there anything else in my pocket that would have unexpected amounts of stored energy?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ian Cummings&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Zippo has more energy than your phone battery, but your hand would have even more, when burned as fuel.&lt;br /&gt;
|{{blog|128|2015|02|05|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Black Hole Moon.png|100px]]&lt;br /&gt;
|'''{{What If|129|Black Hole Moon}}'''&lt;br /&gt;
|''&amp;quot;What would happen if the Moon were replaced with an equivalently-massed black hole? If it's possible, what would a lunar (&amp;quot;holar&amp;quot;?) eclipse look like?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Matt&amp;lt;/div&amp;gt;&lt;br /&gt;
|Not much would change. A black hole of the Moon's mass would be the size of a sand grain, but gravitational effects would still be more or less the same here on Earth. There would be no moonlight, which would make the Earth a bit colder and mess with some nocturnal animals. You wouldn't see any lunar eclipses due to the tiny size of the Moon. It would only cause significant problems if humans were on the moon at the time.&lt;br /&gt;
|{{blog|129|2015|02|12}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|28|2025|07|08|UQgw50GQu1A|What if the moon turned into a black hole?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Snow Removal.png|100px]]&lt;br /&gt;
|'''{{What If|130|Snow Removal}}'''&lt;br /&gt;
|''&amp;quot;I've long thought about putting a flamethrower on the front of a car to melt snow and ice before you drive across it. Now I've realized that a flamethrower is impractical, but what about a high-powered microwave emitter?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Matt Van Opens&amp;lt;/div&amp;gt;&lt;br /&gt;
|The flamethrower is more practical because microwaves don't heat ice very well. The microwave beam would require the power output of three aircraft carriers, and the flamethrower would have a gas mileage of 17 feet per gallon. If you were to drive on the highway for an hour using this method, it would burn 18,635 gallons of gasoline, worth $40,000 to $50,000.&lt;br /&gt;
|{{blog|130|2015|02|19}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|26|2025|05|27|WYf9-xfm6t8|What if you used a flamethrower as a snowblower?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Microwaves.png|100px]]&lt;br /&gt;
|'''{{What If|131|Microwaves}}'''&lt;br /&gt;
|''&amp;quot;I have had a particular problem for as long as I can remember. Any time I attempt to heat left over Chinese food in a microwave, it fails to heat completely through somewhere. Usually the center but not always and usually rice, but often it will be a small section of meat. It's baffling and has made me automatically adjust heating times to over 2 minutes. In most cases this tends to heat the bowl or plate more than the food. So I suppose the question is what is the optimal time to heat left over Chinese food in the microwave, how about an 800 watt microwave?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—James&amp;lt;/div&amp;gt;&lt;br /&gt;
|The first cause of this issue is that the wave pattern of microwaves create 'dead spots' where the food isn't heated. Secondly, melted ice causes some parts to cook while the rest is still defrosting. Use a lower power level, stir your food partway through microwaving, and let it sit for a few minutes before you eat it. This allows the heat to spread evenly.&lt;br /&gt;
|{{blog|131|2015|02|27|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hotter than Average.png|100px]]&lt;br /&gt;
|'''{{What If|132|Hotter than Average}}'''&lt;br /&gt;
|''&amp;quot;I saw a sign at a hot springs tub saying &amp;quot;Caution: Water is hotter than average&amp;quot; with water at about 39°C. Although they were presumably trying to say &amp;quot;hotter than the average swimming pool,&amp;quot; this got me wondering: What is the average temperature of all water on the Earth’s surface, and how does that temperature compare to 39°C?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Graham Ward&amp;lt;/div&amp;gt;&lt;br /&gt;
|The water average is the year-round average air temperature. By saying the water is &amp;quot;hotter than average&amp;quot;, they're implying the water in the pool is not tied to it. Give the signmakers some credit.&lt;br /&gt;
|{{blog|132|2015|03|07|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Flagpole.png|100px]]&lt;br /&gt;
|'''{{What If|133|Flagpole}}'''&lt;br /&gt;
|''&amp;quot;So, you're falling from a height above the tallest building in your town, and you don't have a parachute. But wait! Partway down the side of that skyscraper there's a flagpole sticking out, sans flag! You angle your descent and grab the pole just long enough to swing around so that when you let go you're now heading back up toward the sky. As gravity slows you and brings you to a halt, you reach the top of the skyscraper, where you reach out and pull yourself to safety. What's the likelihood this could happen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rex Ungericht&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would be impossible, even a gymnast's arms would be ripped off from the force.&lt;br /&gt;
|{{blog|133|2015|03|17|3d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Space Burial.png|100px]]&lt;br /&gt;
|'''{{What If|134|Space Burial}}'''&lt;br /&gt;
|''&amp;quot;I've often joked I'd like to have my remains put into orbit. Not in a &amp;quot;scatter my ashes&amp;quot; sense, but, like, &amp;quot;throw my naked corpse out the airlock&amp;quot; sense. Honestly, my main motivation is to baffle someone in the distant future, but it's an interesting scientific question: what would happen to my body in orbit over the course of years, decades or centuries?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tim in Fremont&amp;lt;/div&amp;gt;&lt;br /&gt;
|Even before you were launched, your body would dry out very quickly. In low orbit, your body would fall to Earth and be burned from atmospheric re-entry. In a higher orbit, it would be destroyed from space debris. In high orbit, you could last for a few centuries. If your body was ever found it would mean there are a lot of people travelling around: making bodies pretty common.&lt;br /&gt;
|{{blog|134|2015|03|28|4d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Digging Downward.png|100px]]&lt;br /&gt;
|'''{{What If|135|Digging Downward}}'''&lt;br /&gt;
|''&amp;quot;What would happen if I dug straight down, at a speed of 1 foot per second? What would kill me first?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jack Kaunis&amp;lt;/div&amp;gt;&lt;br /&gt;
|To remove all that soil, the energy required would heat up the surrounding beyond fatal levels pretty quickly. Immune to the heat, you could survive for one to two hours, as oxygen becomes toxic at depths higher than 5 kilometers.&lt;br /&gt;
|{{blog|135|2015|04|05|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|38|2026|4|11|https://r7B0MzvwDcA|What if you kept digging downward?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Spiders vs. the Sun.png|100px]]&lt;br /&gt;
|'''{{What If|136|Spiders vs. the Sun}}'''&lt;br /&gt;
|''&amp;quot;Which has a greater gravitational pull on me: the Sun, or spiders? Granted, the Sun is much bigger, but it is also much further away, and as I learned in high school physics, the gravitational force is proportional to the square of the distance.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Marina Fleming&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Sun, by 13 orders of magnitude (the Sun is very big). But spiders are a lot more scary. &lt;br /&gt;
|{{blog|136|2015|04|12}}&lt;br /&gt;
|{{book|2|44}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:New Horizons.png|100px]]&lt;br /&gt;
|'''{{What If|137|New Horizons}}'''&lt;br /&gt;
|''&amp;quot;What if New Horizons hits my car?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Robin Sheat&amp;lt;/div&amp;gt;&lt;br /&gt;
| ''Note: This question was created before ''New Horizons'' passed by Pluto.'' This is extremely unlikely.  The ''New Horizons'' probe is quite large, but is considered small for a spacecraft. If it crashed into your car, there would be serious consequences. However, if it did, NASA would be on the hook to replace your car, along with most of your neighbourhood, and clean up the radioactive mess. &lt;br /&gt;
|{{blog|137|2015|07|14|2m 25d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jupiter Submarine.png|100px]]&lt;br /&gt;
|'''{{What If|138|Jupiter Submarine}}'''&lt;br /&gt;
|''&amp;quot;What if you released a submarine into Jupiter's atmosphere? Would it eventually reach a point where it would float? Could it navigate?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—KTH&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. Before it got to the point where it could float, the submarine would be crushed by the high pressure and melted by the high temperature. This is because gasses behave differently to fluids: the point where things can float is at a much higher pressure. &lt;br /&gt;
|{{blog|138|2015|07|28|7d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Jupiter Descending.png|100px]]&lt;br /&gt;
|'''{{What If|139|Jupiter Descending}}'''&lt;br /&gt;
|''&amp;quot;If you did '''{{what if|138|fall into Jupiter's atmosphere in a submarine}}''', what would it actually look like? What would you see before you melted or burned up?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ada Munroe&amp;lt;/div&amp;gt;&lt;br /&gt;
|There's not a whole lot to go on here; we have some data and educated guesses about what's going inside these gas giants, but we haven't sent any probes equipped with operational cameras into a gas giant so we don't really know. A book by Michael Carroll suggests that there is a layer between the upper ammonia haze and lower ammonium hydrosulfide clouds, that could provide some good views, and if so, the view would be similar to Earth's atmosphere in that clouds and fellow submarines would fade into blue.&lt;br /&gt;
|{{blog|139|2015|08|04}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Proton Earth, Electron Moon.png|100px]]&lt;br /&gt;
|'''{{What If|140|Proton Earth, Electron Moon}}'''&lt;br /&gt;
|''&amp;quot;What if the Earth were made entirely of protons, and the Moon were made entirely of electrons?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Noah Williams&amp;lt;/div&amp;gt;&lt;br /&gt;
|There would be so much energy packed into one space that it would create a black hole as massive as the observable universe that would expand outwards at the speed of light. Because of the charge from the electrons, it would be a {{w|naked singularity}}, a black hole with infinite mass that allows light to escape.&lt;br /&gt;
|{{blog|140|2015|09|18|1m 7d late}}&lt;br /&gt;
|{{book|2|48}}&lt;br /&gt;
|{{book|30|2025|9|9|DiWFXv9N0Vs|What if the Moon were made entirely of electrons?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Sunbeam.png|100px]]&lt;br /&gt;
|'''{{What If|141|Sunbeam}}'''&lt;br /&gt;
|''&amp;quot;What if all of the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un's output of visible light were bundled up into a laser-like beam that had a diameter of around 1m once it reaches Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Max Schäfer&amp;lt;/div&amp;gt;&lt;br /&gt;
|According to Randall, parts of the atmosphere would be heated to millions of degrees, and the bubble of destruction would wrap around the Earth before it even reached the other side. The light reflected off the Moon would be hot enough to burn you to death. If the beam couldn't track the Earth, part of it would survive as the Earth orbited out of the way. If the beam reached another planetary system, it could heat up the surface of some distant exoplanets.  However, this conclusion depends on the precise nature of the &amp;quot;bundling up&amp;quot;.  If this &amp;quot;bundling&amp;quot; is accomplished via passive optics such as lenses and mirrors, then the temperature (and geometry) of the incoming beam will be restricted according to all the optics principles described in &amp;quot;Fire from Moonlight&amp;quot;, and under no circumstances would any part of Earth's atmosphere or surface exceed 5000 K, due to the laws of thermodynamics.  If, however, the &amp;quot;bundling&amp;quot; consists of an &amp;quot;active&amp;quot; procedure of generating electricity via PV panels, and then powering actual laser emitters with it (not just &amp;quot;laser-like&amp;quot;) - which doesn't sound like Max's conception - then yes, the narrow beam of essentially &amp;quot;infinite&amp;quot; temperature and consequent destruction that Randall describes could indeed occur.   &lt;br /&gt;
|{{blog|141|2016|01|12|3m 18d late}}&lt;br /&gt;
|&lt;br /&gt;
|{{book|33|2025|11|11|qu8nx1qUwEU|What if ALL the sun’s power was focused in one place?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Space Jetta.png|100px]]&lt;br /&gt;
|'''{{What If|142|Space Jetta}}'''&lt;br /&gt;
|''&amp;quot;What if I tried to re-enter the atmosphere in my car? (a 2000 VW Jetta TDI). Would it do more environmental damage than it is already apparently doing?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Casey Berg&amp;lt;/div&amp;gt;&lt;br /&gt;
|The effect of the car's re-entry itself on the environment is going to be small, verging on negligible.  The effect of ceasing its usage to burn hydrocarbon fuel for the remainder of the car's life is likely significantly greater than the re-entry, but in practice also negligible.  The main non-negligible environmental effect might be from the launch mechanism that was used to get into orbit in the first place, although even this effect, at current rocket launch rates, is still tiny compared to global air travel or ground-based automobile usage.&lt;br /&gt;
|{{blog|142|2016|01|20|1d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Europa Water Siphon.png|100px]]&lt;br /&gt;
|'''{{What If|143|Europa Water Siphon}}'''&lt;br /&gt;
|''&amp;quot;What if you built a siphon from the oceans on Europa to Earth? Would it flow once it's set up? (We have an idea for selling bottled Europa water.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—A group of Google Search SREs&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, at least not with a siphon.  Siphons can only pull water upward to a height where the air pressure feeding water into one side of the siphon equals the weight of the water falling out the other side (creating negative pressure, trying to form a vacuum, which nature abhors).  This effect requires a gravitational field and an atmosphere, but cannot be used to pump water above the local atmosphere, and hence out of the local gravity well, under any circumstances - including on Europa.&lt;br /&gt;
|{{blog|143|2016|01|26|1d early}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Saliva Pool.png|100px]]&lt;br /&gt;
|'''{{What If|144|Saliva Pool}}'''&lt;br /&gt;
|''&amp;quot;How long would it take for a single person to fill up an entire swimming pool with their own saliva?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mary Griffin, 9th grade&amp;lt;/div&amp;gt;&lt;br /&gt;
|For an Olympic pool, it would take you 8,345 years. In order to finish by the present day, you'd need to start during the invention of agriculture.&lt;br /&gt;
|{{blog|144|2016|02|02}}&lt;br /&gt;
|{{book|2|53}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Fire From Moonlight.png|100px]]&lt;br /&gt;
|'''{{What If|145|Fire From Moonlight}}'''&lt;br /&gt;
|''&amp;quot;Can you use a magnifying glass and moonlight to light a fire?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rogier Spoor&amp;lt;/div&amp;gt;&lt;br /&gt;
|Unfortunately, it is not possible to summarize Randall's article succinctly, because most of his explanation is completely irrelevant to the question.  Randall's answer is effectively &amp;quot;No, and here are a set of correct principles of optics that do not support my claim.&amp;quot;  The correct answer is &amp;quot;Yes, just like it is possible to start a fire with sunlight reflected off anything else, because the temperature/wavelength/energy of light does not change (substantially) when it is reflected, and the temperature of visible sunlight is around 5000 to 6000 K.&amp;quot;  (The obvious assumption about the intent behind Rogier's question is that &amp;quot;moonlight&amp;quot; refers to the reflected sunlight, and not the Moon's own surface emission of longwave infrared radiation with a temperature of 300 - 400 K, which we can't see - but this should really be clarified by Rogier.)&lt;br /&gt;
|{{blog|145|2016|02|09}}&lt;br /&gt;
|{{book|2|51}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Stop Jupiter.png|100px]]&lt;br /&gt;
|'''{{What If|146|Stop Jupiter}}'''&lt;br /&gt;
|''&amp;quot;I understand that the ''New Horizons'' craft used gravity assist from Jupiter to increase its speed on the way to Pluto. I also understand that by doing this, Jupiter slowed down very slightly. How many flyby runs would it take to stop Jupiter completely?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dillon&amp;lt;/div&amp;gt;&lt;br /&gt;
|Even if we were to throw Earth at Jupiter, this could never happen, because Jupiter is much more massive than Earth. Gravity assists are like bouncing a tennis ball off a train, and to stop the train, you'd need an awfully large tennis ball. &amp;lt;!-- or, as per https://what-if.xkcd.com/18, a *lot* of them... ;) --&amp;gt;&lt;br /&gt;
|{{blog|146|2016|02|16}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Niagara Straw.png|100px]]&lt;br /&gt;
|'''{{What If|147|Niagara Straw}}'''&lt;br /&gt;
|''&amp;quot;What would happen if one tried to funnel Niagara Falls through a straw?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—David Gwizdala&amp;lt;/div&amp;gt;&lt;br /&gt;
|In order to funnel Niagara Falls through a straw, you'd need to accelerate the water to one-quarter light speed, and no machine exists that's capable of doing that. If you tried, at 1300 m/s, the water would reach the maximum speed it can be accelerated to by pressure, and the flow would become choked if the momentum of the water hasn't already broken the acceleration device by that point. You would also get in a lot of trouble with the authorities for messing with the flow rate of Niagara Falls, since that's forbidden by a US/Canada treaty. If you somehow could actually do it, the resulting waterjet would have the power output of a small star, and would boil away the oceans and wipe out all life on Earth.&lt;br /&gt;
|{{blog|147|2016|02|26}} 3d late)&lt;br /&gt;
|{{book|2|55}}&lt;br /&gt;
|{{book|27|2025|06|17|pfbzrrcQZjs|What if you funneled Niagara Falls through a straw?}}&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Eat the Sun.png|100px]]&lt;br /&gt;
|'''{{What If|148|Eat the Sun}}'''&lt;br /&gt;
|''&amp;quot;What percentage of the Sun's heat (per day) does the population of Earth eat in calories per year? What changes could be made to our diets for the amount of calories to equal the energy of the Sun?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—James Mitchell&amp;lt;/div&amp;gt;&lt;br /&gt;
|0.000000000065%. This is such a ridiculously small portion of the Sun's heat exhaust, that we cannot increase our personal calory intake enough to compensate. Instead we need to add more persons. A lot of them in fact. So many that we need to spread them - and the food that they eat - out throughout not just our galaxy but multiple galaxies. Otherwise, the food alone would be massive enough to turn into a black hole.&lt;br /&gt;
|{{blog|148|2016|03|12|8d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Pizza Bird.png|100px]]&lt;br /&gt;
|'''{{What If|149|Pizza Bird}}'''&lt;br /&gt;
|''&amp;quot;My boyfriend recently took a flight on a plane with wifi, and while he was up there, wistfully asked if I could send him a pizza. I jokingly sent him a photo of a parrot holding a pizza slice in its beak. Obviously, my boyfriend had to go without pizza until he landed at JFK. But this raised the question: could a bird deliver a standard 20&amp;quot; New York-style cheese pizza in a box? And if so, what kind of bird would it take?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tina Nguyen&amp;lt;/div&amp;gt;&lt;br /&gt;
|After careful analysis of wing types, relative weights, and pizza grabbing mechanisms, it is deduced that even the most compatible bird - the eagle - would be hard-pressed to deliver a pizza to an airliner, the relative speed being the largest hurdle. However, delivery to a house - where the relative speed is not so much of a problem - would be possible, though the pizza might be found a slice or two short.&lt;br /&gt;
|{{blog|149|2016|03|26|7d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Tatooine Rainbow.png|100px]]&lt;br /&gt;
|'''{{What If|150|Tatooine Rainbow}}'''&lt;br /&gt;
|''&amp;quot;Since rainbows are caused by the refraction of the sunlight by tiny droplets of rainwater, what would rainbow look like on Earth if we had two suns like Tatooine?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Raga&amp;lt;/div&amp;gt;&lt;br /&gt;
|Each sun is the source of not just one rainbow, but a whole series of rainbows of diminishing intensity; the elusive 5th order rainbow had apparently been pictured at the time of publication. A planet with two suns would consequently have two series of rainbows. A solar system arranged like Tatooine would have to be circumbinary, which limits the separation of the two rainbow series to about 20 degrees. As the main rainbow is 84 degrees across, this leads to the conclusion that the rainbows would always be overlapping.&lt;br /&gt;
|{{blog|150|2016|05|23|1m 21d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Sun Bug.png|100px]]&lt;br /&gt;
|'''{{What If|151|Sun Bug}}'''&lt;br /&gt;
|''&amp;quot;How many fireflies would it take to match the brightness of the Sun?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Luke Doty&amp;lt;/div&amp;gt;&lt;br /&gt;
|30 nonillion fireflies (3 with 31 zeroes after it), which is surprisingly small on the astronomical scale. Counterintuitively, it turns out a single firefly actually glows brighter than an equivalent mass of Sun. However, there are logistical problems with organizing that many fireflies, as you need to arrange them so that they're not blocking each others' lights. You can try to simplify it by just using one very large firefly, but it would be larger than the entire Solar System and immediately collapse into the biggest black hole in the universe.&lt;br /&gt;
|{{blog|151|2016|07|21|1m 23d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Flood Death Valley.png|100px]]&lt;br /&gt;
|'''{{What If|152|Flood Death Valley}}'''&lt;br /&gt;
|''&amp;quot;Since Death Valley is below sea level could we dig a hole to the ocean and fill it up with water?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nick Traeden&amp;lt;/div&amp;gt;&lt;br /&gt;
|Basically, yes. But there is a lot of digging, and the end result would be quite similar to the Salton Sea which is characterized as &amp;quot;gross&amp;quot; (technical term). Also, heat world records would likely move elsewhere.&lt;br /&gt;
|{{blog|152|2016|10|18|2m 21d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|''The thumbnail for this blog article wasn't archived.''&lt;br /&gt;
|'''&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://web.archive.org/web/20161205191559/http://what-if.xkcd.com/153 Peptides]&amp;lt;/span&amp;gt;'''&lt;br /&gt;
|''&amp;quot;What is the longest English word you can spell using the one letter abbreviations of the 20 genetic amino acids? What about the three letter abbreviations? What would the resultant peptides look like?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kira (Lysine-Isoleucine-Arginine-Alanine) Guth&amp;lt;/div&amp;gt;&lt;br /&gt;
|For any peptides, 19 letters is the highest possible, that being the word &amp;quot;interdepartmentally&amp;quot;. For naturally existing peptides in the human body, 8 letters is the highest known. Examples of 8 letters are: GRISETTE, DATELESS, REVERSAL.&lt;br /&gt;
|{{blog|153|2016|12|05|notAvailable=Draft published by mistake and deleted. [[what if? (blog)#Peptides incident|Learn why]].}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hide the Atmosphere.png|100px]]&lt;br /&gt;
|'''{{What If|153|Hide the Atmosphere}}'''&lt;br /&gt;
|''&amp;quot;Earth’s atmosphere is really thin compared to the radius of the Earth. How big a hole do I need to dig before people suffocate?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sam Burke&amp;lt;/div&amp;gt;&lt;br /&gt;
|The hole would need to be very big. Under the right circumstances, a five-mile hole over the entire state of Texas might suffice.&lt;br /&gt;
|{{blog|153|2017|01|30|3m 5d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Coast-to-Coast Coasting.png|100px]]&lt;br /&gt;
|'''{{What If|154|Coast-to-Coast Coasting}}'''&lt;br /&gt;
|''&amp;quot;What if the entire continental US was on a decreasing slope from West to East. How steep would the slope have to be to sustain the momentum needed to ride a bicycle the entire distance without pedaling?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brandon Rooks&amp;lt;/div&amp;gt;&lt;br /&gt;
|The ramp would need to be five miles high (eight kilometres) to make this possible, and that would be at a speed slower than walking. You would also need oxygen for the first third of the way down.&lt;br /&gt;
|{{blog|154|2017|02|08|9d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Toaster vs. Freezer.png|100px]]&lt;br /&gt;
|'''{{What If|155|Toaster vs. Freezer}}'''&lt;br /&gt;
|''&amp;quot;Would a toaster still work in a freezer?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—&amp;lt;span class=&amp;quot;plainlinks&amp;quot;&amp;gt;[https://maximumfun.org/podcasts/my-brother-my-brother-and-me/ '''My Brother, My Brother, and Me'''], [https://maximumfun.org/episodes/my-brother-my-brother-and-me/mbmbam-343-sauce-doctors-blessing/ '''Episode 343'''], discussing a &amp;lt;/span&amp;gt;Yahoo Answers question&amp;lt;/div&amp;gt;&lt;br /&gt;
|As a superior being, the Toaster casts its gaze upon lowly humans and hrumphs at their bickering about such measly temperature variations as 40C. The Toaster regularly reaches 600C and thus, to it - much like to the Fire - everything else is cold, be it room temperature or freezer temperature. Winnipeg locals have it easy and can try this for themselves, as long as they can stave off the wolves.&lt;br /&gt;
|{{blog|155|2017|02|28|13d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Electrofishing for Whales.png|100px]]&lt;br /&gt;
|'''{{What If|156|Electrofishing for Whales}}'''&lt;br /&gt;
|''&amp;quot;I used to work on a fisheries crew where we would use an electro-fisher backpack to momentarily stun small fish (30 - 100 mm length) so we could scoop them up with nets to identify and measure them. The larger fish tended to be stunned for slightly longer because of their larger surface area but I don't imagine this relationship would be maintained for very large animals. Could you electrofish for a blue whale? At what voltage would you have have to set the e-fisher?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Madeline Cooper&amp;lt;/div&amp;gt;&lt;br /&gt;
|Electrofishing has long-term effects on fish and especially dolphins. Larger animals, especially mammals, are likely to die rather than just get stunned. But it is also harder to get any effect in saltwater, which explains why electrofishing is mainly done in rivers and lakes, compared to fresh water. This means it wouldn't work on blue whales.&lt;br /&gt;
|{{blog|156|2017|03|09|2d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Earth-Moon Fire Pole.png|100px]]&lt;br /&gt;
|'''{{What If|157|Earth-Moon Fire Pole}}'''&lt;br /&gt;
|''&amp;quot;My son (5y) asked me today: If there were a kind of a fireman's pole from the Moon down to the Earth, how long would it take to slide all the way from the Moon to the Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ramon Schönborn, Germany&amp;lt;/div&amp;gt;&lt;br /&gt;
|This set-up would face many challenges, but these would be the different domains of the slowest extreme sport: climbing out of the Moon's gravity, accelerating through the middle transfer phase, and then decelerating to your supersonic arrival on Earth.&lt;br /&gt;
|{{blog|157|2018|03|21|1y 2m 5d late}}&lt;br /&gt;
|{{book|2|58}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hot Banana.png|100px]]&lt;br /&gt;
|'''{{What If|158|Hot Banana}}'''&lt;br /&gt;
|''&amp;quot;I heard that bananas are radioactive. If they are radioactive, then they radiate energy. How many bananas would you need to power a house?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kang Ji&amp;lt;/div&amp;gt;&lt;br /&gt;
|Bananas are not very radioactive, so it would take an absurdly large number, 300 quadrillion, which is enough to bury New York City in a skyscraper-tall pile of bananas. It would be much more energy efficient to simply burn the bananas as fuel, so that you could power a house with 10 bunches a day (or New York City with a pile the size of Liberty Island a week). The fact that you can do that would also make the huge pile of bananas needed to generate power with radioactivity a huge fire (and explosion) hazard, so just burning the bananas is safer as well.&lt;br /&gt;
|{{blog|158|2022|05|04|3y 11m 7d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Hailstones.png|100px]]&lt;br /&gt;
|'''{{What If|159|Hailstones}}'''&lt;br /&gt;
|''&amp;quot;My 4 year old son and I were wondering about soccer ball sized hail today. How much damage would a hail storm with size 5 soccer ball sized hail do?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michael Grill&amp;lt;/div&amp;gt;&lt;br /&gt;
|Hailstones get increasingly dangerous as they get larger, as their increased weight cancels their air resistance, allowing them to reach a higher terminal velocity while still carrying all that mass. Regular hailstones are too slow and light to be lethal, but a soccer ball-sized hailstone would hit at around 140 mph, capable of punching straight through the roof of a car or building. Fortunately, no hailstone on record has ever been that big, although storms can on occasion produce hailstones large enough to damage cars, and in rare cases even kill people.&lt;br /&gt;
|{{blog|159|2022|07|05|1m 30d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|''This blog article doesn't have a thumbnail.''&lt;br /&gt;
|'''{{What If|160|Transatlantic Car Rental}}'''&lt;br /&gt;
|''&amp;quot;My daughter recently received her driver's permit in the US, and aspires to visit mainland Europe someday. She has learned enough about the rules of the road to know never to drive into the ocean; however, she jokingly suggested that given a sufficient quantity of rental cars, she could eventually get to Europe by driving east repeatedly. The question is, how many vehicles would it take to build a car-bridge across the Atlantic?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Eric Munson&amp;lt;/div&amp;gt;&lt;br /&gt;
|You'd need approximately a billion plus a trillion cars to pull this off. Also, in addition to destroying global ocean circulation and creating an illegal naval blockade, this is definitely a violation of her rental car agreement. Also, organizing a fleet of that many rental cars would be difficult.&lt;br /&gt;
|{{blog|160|2022|09|06|1m 26d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|''This blog article doesn't have a thumbnail.''&lt;br /&gt;
|'''{{What If|161|Star Ownership}}'''&lt;br /&gt;
|''&amp;quot;If every country's airspace extended up forever, which country would own the largest percentage of the galaxy at any given time?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Reuven Lazarus&amp;lt;/div&amp;gt;&lt;br /&gt;
|Given that the South pole (of Earth) points towards the Milky way centre, most of the galaxy will wind up in the air-space (space-space?) of countries of the southern hemisphere. However, due to Earth's rotation around its axis, the nadir of the galaxy core (on Earth) will constantly shift. Given that Australia is the largest of the southern countries, Australia will most often be the Rulers of the Universe. Northern hemisphere jurisdictions, such as New Jersey, will have to contend with some pretty nifty black holes and possibly murderous exoplanets.&lt;br /&gt;
|{{blog|161|2022|11|01|1m 19d late}}&lt;br /&gt;
|{{book|2|24}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|''This blog article doesn't have a thumbnail.''&lt;br /&gt;
|'''{{What If|162|Comet Ice}}'''&lt;br /&gt;
|''&amp;quot;Could I cool down the Earth by capturing a comet and dropping it in the ocean, like an ice cube in a glass of water?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Daniel Becker&amp;lt;/div&amp;gt;&lt;br /&gt;
|Only if you had a magical sky-crane that could cancel the comet's initial kinetic energy during capture, then slowly lower it to the ground without converting all of its gravitational potential energy back into more kinetic energy.  Converting that potential energy into electricity to substitute for existing fossil fuel power plants would reduce CO2 emissions, but the effect of that substitution on global temperatures is uncertain and likely negligible.  Meanwhile, the amount of ice in a comet that could be used to cool the oceans directly is also less than one would expect from its size, since comets are not solid.  Overall, the answer is effectively &amp;quot;no&amp;quot;.&lt;br /&gt;
|{{blog|162|2022|12|06|29d late}}&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''Global Windstorm'''&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |''&amp;quot;What would happen if the Earth and all terrestrial objects suddenly stopped spinning, but the atmosphere retained its velocity?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Andrew Brown&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |Everyone would die. Then, the wind would destroy everything, with gusts blowing more than 1,000 mph (1,600 km/h) around the equator, killing 85% of the world population. The highest winds would only last a few minutes, but that would be enough to vaporise most human structures. Bunkers would be useless, because, even if your bunker were stuck to the ground hard, others would not be as strong and would hit yours at 1,000 mph. However, most of the researchers at the {{w|Amundsen–Scott South Pole Station}} would be completely fine. The wind blast would then become a heat blast with scorching temperatures and create global thunderstorms in moist areas. After a while, the Earth would gradually start to regain its rotational velocity thanks to the Moon.&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{book|1|1}}&lt;br /&gt;
|{{book|4|2024|01|09|gp5G1QG6cXc|What if Earth suddenly stopped spinning?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|12|short-video=yes|2025|10|07|19gun1mffWs|What would happen to the population if the Earth suddenly stopped spinning?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|13|short-video=yes|2025|10|14|ERieN5pee7A|What would happen to the Earth if it suddenly stopped spinning?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #1'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;Would it be possible to get your teeth to such a cold temperature that they would shatter upon drinking a hot cup of coffee?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Shelby Hebert&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|4}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;How many houses are burned down in the United States every year? What would be the easiest way to increase that number by a significant amount (say, at least 15%)?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''New York–Style Time Machine'''&lt;br /&gt;
|''&amp;quot;I assume when you travel back in time you end up at the same spot on the Earth’s surface. At least, that’s how it worked in the Back to the Future movies. If so, what would it be like if you traveled back in time, starting in Times Square, New York, 1000 years? 10,000 years? 100,000 years? 1,000,000 years? 1,000,000,000 years? What about foward in time 1,000,000 years?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mark Dettling&amp;lt;/div&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*1,000 years back, you'd see many chestnut trees, wolves, and passenger pigeons.&lt;br /&gt;
*10,000 years back, the ground would be mostly bedrock, with large chunks of ice and dropped boulders, called glacial erratics.&lt;br /&gt;
*100,000 years back, several islands were pushed upwards by the ice. You would see many now-extinct species, such as Canis dirus, Smilodon fatalis, and Arctodus.&lt;br /&gt;
*1,000,000 years back, you'd see relatives of hyenas called Chasmaporthetes.&lt;br /&gt;
*1,000,000,000 years back would be no plants or animals, only single-celled organisms in the ocean.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|5}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Periodic Wall of the Elements'''&lt;br /&gt;
|''&amp;quot;What would happen if you made a periodic table out of cube-shaped bricks, where each brick was made of the corresponding element?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Andy Connolly&amp;lt;/div&amp;gt;&lt;br /&gt;
|The top two rows wouldn't be too dangerous to build if you can deal with the fluorine setting almost everything else on fire without setting yourself on fire or exposing yourself to corrosive reaction products like hydrofluoric acid, but the rest of the periodic table would seriously injure or kill you. In the third row, the phosphorus, sulfur and chlorine would also catch on fire and make toxic gas. In the fourth row, the potassium would add to the ongoing fire, which would ignite the arsenic making highly toxic arsenic trioxide. Bromine and selenium would also contribute to the toxic compounds produced in the fire, while also making it smell horrible. The fifth row would be similar to the fourth while also including technetium, which is moderately radioactive. In the sixth row, elements with short half-lives would destroy the building you were in as well as causing nuclear fallout to fall nearby. Past the sixth row, the entire city you were in would be destroyed in a nuclear explosion, and the fallout would contaminate the Earth with thousands of times more radioactivity than the Chernobyl disaster.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|8}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #2'''&lt;br /&gt;
|''&amp;quot;Would dumping anti-matter into the Chernobyl reactor when it was melting down stop the meltdown?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—AJ&amp;lt;/div&amp;gt;&lt;br /&gt;
| No, it would not. According to Randall's answer comic, this idea deserves a &amp;quot;For God's Sake, What Were You Thinking?&amp;quot; Award.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|12}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;Is it possible to cry so much you dehydrate yourself?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Karl Wildermuth&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''The Last Human Light'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;If every human somehow simply disappeared from the face of the Earth, how long would it be before the last artificial light source would go out?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alan&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |Anything that depends on the power grid will go out in a few hours after the fossil fuel plants stop getting supplied with fuel because the sudden reduction in working power plants will cause cascade failures leading to a blackout without human guidance. Lights powered by diesel generators will stay on until the fuel runs out, probably in a matter of months at most. Lights powered by geothermal plants, wind turbines and hydroelectric dams will run until their power source has a mechanical failure, possibly for several years. Battery powered lights will go out in a decade or two at most due to self discharge of the batteries. Lights powered by nuclear reactors will go out fairly quickly because the SCRAM would get triggered by the loss of external power. The Curiosity rover would have lights that could theoretically work for over a century if only someone was there to turn them on. Solar powered emergency call boxes have lights that would stay on until the electronics degrade, possibly as long as a century. Radioactive waste that was mixed with glass to facilitate shielding, transportation and storage will glow for centuries due to Cherenkov radiation.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|13}}&lt;br /&gt;
|{{book|11|2024|05|28|8fADp43wJwU|If all humans died, when would the last light go out?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|5|short-video=yes|2025|07|29|kNry0bf7eC0|Could this be the last surviving human light source?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #3'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;Given humanity’s current knowledge and capabilities, is it possible to build a new star?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jeff Gordon&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot;{{book|1|16}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What sort of logistic anomalies would you encounter in trying to raise an army of apes?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kevin&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;If people had wheels and could fly, how would we differentiate them from airplanes?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Orbital Submarine'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;How long would a nuclear submarine last in orbit?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jason Lathbury&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |Submarines are, unsurprisingly, very good at being watertight. This would mean that, mostly, air would stay within the submarine for a time. However, a nuclear submarine is able to stay under for so long because it can convert seawater into oxygen. With no seawater, no oxygen is made, which means that eventually they will run out of air. Getting back into the atmosphere would be tricky. Firing all of a submarine's missiles backwards (i.e. towards the ship) with their detonators removed would produce just enough force for the sub to deorbit and reenter the atmosphere. At that point, the heat and forces of reentry would rip the submarine apart, similar to the {{w|Space Shuttle Challenger disaster}}. &lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|17}}&lt;br /&gt;
|{{book|7|2024|03|05|EsUBRd1O2dU|Would a Submarine Work as a Spaceship?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|4|short-video=yes|2025|07|22|sFTRRdHqZIQ|Why Space Is Actually Warm!}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #4'''&lt;br /&gt;
|''&amp;quot;Would it be possible to stop a volcano eruption by placing a bomb (thermobaric or nuclear) underneath the surface?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tomasz Gruszka&amp;lt;/div&amp;gt;&lt;br /&gt;
| No, it would not.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|20}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;A friend of mine is convinced that there is sound in space. There isn’t, right?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Aaron Smith&amp;lt;/div&amp;gt;&lt;br /&gt;
| You are correct. There isn't.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Human Computer'''&lt;br /&gt;
|''&amp;quot;How much computing power could we achieve if the entire world population stopped whatever we are doing right now and started doing calculations? How would it compare to a modern-day computer or smartphone?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mateusz Knorps&amp;lt;/div&amp;gt;&lt;br /&gt;
|The combined computing power of all devices surpassed the power of all humans in 1977.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|21}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Common Cold'''&lt;br /&gt;
|''&amp;quot;If everyone on the planet stayed away from each other for a couple of weeks, wouldn't the common cold virus be wiped out?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sarah Ewart&amp;lt;/div&amp;gt;&lt;br /&gt;
|In theory, this would work. In practice, it wouldn't for a simple reason: Some people have compromised immune systems. These people's bodies can be a safe haven for rhinoviruses, which would mean the common cold, would quickly spread through the population again. The world's food supplies would also be an issue, as people may need to eat foods not designed to be eaten directly (i.e. raw grain). Many systems would shut down as people wouldn't be there to maintain them. Many millions would be stranded in places like Antarctica or the Sahara Desert, which would lead to many deaths. In effect, the scenario would be similar to 'Everybody Jump'.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|25}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #5'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot; If global warming puts us in danger through temperature rise, and super-volcanos put us into danger of global cooling, shouldn’t those two dangers balance each other out?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Florian Seidl-Schulz&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|27}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;How fast would a human have to run in order to be cut in half at the bellybutton by a cheese-cutting wire?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jon Merrill&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''No More DNA'''&lt;br /&gt;
|''&amp;quot;This may be a bit gruesome, but... if someone's DNA suddenly vanished, how long would that person last?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nina Charest&amp;lt;/div&amp;gt;&lt;br /&gt;
| At the instant of vanishing, you would suddenly lose a third of a pound and your muscles might twitch from the change in mass. You would then suffer similar symptoms to those caused by toxins or radiation that severely damage DNA. You would probably have nausea and diarrhea. You would probably develop anemia. Your hair would probably fall out. Your immune system would collapse. You could live for several hours or days before succumbing to infection or system-wide organ failure. &lt;br /&gt;
|&lt;br /&gt;
|{{book|1|29}}&lt;br /&gt;
|{{book|35|2026|01|20|s3oLIDaElaE|How long would you survive with no DNA?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #6'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What is the total nutritional value (calories, fat, vitamins, minerals, etc.) of the average human body?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Justin Risner&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|31}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What temperature would a chainsaw (or other cutting implement) need to be at to instantly cauterize any injuries inflicted with it?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sylvia Gallagher&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Flyover States'''&lt;br /&gt;
|''&amp;quot;Which US state is actually flown over the most?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jesse Ruderman&amp;lt;/div&amp;gt;&lt;br /&gt;
|Somewhat surprisingly, Virginia, due to a large amount of flights from Toronto to the Caribbean/South America. Despite it having many major airports, including most of those serving DC, there are also many major airports which have routes passing over Virginia, such as KATL and KJFK. At the time of writing, Delaware had the greatest ratio of flights over it to flights to it because it did not have an active commercial airport (Since New Castle Airport resumed commercial service in 2013, this has probably changed.). Hawai'i is the least flown over state, followed by California. Hawai'i is a group of small islands in the middle of a big ocean, and flights that would otherwise fly over California are encouraged to land there instead by post-9/11 rules that discourage carrying excessive fuel. Strangely, Hawai'i is the most flown under state because the part of Botswana on the opposite side of the Earth from Hawai'i has more flights pass over it than any of the various parts of the Indian Ocean opposite the other states.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|33}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #7'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;In Thor the main character is at one point spinning his hammer so fast that he creates a strong tornado. Would this be possible in real life?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Davor&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot;{{book|1|36}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;If you saved a whole life’s worth of kissing and used all that suction power on one single kiss, how much suction force would that single kiss have?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jonatan Lindström&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;How many nuclear missiles would have to be launched at the United States to turn it into a complete wasteland?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Self-Fertilization'''&lt;br /&gt;
|''&amp;quot;I read about some researchers who were trying to produce sperm from bone marrow stem cells. If a woman were to have sperm cells made from her own stem cells and impregnate herself, what would be her relationship to her daughter?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—R Scott LaMorte&amp;lt;/div&amp;gt;&lt;br /&gt;
| As there is no father to contribute a Y chromosome, the child is guaranteed to be a girl. As the child is coming from, effectively, two parents with identical DNA, there would be many genetic defects, similar to being as inbred as the result of three generations of consecutive sibling marriages. This is, as demonstrated by various royal families, a very bad idea. It would be relatively likely for any given human self-fertilization to have a non-viable result.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|37}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #8'''&lt;br /&gt;
|''&amp;quot;A toxin blocks the ability of the nephron tubule reabsorption but does not affect filtration. What are the possible short-term effects of this toxin?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mary&amp;lt;/div&amp;gt;&lt;br /&gt;
| Randall's answer comic indicates that since he's a cartoonist not a doctor, he is unqualified to answer this question.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|40}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;If a Venus fly trap could eat a person, about how long would it take for the human to be fully de-juiced and absorbed?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jonathan Wang&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Lost Immortals'''&lt;br /&gt;
|''&amp;quot;If two immortal people were placed on opposite sides of an uninhabited Earthlike planet, how long would it take them to find each other? 100,000 years? 1,000,000 years? 100,000,000,000 years?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ethan Lake&amp;lt;/div&amp;gt;&lt;br /&gt;
|Depending on strategy and terrain, a few years to a few decades. Based on the communication methods of ants, Randall suggests that the immortals leave trails of markers of when they were there and which way they went as they travel and if they find the other immortal's markers follow them as fast as possible.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|42}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #9'''&lt;br /&gt;
|''&amp;quot;Could you survive a tidal wave by submerging yourself in an in-ground pool?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Chris Muska&amp;lt;/div&amp;gt;&lt;br /&gt;
| No, that would be a very bad idea.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|46}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you are in free fall and your parachute fails, but you have a Slinky with extremely convenient mass, tension, etc., would it be''&lt;br /&gt;
possible to save yourself by throwing the Slinky upward while holding on to one end of it?&amp;quot;&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Varadarajan Srinivasan&amp;lt;/div&amp;gt;&lt;br /&gt;
| No, it would not.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Sparta'''&lt;br /&gt;
|''&amp;quot;In the movie 300 they shoot arrows up into the sky and they seemingly blot out the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un. Is this possible, and how many arrows would it take?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anna Newell&amp;lt;/div&amp;gt;&lt;br /&gt;
|300 arrows per second with densely packed archers could blot out 99% of the Sun's light. If the Sun were low in the horizon, you could more effectively block sunlight with less arrows if the arrows were aimed to pass between the battlefield and the Sun. However, this would have little to no effect on the opponent, unless it required solar panels.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|47}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Lego Bridge'''&lt;br /&gt;
|''&amp;quot;How many Lego bricks would it take to build a bridge capable of carrying traffic from London to New York? Have that many Lego bricks been manufactured?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jerry Petersen&amp;lt;/div&amp;gt;&lt;br /&gt;
|Enough bricks have been manufactured to connect London and New York, but the bridge would not be structurally sound enough to stay together for very long.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|51}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #10'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What is the probability that if I am stabbed by a knife in my torso that it won’t hit anything vital and I’ll live?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Thomas&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot;{{book|1|54}}&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;If I were on a motorbike and do a jump off a quarter pipe ramp, how fast would I need to be moving to safely deploy and land using the parachute?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What if every day, every human had a 1 percent chance of being turned into a turkey, and every turkey had a 1 percent chance of&lt;br /&gt;
being turned into a human?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kenneth&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Weightless Arrow'''&lt;br /&gt;
|''&amp;quot;Assuming a zero-gravity environment with an atmosphere identical to Earth's, how long would it take the friction of air to stop an arrow fired from a bow? Would it eventually come to a standstill and hover in midair?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Mark Estano&amp;lt;/div&amp;gt;&lt;br /&gt;
|The arrow would stop at about 5 to 10 kilometers and float if the space it was being loosed in were large enough to allow that. Since the only sustained zero-gravity environment with an Earth-like atmosphere in real life is on the International Space Station, where Kibo the longest module is 10 m long, realistically the arrow would hit something and potentially cause serious damage.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|56}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''All the Lightning'''&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |''&amp;quot;If all the lightning strikes happening in the world on any given day all happened in the same place at once, what would happen to that place?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Trevor Jones&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |A typical lightning strike delivers enough energy to power a residential house for about 2 days. Hence, even in lightning-prone regions the power delivered to the ground by the sun outweighs the power delivered to the ground by lightning by a factor of a million. Assuming that the lightning bolts come down in parallel, our bundle (containing about a million bolts) would be around 6 meters in diameter. It would deliver about two atomic bombs worth of energy to the air and ground, leaving a crater the size of a basketball court. Inside the channel, the air would turn into high energy plasma. The light and heat from the bolt would spontaneously ignite surfaces for miles around while the shockwave would flatten trees and demolish buildings. A copper cable a meter in diameter could in theory conduct the brief surge of current from the bolt without melting, however anything on the other end of the cable wouldn't be able to conduct it properly.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; {{book|1|62}}&lt;br /&gt;
|{{book|10|2024|05|07|fs28lEq9smw|What if all the lightning on Earth struck the same place at once?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|3|short-video=yes|2025|07|15|_efsqO-4OoQ|Could We Harvest Power From Lightning?}}&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #11'''&lt;br /&gt;
|''&amp;quot;What if everyone in Great Britain went to one of the coasts and started paddling? Could they move the island at all?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ellen Eubanks&amp;lt;/div&amp;gt;&lt;br /&gt;
| No, they could not.&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|64}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Are fire tornadoes possible?&amp;quot;''&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Seth Wishman&amp;lt;/div&amp;gt;&lt;br /&gt;
| Yes, [[Wikipedia:Fire_whirl|fire tornadoes]] are a real phenomenon which Randall finds very impressive.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Neutron Bullet'''&lt;br /&gt;
|''&amp;quot;If a bullet with the density of a neutron star were fired from a handgun (ignoring the how) at the Earth's surface, would the Earth be destroyed?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Charlotte Ainsworth&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. The bullet would fall through the ground and stop in the center of the Earth. If the bullet were actually made of neutron star material, it would violently explode back into normal matter when removed from the neutron star gravity well with more energy than any nuclear weapon, but since the question does not specify this, Randall chose to imagine a stable material of the same density. If the bullet could be kept at the surface of the Earth, it would be relatively safe to stand several meters away from, but if you came too close, the gravity would pull you in and when you touched it drain all your blood. If the bullet were covered in water of just the right density, you could possibly safely touch it and then pull away, but it would still be risky to attempt.&lt;br /&gt;
|&lt;br /&gt;
|{{book|1|67}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |'''Weird (and Worrying) Questions from the What If? Inbox, #12'''&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;What if I swallow a tick that has Lyme disease? Will my stomach acid kill the tick and the borreliosis, or would I get Lyme disease from the inside out?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Christopher Vogel&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot;{{book|1|68}}&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |''&amp;quot;Assuming a relatively uniform resonant frequency in a passenger jet, how many cats, meowing at what resonant frequency of said jet, would be required to &amp;quot;bring it down&amp;quot;?&amp;quot;&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brittany&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |'''Richter 15'''&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |''&amp;quot;What if a Richter magnitude 15 earthquake were to hit America at, let's say, New York City? What about a Richter 20? 25?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alec Farid&amp;lt;/div&amp;gt;&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |A magnitude 15 earthquake would destroy the Earth, but going higher won't make much difference. You can actually go lower than 0, though.&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; |&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; {{book|1|69}}&lt;br /&gt;
|{{book|2|2023|12|05|e3uk7jU3RHo|What would a magnitude 15 earthquake be like?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|1|short-video=yes|2025|06|24|wBLVmEZV2Oc|How high could the magnitude of Earthquakes go?}}&lt;br /&gt;
|-&lt;br /&gt;
|{{book|2|short-video=yes|2025|07|01|FKXVs4UteSc|Is there such a thing as a magnitude 0 earthquake?}}&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Soupiter'''&lt;br /&gt;
|''&amp;quot;What would happen if the Solar System was filled with soup out to Jupiter?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Amelia&amp;lt;/div&amp;gt;&lt;br /&gt;
|The soup would collapse into a very large black hole and devour the Milky Way, though we would feel mostly fine for the first 10 to 15 minutes.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|1}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Helicopter Ride'''&lt;br /&gt;
|''&amp;quot;What if you were hanging on a helicopter blade by your hands and then someone turned it on?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Corban Blanset&amp;lt;/div&amp;gt;&lt;br /&gt;
|Without any grip assistance, you'd fall off before it completed its first revolution. With handholds, your body would instead fall off of your arms. Assuming no issues with staying on the wing, there would be more problems to follow. The helicopter, as it spooled up, would begin violently wobbling due to the constantly changing center of gravity before flipping itself, destroying both you and the pilot in a massive fireball. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|2}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Dangerously Cold'''&lt;br /&gt;
|''&amp;quot;Would there be any danger from standing next to a large object that was 0 Kelvin?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Christopher&amp;lt;/div&amp;gt;&lt;br /&gt;
|There wouldn't be a lot of direct danger from the cube itself, though it would make you feel cold. The bigger danger would be from liquid oxygen condensing and igniting flammable objects. It would take a while to reheat the cube&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|3}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Ironic Vaporization'''&lt;br /&gt;
|''&amp;quot;What if we somehow evaporated a solid block of iron on {{asic|ear|th''}}''?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Cooper C.&amp;lt;/div&amp;gt;&lt;br /&gt;
|The cube would ignite whatever is near it and deposit large quantities of iron flakes downwind. However, it wouldn't make a huge impact on the total amount of atmospheric iron.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|4}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Cosmic Road Trip'''&lt;br /&gt;
|''&amp;quot;If the universe stopped expanding right now, how long would it take for a human to drive a car all the way to the edge of the universe?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sam H-H&amp;lt;/div&amp;gt;&lt;br /&gt;
|First off, a human can't do this. Assuming a normal crash rate, an average human driver wouldn't make it past Mars without crashing. Even truck drivers, a field where the crash rate is much lower, wouldn't make it past Jupiter. Using a self-driving car, however, would negate this. It would take an incredibly long time, on the order of approximately 480 quadrillion years if you're driving at a steady pace of 65 miles per hour. Assuming you want to keep your car functional, you would go through 30 quintillion oil changes. Assuming a reasonable 33 MPG highway mileage, the amount of gasoline needed would be similar to the Moon in size. You would also need 10^17 tons of snacks. Entertainment would be another issue. If every person who has ever lived had 150 friends/acquaintances, listening to a real-time podcast of someone's life, all from the perspective of a different friend/acquaintance, you would need to re-watch them all 150 times to make it to the edge of the observable universe. Once you get there, there would be no Earth to come back to. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|5}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Pigeon Chair'''&lt;br /&gt;
|''&amp;quot;How many pigeons would it require in order to lift the average person and launch a chair to the height of Australia's Q1 skyscraper?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nick Evans&amp;lt;/div&amp;gt;&lt;br /&gt;
|The optimal method for using the least amount of pigeons would be to use a multi-stage system of sorts. A group of pigeons would lift you about 10 feet, before dropping you as another group swoops in to take their place. However, even with this system, the number of pigeons would be large enough that the Earth would be pulled into the pigeons by gravity instead of the other way around. In other words, if you want to get to the top of Australia's Q1 skyscraper, use an elevator.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|6}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;11&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;11&amp;quot;|'''Short Answers #1'''&lt;br /&gt;
|''&amp;quot;What if your blood became liquid uranium? Would you die from radiation, lack of oxygen, or something else?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Thomas Chattaway&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would die Having-no-Blood-and-Being-Full-of-Molten-Uranium Syndrome. Also known as Jeff's Disease.&lt;br /&gt;
|rowspan=&amp;quot;11&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;11&amp;quot;{{book|2|6.5}} (S1)&lt;br /&gt;
|rowspan=&amp;quot;11&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Could someone have an anime-style attack where they created a sword out of air? I'm not talking about an air blade, but something like cooling the air enough so that you had solid air to attack people.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Emma&amp;lt;/div&amp;gt;&lt;br /&gt;
|Theoretically yes, but it would be extremely impractical. The temperature to turn oxygen solid is very low, and even with proper insulation it would still cause frostbite. It would also be very weak and very soft, and would sublimate quickly, basically making it useless for all intents and purposes, except for PR.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How much water do you have to drink to become 99 percent water?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—LyraxH&amp;lt;/div&amp;gt;&lt;br /&gt;
|About 500 gallons of water.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would we see if we attached a lightweight camera to a balloon and let it fly away?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Raymond Peng&amp;lt;/div&amp;gt;&lt;br /&gt;
|We would see a balloon slowly flying away, fading into the sky. It would be quite pretty. Though next time we should probably attach a transmitter. &lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How many calories does Mario burn a day?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Daniel and Xavier Hovley&amp;lt;/div&amp;gt;&lt;br /&gt;
|Mario starved to death in late 1985.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If a snake unhinged its jaw and swallowed a balloon whole, could/would the balloon carry the snake up?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Freezachu&amp;lt;/div&amp;gt;&lt;br /&gt;
|No.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you were to jump out of an airplane that was traveling at Mach 880980 that was 100,00 feet above ground in New York City, with skydiving gear, could you survive?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jack Catten&amp;lt;/div&amp;gt;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|No, you would die.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If there was no water on Earth, would we all live?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Karen&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Is it possible to make a homemade jetpack?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Azhari Zadil&amp;lt;/div&amp;gt;&lt;br /&gt;
|It's very easy to make one that works once; much harder to make it work more.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I was wondering whether there's a way to use my welder as a defibrillator? (The specific model I own is an Impax IM-ARC140 arc welder.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Łukasz Grabowski&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, and you probably shouldn't be allowed to use it as an arc welder either.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if all atoms on Earth were expanded to the size of a grape? Would we survive?&lt;br /&gt;
|I don't know how to answer this with science, but now I want grapes.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Geyser'''&lt;br /&gt;
|''&amp;quot;If one were to stand on top of the Old Faithful geyser in Yellowstone National Park, at what speed would they be launched upwards and what injuries would they likely sustain?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Catherine McGrath&amp;lt;/div&amp;gt;&lt;br /&gt;
|If you positioned yourself in just the right way, and used an umbrella to catch as much lift as possible, you could be launched hundreds of feet in the air.  Unsurprisingly, you'd receive severe burns and almost certainly die.  Surprisingly, however, you would be far from the first person to get severe burns from the geysers.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|8}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Pew, Pew, Pew'''&lt;br /&gt;
|''&amp;quot;If you shot a ridiculously powerful gun/{{asic|la|zer''}}'' would it go off the edge of the world in a straight line or curve around the world?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Maelor&amp;lt;/div&amp;gt;&lt;br /&gt;
|The beam would go off the edge of the world, except under certain circumstances.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|9}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|'''Weird &amp;amp; Worrying #1'''&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;Can bees or other animals go to hell? Or can they murder other bees without consequences?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sadie Kim&amp;lt;/div&amp;gt;&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;{{book|2|10.5}} (W1)&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;How many mirrors reflecting (sun)light would it take to kill, or at least, injure somebody?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Eli Collinge&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;If you had to remove the tonsils of a giant, what would be the safest way for you to do it? The surgeon is a normal human.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tirzah&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;What would it take to defeat Air Force One with a drone???&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Banana Church'''&lt;br /&gt;
|''&amp;quot;Can all the world's bananas fit inside of all of the world's churches? My friends have had this argument for a little over 10 years now.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jonas&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes. They would likely only fill the churches to 6 inches deep. For the bananas to be unable to fit, each person would need to eat a 1 foot by 1 foot by 2 meter crate's worth of bananas per year. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|11}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Lose Weight the Slow and Incredibly Difficult Way'''&lt;br /&gt;
|''&amp;quot;I want to lose 20 pounds. How much of the Earth's mass would I have to &amp;quot;relocate&amp;quot; to space in order to achieve my goal?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ryan Murphy&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would have to remove 85% of the Earth's mass. However, due to the increase in density in the mantle, you would actually gain weight until you've removed about half the Earth's diameter. An image of what it would look like is shown in [[2575: What If? 2]], where a potato peeler is used to remove the crust of the Earth.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|13}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Jupiter Comes to Town'''&lt;br /&gt;
|''&amp;quot;Dear Randall, what would happen if you shrunk Jupiter down to the size of a house and placed in a neighborhood, say, replacing a house?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Zachary&amp;lt;/div&amp;gt;&lt;br /&gt;
|Assuming density stayed the same when you shrunk Jupiter down, the biggest issue would be that the gravity that keeps its hot interior together would no longer exist, essentially creating a giant fireball that would turn into a mushroom cloud, and eventually spread out into a big cool cloud. This would, effectively, be the reverse of the formation of Jupiter, which started as clouds before being compressed into a small hot ball.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|15}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Swing Set'''&lt;br /&gt;
|''&amp;quot;How tall can a swing set be while still being powered by a human pumping their legs? Is it possible to build a swing set tall enough to launch the rider into space if they jump at the right time? (Assuming the human has enough energy, which my 5-year-old seems to have.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Joe Coyle&amp;lt;/div&amp;gt;&lt;br /&gt;
|This is impossible due to the fact that, by pumping the legs, you are essentially pushing against the crossbar of the swing set. A string which is too long will result in a very low amount of force being delivered to the crossbar, lowering the maximum angle you can swing relative to the base of the curve. Calculations show that the optimal crossbar height to gain the most angle relative to the ground is approximately 8 feet.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|17}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Airliner Catapult'''&lt;br /&gt;
|''&amp;quot;My friend is a commercial airline pilot. She says that a significant amount of fuel is spent on takeoff. To save fuel, why couldn't we launch airplanes using catapult systems like on aircraft carriers (calibrated to normal human accelerations)? Could significant amounts of fossil fuels be saved if the catapults could be run by some other clean energy? I'm imagining a rope ... one end tied to the airplane, the other tied to a large boulder at the edge of a cliff. Just push the boulder off the cliff!&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brady Barkey&amp;lt;/div&amp;gt;&lt;br /&gt;
|It's not a completely ridiculous idea, but the most practical issue is that you'd have to extend the roughly mile-long runway several times more to take full advantage of it.  Using the proposed rope-and-cliff system, you'd need to use a thousand ton weight dropped at the height of a super tall skyscraper - of course, if you used something heavier, like the 80,000-ton Washington Monument, you wouldn't need to drop it as far.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|18}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;14&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;14&amp;quot;|'''Short Answers #2'''&lt;br /&gt;
|''&amp;quot;Billy the Clown is running out of cash, so in order to raise money, he devises his newest trick: He will inflate, by mouth, a standard-size party balloon until the material (some form of indestructible rubber) is just one atom thick. How large would the inflated party balloon be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alan Fong&amp;lt;/div&amp;gt;&lt;br /&gt;
|It's a total mystery why Billy is running out of cash.&lt;br /&gt;
|rowspan=&amp;quot;14&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;14&amp;quot;{{book|2|18.5}} (S2)&lt;br /&gt;
|rowspan=&amp;quot;14&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How many leaf blowers would it take to move a standard SUV&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ashley H.&amp;lt;/div&amp;gt;&lt;br /&gt;
|Somewhere around 1-2 dozen leaf blowers would do the trick. However, it would be very impractical, consume a lot of fuel, and the acceleration would be very slow. Many more leaf blowers would be needed to accelerate the car at a reasonable rate.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you put a vacuum at extremely high suction and aimed it at a normal BMW sedan, what would happen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|Nothing. Cars, even small ones like sedans, are far too large and heavy to be affected by a vacuum, even a very large and powerful one.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;On a warm summer evening, when you sit outside with a light on, you can be sure that bugs will be attracted to the light. Then why is it that these same bugs don't fly toward the biggest and strongest lamp of them all, namely the Sun, during the day?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|Those who did would die and not be able to produce offspring with the same traits.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you collected all of the guns in the world and put them on one side of the Earth, then shot the all simultaneously, would it move the Earth?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nathan&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would not move the Earth, but it would make the other side a nicer place to live.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you microwaved a small microwave, while the smaller one was on as well?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Micheal&amp;lt;/div&amp;gt;&lt;br /&gt;
|Randall gave the meme answer of 'You would no longer be welcome in that IKEA.' In reality, this would almost certainly lead to some dire consequences. Microwaves contain sensitive electronics which would be damaged from excess heat{{cn}}, leaving the microwave functionally useless. Most microwaves are also made of metal, which is known for exploding when exposed to microwaves. This is the same principle that causes forks to explode when placed in one. &lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you're jumping on a trampoline, how fast would your body have to be going to:&amp;lt;br&amp;gt;'''A.''' Break all bones on impact&amp;lt;br&amp;gt;'''B.''' Make your body go though the tiny holes of the mesh.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Micah Lane&amp;lt;/div&amp;gt;&lt;br /&gt;
|&amp;lt;ol style=&amp;quot;list-style-type: upper-alpha&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Breaking all of the bones in your body would be hard because a lot of them are very small, but it would be fast enough that the trampoline wouldn't make much of a difference.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;This can't happen, no matter how fast you're going.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I have a Nothing Grenade™. When detonated, it instantly replaces itself with a sphere of perfect vacuum 2 meters across. What would actually happen when it went off?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Dave H.&amp;lt;/div&amp;gt;&lt;br /&gt;
|As the two-meter vacuum circle appeared, the surrounding air would rapidly fill in the sudden gap. Almost instantaneously, the air would collide and expand out with enough force to possibly kill a human and damage small structures such as bookshelves or walls. In other words, you basically have a regular grenade. &lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Is space hot or cold?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Isaac&amp;lt;/div&amp;gt;&lt;br /&gt;
|The answer to this is complicated. Temperature is a measurement of the speed of particles. In space, having no air resistance, particles move incredibly fast. However, because it's a vacuum, there are almost no particles. This is a similar principle to the reason you don't get burned when welding sparks touch your skin. They're so small they do basically nothing to you. As there are almost no particles to impact you, space is the hottest place you can freeze to death.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How many bones can you remove from the human body while allowing the human to continue living? Asking for a friend.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Chris Rakeman&amp;lt;/div&amp;gt;&lt;br /&gt;
|That person is not your friend.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if you put a human under a g-force of 417 Gs for twenty seconds?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nythill&amp;lt;/div&amp;gt;&lt;br /&gt;
|The human is guaranteed to die. Scientific tests have shown that, despite the human body's ability to withstand g-forces into the hundreds for very short periods of time (a car crash may exceed 100 Gs of force), going over 18 Gs for a long period of time is likely to cause the human to black out and quickly die, as the force would prevent blood from being able to flow through a human body properly. This is the same reason why bugs are unable to move after hitting a car on the highway, even if they survive. &lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Where or how can one commit a murder and not be prosecuted for it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kunai Dhawan&amp;lt;/div&amp;gt;&lt;br /&gt;
|Theoretically, in a section of Yellowstone National Park, where {{w|Zone of Death (Yellowstone)|a jury would have to be formed from a non-existent population}}. In practice, you'd definitely still be prosecuted for committing a murder there.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I read today that insects make at least $57 billion a year for the US economy. If we were to pay every single insect in the United States equally for their economic contribution, how much would each insect get?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Hannah McDonald&amp;lt;/div&amp;gt;&lt;br /&gt;
|Each insect would get $0.0000029.&lt;br /&gt;
Broken down:&lt;br /&gt;
*$18 billion to flies, including mosquitoes&lt;br /&gt;
*$16 billion to bees, wasps, and ants&lt;br /&gt;
*$10 billion to beetles&lt;br /&gt;
*$7 billion to thrips&lt;br /&gt;
*$1 billion to butterflies and moths&lt;br /&gt;
*$1 billion to true bugs&lt;br /&gt;
*$4 billion to all other insects&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What, in today's world and yesterday's world, does it mean to be human, in all social and biological factors?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Seth Carrol&amp;lt;/div&amp;gt;&lt;br /&gt;
|You meant to submit this to ''Why If?: Deeply Ungrammatical Answers to Unanswerable Philosophical Questions''.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Slow Dinosaur Apocalypse'''&lt;br /&gt;
|''&amp;quot;What if an object like the Chicxulub impactor hit e&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;E&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;arth with a relatively low relative speed of (let's say) 3 mph&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Beni von Alemann&amp;lt;/div&amp;gt;&lt;br /&gt;
|Even though the meteor is slow, it's still very big. The impactor would not create a crater, but would instead create a weird effect which makes the rock flow like water, creating a large &amp;quot;space dirt pancake&amp;quot; about the same diameter as the Chicxulub impact Crater. If {{w|Jurassic Park}} were a real place, it could certainly cause a dinosaur extinction over there, if dropped on it. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|19}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Elemental Worlds'''&lt;br /&gt;
|''&amp;quot;What if Mercury (the planet) were entirely made of mercury (the element)? What if Ceres was made of cerium? Uranus made of uranium? Neptune made of neptunium? What about Pluto made of plutonium?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|Earth would (mostly) be fine. Mercury, uranium, neptunium, plutonium, and cerium would all replace the old planets. Changes are as follows:&lt;br /&gt;
*Pluto would be visible to the naked eye&lt;br /&gt;
*Ceres would be visible to the naked eye&lt;br /&gt;
*Mercury would be visible to the naked eye&lt;br /&gt;
*Uranus would look a fairly bright star in the night sky&lt;br /&gt;
*''When Neptune hits your eye, like a big pizza pie, that's an x-ray..''&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|20}}&lt;br /&gt;
| &amp;lt;!-- i think there was a minutephysics video about this question --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Tire Rubber'''&lt;br /&gt;
|''&amp;quot;Rubber tires on millions of cars and trucks start with about ½&amp;quot; tread and end up bald. Rubber should be everywhere, or at least our highways should be made thicker. Where's the rubber?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Fred&amp;lt;/div&amp;gt;&lt;br /&gt;
|An average tire sheds about 1.6 liters of rubber over the course of its lifetime (from new to bald). If all tire rubber stuck to the road, it would rise by about a third of a millimeter per year. However, most tire rubber shavings are small enough to drift through the air, or for rain and wind to wash them off the road. Tire rubber is more than enough to cause environmental disruption and it's one of the leading causes of microplastics in our oceans. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|25}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;10&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;10&amp;quot;|'''Short Answers #3'''&lt;br /&gt;
|''&amp;quot;How long do you think two people would have to kiss continuously before they had no lips left?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Asli&amp;lt;/div&amp;gt;&lt;br /&gt;
|That's not how lips work&lt;br /&gt;
|rowspan=&amp;quot;10&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;10&amp;quot;{{book|2|26.5}} (S3)&lt;br /&gt;
|rowspan=&amp;quot;10&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;My college friend and I have had this debate for years now: If you put a million hungry ants in a glass cube with one human, who's more likely to walk out alive?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Eric Bowman&amp;lt;/div&amp;gt;&lt;br /&gt;
|The human would try to break out of the cube, and probably succeed. Although disgusted, the human would probably be fine. Ants generally do not eat meat, preferring leaves and other foliage. If they escaped, both the human and the ants would go after the person who put them in the glass box. If they did not escape, both the human and the ants would eventually die of suffocation, assuming no air holes were installed. &lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if all of humanity set all of their differences aside and work together to level out the Earth into a perfect sphere?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Erik Andersen&amp;lt;/div&amp;gt;&lt;br /&gt;
|This would quickly create new differences. Even if some magical force were employed to keep humanity centered on making the earth a perfect sphere, it would take many years and be almost impossible to do. Because the Earth is an oblate spheroid, and not a sphere as-is, a lot of land would need to be displaced in order to create a perfect sphere. There would need to be somewhere to put all the water in the oceans, which would need to be removed, and a way to move large amounts of land very long distances. Many cities would be buried, such as Amsterdam (average elevation -6.6').&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;People talk a lot about a space elevator or a building that would reach into low orbit to save time and resources getting things into space. This is going to sound incredibly stupid, but why has no one proposed building a road into space? Since orbit is generally considered to be 62 miles out, would it be possible to build a 62-mile-high mountain somewhere in the United States? Colorado would be my suggestion, since it has a low population density and is about a mile above sea level already.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brian&amp;lt;/div&amp;gt;&lt;br /&gt;
|Where are you going to get the materials to build the mountain? Also, Colorado has a lot of people in it. If we ignore the logistical implications, it still won't work. Cars take in air from various orifices to cool, among other things, the engine. No matter whether you have a gas, electric, hybrid or hydrogen car, the lack of air would cause the motors to quickly overheat.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If I shot a rocket and a bullet through Jupiter's center, would they come out the other side?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—James Wilson&amp;lt;/div&amp;gt;&lt;br /&gt;
|No, as the leading theory is that Jupiter has a solid core. Shooting a bullet through the center would simply cause the bullet to collide with the core of the planet.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if Mount Everest magically turned into pure lava? What would happen to life; would we all die?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ian&amp;lt;/div&amp;gt;&lt;br /&gt;
|We would mostly be okay.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Can you fall down into the Mariana Trench, or would you just swim over it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rodolfo Estrella&amp;lt;/div&amp;gt;&lt;br /&gt;
|You can do both of those things. Assuming what he was trying to say was &amp;quot;Can you swim over the Marianas Trench without falling into it?&amp;quot; the answer is that you would just swim directly over it.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I play Dungeons &amp;amp; Dragons, and my DM doesn't want to let us use the Gust of Wind spell to push wind into the sails of a ship and make it move. Her argument is that you can't use this spell to move a ship because someone on a sailboat can't aim a fan at the sail to propel the boat. We argue that since the spell doesn't push you backward when you use it, then we should be able to use it to make the ship sail. She says she'll allow it only if you say so.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Georgia Paterson and Allison Adams&amp;lt;/div&amp;gt;&lt;br /&gt;
|Since the spell doesn't push you backwards, it should work. If the spell pushed you backwards, you would just have to aim the spell backwards.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if I struck a match on Titan? Would it light if there's no oxygen?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ethan Fitzgibbon&amp;lt;/div&amp;gt;&lt;br /&gt;
| While the match would light initially due to the small amount of oxidizer in a matchhead (typically {{w|potassium chlorate}}, in a safety match), it would quickly dissipate due to the lack of oxygen to titan's atmosphere.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;I posted a question on social media asking what would be the smallest change that would create the biggest disaster. One of the responses I got said &amp;quot;if every atom gained 1 proton.&amp;quot; So my question for you is, what would happen if every atom gained 1 proton?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Olivia Caputo&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Earth would become one big, very explosive science experiment. Stable atoms would become unstable, releasing large amounts of energy all at once. Brain matter would cease to be brain matter, and cells would no longer be cells. This would lead to everything dying at once. At least we wouldn't need to experience it.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Suction Aquarium'''&lt;br /&gt;
|''&amp;quot;When I was a child, I discovered that if I took a container into the swimming pool, I could fill it with water and then bring the container (open-end down) to the surface of the water, and the water level in my container was higher than the water level in the pool. What would happen if you tried to do this with a giant container and the ocean? Could you create a giant aquarium on top of the water that the animals could swim in and out of freely? Maybe an irregularly shaped container that you would walk around on to get closer to the fish?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Caroline Collett&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would work, but the water level would slowly lower back to sea level over time. However, this process can be accelerated by whale farts. I am not joking.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|27}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Earth Eye'''&lt;br /&gt;
|''&amp;quot;If the Earth were a massive eye, how far would it see?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Alasdir&amp;lt;/div&amp;gt;&lt;br /&gt;
|Its 'resolution' would be over 500 million times better than a normal human eye. It would be able to see the color of a shirt worn on Mars. It could also see incredibly far objects, such as some of the most distant galaxies that haven't been {{w|redshift}}ed to the point of being infrared. However, a planet-sized eye would be inconvenient, as it would certainly go blind from the Sun and could be damaged from nearby stars as well.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|28}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Build Rome in a Day'''&lt;br /&gt;
|''&amp;quot;How many people would it take to build Rome in a day?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Lauren&amp;lt;/div&amp;gt;&lt;br /&gt;
| It would take anywhere between 15 minutes and 150 minutes with the whole Earth working.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|29}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Mariana Trench Tube'''&lt;br /&gt;
|''&amp;quot;If I put an indestructible 20-meter-wide glass tube in the ocean that goes all the way down to the deepest part of the ocean, what would it be like to stand at the bottom? Assuming the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un goes directly overhead.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Zoki Čulo&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would likely see many new and undiscovered species. You would also be incredibly cold as the freezing waters of the deep would cool the glass. Getting up would be another problem entirely. If you didn't use an elevator, you could break the glass. That would create a geyser, accelerating you upwards at lethal G-forces. Once you reach the surface, you would fly high into the air before crashing back down into the ocean. Also, you would be heralded as a hero by a lot of marine biologists.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|30}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''MRI Compass'''&lt;br /&gt;
|''&amp;quot;Why don't compasses point toward the nearest hospital because of the magnetic fields created by MRI machines?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—D. Hughes&amp;lt;/div&amp;gt;&lt;br /&gt;
|They actually do, but only within ~10 meters.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|32}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Ancestor Fraction'''&lt;br /&gt;
|''&amp;quot;I noticed recently that the number of people within a family tree increases exponentially with each generation: I have 2 parents, 4 grandparents, 8 great-grandparents, and so on. Which got me thinking—are most people descended from the majority of Homo sapiens who have ever lived? If not, what fraction of all the people that have ever lived am I descended from?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Seamus&amp;lt;/div&amp;gt;&lt;br /&gt;
|Likely between 2-3 twenty-fourths of all humans who have ever lived.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|33}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Bird Car'''&lt;br /&gt;
|''&amp;quot;I'm a lowly college student stuck in a car without AC. As such, the windows are down most of the time when I'm driving, and I started thinking: If a bird happens to match my speed and direction perfectly, and I swerve to catch the bird in my car ... what happens next, other than an angry bird? Does the bird stay right where it was? Fly into the windshield? Drop into the seat? My roommate and I disagree. Any help settling this would really make all our lives easier.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Hunter W.&amp;lt;/div&amp;gt;&lt;br /&gt;
| The bird would fall onto the seat at an angle, and then would fly out of the window (hopefully).&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|34}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|'''Weird &amp;amp; Worrying #2'''&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;What would happen if you put the end of a vacuum hose up to your eye and turned on the vacuum?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Kitty Greer&amp;lt;/div&amp;gt;&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;{{book|2|35.5}} (W2)&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;Is it possible to hold your arm straight out of a car window and punch a mailbox clean off its pole? Could you do it without breaking your hand?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Ty Gwennap&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;If people's teeth kept growing, but when they were fully grown they come off and are swallowed, how long would it take before it causes any problems?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Valen M.&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;In a defensive situation, how much epinephrine (in a EpiPen) would it take to subdue a possible attacker?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Henry M.&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Vacuum Tube Smartphone'''&lt;br /&gt;
|''&amp;quot;What if my phone was based on vacuum tubes? How big would it be?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Johnny&amp;lt;/div&amp;gt;&lt;br /&gt;
| The phone would be about the size of one to five city blocks, and would melt its way through the Earth's crust. Conversely, the UNIVAC constructed with modern electrical components would be smaller than a grain of salt.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|36}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Eat a Cloud'''&lt;br /&gt;
|''&amp;quot;Could a person eat a whole cloud?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tak&amp;lt;/div&amp;gt;&lt;br /&gt;
|Not unless you can squeeze the air out first. If you don't you will burp out more cloud than you ate.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|38}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Tall Sunsets'''&lt;br /&gt;
|''&amp;quot;Let's say that two people of different heights (159 cm and 206 cm) stand beside each other while looking at the sunset. How much longer will the taller person be able to see the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un than the shorter one?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Rasmus Bunde Nielson&amp;lt;/div&amp;gt;&lt;br /&gt;
|Over a second longer.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|39}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Sisyphean Refrigerators'''&lt;br /&gt;
|''&amp;quot;Suppose everyone with a fridge or a freezer opened them at the same time, outdoors. Would that amount of cooling be able to noticeably change the temperature? If not, how many fridges would it take to lower the temperature, say, 5 degrees F? What about even lower?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nicholas Mittica&amp;lt;/div&amp;gt;&lt;br /&gt;
|Refrigerators don't work like that, and would likely increase global temperatures by 0.3 degrees celsius. The infinite spite of Hades is surprisingly green.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|41}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Basketball Earth'''&lt;br /&gt;
|''&amp;quot;You know how when you spin a basketball on your finger you hit the side to make it go faster and balance it? If a meteor passes close enough to the e&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;E&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;arth, can it make the Earth spin faster like your hand does the basketball?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Zayne Freshley&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|43}}&lt;br /&gt;
|&lt;br /&gt;
|- &amp;lt;!-- my shift keys started acting up here, so expect some capitalization errors --&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|'''Inhale a Person'''&lt;br /&gt;
|''&amp;quot;If house dust comprises up to 80 percent dead skin, how many people worth of skin does a person consume/inhale in a lifetime?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Greg&amp;lt;/div&amp;gt;&lt;br /&gt;
|You could inhale at most 3 gallons of human skin in a lifetime, and dust is not mostly dead skin. Instead it is a cursed salad of soil, pollen, cotton fibers, crumbs, powdered sugar, glitter, pet hair and dander, plastic, soot, human or animal hair, flour, glass, smoke, mites, and various miscellaneous gunk. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|45}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Candy Crush Lightning'''&lt;br /&gt;
|''&amp;quot;How many Wint-O-Green Life Savers would it take to create a life-size lightning bolt if you crushed them&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Violet M.&amp;lt;/div&amp;gt;&lt;br /&gt;
|Billions&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|46}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;13&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;13&amp;quot;|'''Short Answers #4'''&lt;br /&gt;
|''&amp;quot;Can humans safely eat rabid creatures?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Winston&amp;lt;/div&amp;gt;&lt;br /&gt;
|No.&lt;br /&gt;
|rowspan=&amp;quot;13&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;13&amp;quot;{{book|2|46.5}} (S4)&lt;br /&gt;
|rowspan=&amp;quot;13&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if the Earth's core suddenly stopped producing heat?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Laura&amp;lt;/div&amp;gt;&lt;br /&gt;
|We would be mostly fine. While one may picture a scenario similar to ''The Core'', the difference would only be noticed long after you're gone, so you don't really need to worry about it :)&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Could humanity, with our current technology, destroy the Moon?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Tyler&amp;lt;/div&amp;gt;&lt;br /&gt;
|No.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Can global warming cause the Earth's magnetic fields to weaken?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Pavaki&amp;lt;/div&amp;gt;&lt;br /&gt;
|No.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you used a laser, would you be able to bake something?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Andrew Liu&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What if Earth was sliced in half, like an apple? Where should you be such that you have the best chance of survival?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Anonymous&amp;lt;/div&amp;gt;&lt;br /&gt;
|You should be holding the object that's slicing the Earth.&amp;lt;!-- The answer here is just a picture, this is an attempt at describing how I see it --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if a person dropped into a pool full of jellyfish?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Lorenzo Belotti&amp;lt;/div&amp;gt;&lt;br /&gt;
|It depends on the species.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Would it be possible to make a house floor into a massive air hockey table, so you could move heavy furniture across the room?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jacob Wood&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes, and now I know what my next home improvement project will be.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;My 7-year-old son asked us over dinner recently at which point potatoes melt (I assume in a vacuum). Please advise.&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Steffen&amp;lt;/div&amp;gt;&lt;br /&gt;
|Potatoes don't really melt at any temperature. Also, do you automatically add 'in a vacuum' to anything your son says?&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Would a pigeon be able to make it to space if it was not affected by gravity?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nick Evans&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. The air in the upper atmosphere is too thin to breathe and too cold&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you were flying blind through the Milky Way what would be the odds of hitting a star or planet?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—David&amp;lt;/div&amp;gt;&lt;br /&gt;
|If you flew edge-on, it would be about 1 in 10 billion.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;On various bodies in our Solar System (feel free to group any that are equivalent), roughly how long could you survive on the surface (for gas giants, assume you are on a magical platform at some point in the atmosphere that you could reasonably treat as the surface) with nothing but an infinite air supply and warm winter clothing? That is, no helmet, no pressure suit, just a nose-and-mouth air mask attached to a magic air generator, and clothing that would be suitable for, say, Chicago in winter. (No cute tricks like using the magic air supply to generate heat or whatever.)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Melissa Trible&amp;lt;/div&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*Earth: 100-ish years&lt;br /&gt;
*Venus: Weeks to months&lt;br /&gt;
*Everywhere else: Minutes to hours&lt;br /&gt;
Venus would be great if it weren't for the sulfuric acid.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would happen if someone dropped an anvil on you from space?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Sam Stiehl&amp;lt;/div&amp;gt;&lt;br /&gt;
|About the same as if someone dropped an anvil on you from a building.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Toasty Warm'''&lt;br /&gt;
|''&amp;quot;What if I want to heat my house using toasters. How many do I need?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Peter Ahlström&amp;lt;/div&amp;gt;&lt;br /&gt;
|Not many, because the house would quickly catch on fire.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|47}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Eyeball'''&lt;br /&gt;
|''&amp;quot;If I pulled out my eyeball and aimed it so that it was looking into my other eyeball, what would I see (assuming the nerves and veins remain undamaged)&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Lenka&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would see an eye superimposed with your head and the background of the room overlapping.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|49}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Japan Runs an Errand'''&lt;br /&gt;
|''&amp;quot;If ALL of Japan's islands disappear, would it affect Earth's natural phenomena (plates, oceans, hurricanes, climate, and so on)?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Miyu Uchida&amp;lt;/div&amp;gt;&lt;br /&gt;
|Yes, it most certainly would. The sea of Japan would mix with the Pacific ocean now that the wall that separated them is gone. This would cause unpredictable changes to those currents, affecting many life forms who live in that area. Japan, though being small, weighs quite a lot, and the sudden removal of all that weight would cause massive shifts in ocean levels. Depending on the region, some sea levels would rise/fall by up to a foot, causing mass panic for cities that now have a sudden risk of flooding at a moment's notice. Tsunamis would devastate the Korean Peninsula, Hawaii, and the west coast of America. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|50}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Read All the Laws'''&lt;br /&gt;
|''&amp;quot;If a person wanted to read all of the governing documents that apply to them—from the federal and state constitutions, treaties, agency-issued regulations, federal and state laws, local ordinances, etc.—how many pages would they have to read?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Keith Yearman&amp;lt;/div&amp;gt;&lt;br /&gt;
|Between 145000 and 12.3 million pages.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|52}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot;|'''Weird &amp;amp; Worrying #3'''&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;If I were to jump into a container of liquid nitrogen (or dispose of a body that way), how deep would it have to be for me/them to shatter into frozen pieces at the bottom?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Stella Wohnig&amp;lt;/div&amp;gt;&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot;{{book|2|52.5}} (W3)&lt;br /&gt;
|rowspan=&amp;quot;3&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;What would happen to you if a colony of ants suddenly appeared in you bloodstream all at once?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Matt, on behalf of Declan&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;2&amp;quot;|''&amp;quot;If Harry Potter forgets where the invisible entrance to Platform 9¾ is, how long would he have to crash into walls randomly before discovering it?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Max Planker&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Snowball'''&lt;br /&gt;
|''&amp;quot;What if I tried to roll a snowball from the top of Mount Everest? How big would the snowball be by the time it reached the bottom and how long would it take?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Michaeline Yates&amp;lt;/div&amp;gt;&lt;br /&gt;
|It would remain about the same size, or it could cause an avalanche. Since the peak of {{w|Mount Everest}} is above the clouds, it is very dry there. For a snowball to grow, wet snow is required. The result would be similar to rolling a hamburger down. &lt;br /&gt;
|&lt;br /&gt;
|{{book|2|54}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Walking Backward in Time'''&lt;br /&gt;
|''&amp;quot;What if you decided to walk from Austin, Texas, to New York City, but every step takes you back thirty days?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jojo Yawson&amp;lt;/div&amp;gt;&lt;br /&gt;
| The sky would flicker at 50 Hz, and you would arrive around 300,000 years in the past.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|56}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Ammonia Tube'''&lt;br /&gt;
|''&amp;quot;What would happen if you fed ammonia into your stomach through a tube? How fast must the flow rate be to burn your stomach from the heat released? What would the newly created chlorine gas do to your stomach?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Becca&amp;lt;/div&amp;gt;&lt;br /&gt;
|{{w|Ammonia}} is an {{w|EPA list of extremely hazardous substances|extremely hazardous substance}} and pumping it into your abdomen would result in a painful death due to ammonia toxicity. However, at the very least, some of it would be neutralized with your stomach acid.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|57}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot;|'''Short Answers #5'''&lt;br /&gt;
|''&amp;quot;Could life evolve in a constantly running microwave?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Abby Doth&amp;lt;/div&amp;gt;&lt;br /&gt;
|No.&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot;|&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot;{{book|2|58.5}} (S5)&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot;|&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;Tonight at my work as an ER nurse in the emergency room, a patient (high on methamphetamine) asked for a cup of water. I returned with a paper cup of water, which the patient promptly threw at my head, missing me but hitting the wall in such an improbable way that the open top of the cup impacted the wall and the cup contained/diminished most of the subsequent splatter. It occurred to me that it might be possible to throw a cup of water hard enough that the container of water would go through the wall. Is this possible?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Pete&amp;lt;/div&amp;gt;&lt;br /&gt;
|Anything will go through a wall if you throw it hard enough&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;How slow would you have to chew in order to be able to infinitely consume breadsticks?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Miller Broughton&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would have to divide each breadstick into 20 bites, chewing each bite 200 times at 1 chew per second.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;If you were somehow to remove the white and yolk from inside an eggshell (chicken), and replace them with helium, would the eggshell float in the air?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Elizabeth&amp;lt;/div&amp;gt;&lt;br /&gt;
|No. An eggshell weighs more than the air it displaces.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What would stars smell like, if it were possible to smell them?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Finn Ellis&amp;lt;/div&amp;gt;&lt;br /&gt;
|Due to the free hydrogen molecules floating around in there, it would taste incredibly sour. It would also smell like burning rubber, as stars are made up of the same components.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;What is the average size for every man-made object on the planet?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Max Carver&amp;lt;/div&amp;gt;&lt;br /&gt;
|Not too big, not too small. About average.&lt;br /&gt;
|-&lt;br /&gt;
|''&amp;quot;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;lt;wbr&amp;gt;E&amp;quot;''&amp;lt;!-- 960 E's --&amp;gt;&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Nate Yu&amp;lt;/div&amp;gt;&lt;br /&gt;
|I feel you, Nate. [Editor's note: Nate's &amp;quot;question&amp;quot; is composed of 960 letters E]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Dog Overload'''&lt;br /&gt;
|''&amp;quot;Assuming 1 out of every 4 people has a 5-year-old dog, and the dog reproduces once every year, with 5 puppies, and the puppies start reproducing at 5 and stop at 15 and die at 20, how long would it take for the Earth to be flooded with puppies, assuming we have all the food, water, and oxygen to sustain them?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Griffin&amp;lt;/div&amp;gt;&lt;br /&gt;
|This is unrealistic right from the start. This assumes the total dog population is 2 billion, which is well above current estimates. A timeline of major events and milestones is listed below. &lt;br /&gt;
*After one year, there are enough dogs for everyone to have at least one.&lt;br /&gt;
*After 5 years, every human has an average of 6 or 7 dogs. &lt;br /&gt;
*After 11 years, Disney releases ''101 Dalmations per Capita'', after there are 101 dogs per person&lt;br /&gt;
*After 15 years, the first dogs die, but the death is fully insignificant.&lt;br /&gt;
*After 20 years, dogs would only be about 1 meter apart on average.&lt;br /&gt;
*After 25-30 years, the dogs begin to stack.&lt;br /&gt;
*At about 40 years, the exponential growth is &amp;quot;stable&amp;quot;. The population is multiplying by about 1.6578 each year.&lt;br /&gt;
*After 65 years, the population of dogs reaches 1 mol&lt;br /&gt;
*After 110 years, the dogs start to undergo relativistic collapse&lt;br /&gt;
*After 150 years, the dogs are bigger than the solar system.&lt;br /&gt;
*After 197 years, the expansion of the dog sphere surpasses 1''c''&lt;br /&gt;
*After 200 years, the dogs reach sirius.&lt;br /&gt;
*After 250 years, the dogs envelop the milky way.&lt;br /&gt;
*After 330 years, the dogs reach the edge of the observable universe.&lt;br /&gt;
*After 417 years, Disney releases ''10&amp;lt;sup&amp;gt;101&amp;lt;/sup&amp;gt; Dalmations.''&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|60}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Sunscreen'''&lt;br /&gt;
|''&amp;quot;Assuming that SPF works as it purports, what SPF would you need for a 1-hour trip to the surface of the s&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;s&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;un?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Brian and Max Parker&amp;lt;/div&amp;gt;&lt;br /&gt;
|You would need SPF 3,200,000 or a giant blob of sunscreen. Despite its name, sunscreen only protects against some types of radiation from the Sun. No amount is going to be adequate protection if you are right inside the Sun. Also, sunscreen, being a gel, would evaporate when exposed to vacuum. When exposed to the plasma of the coronal surface or the Sun's interior, it would quickly ionize along with anything inside it, becoming plasma like the rest of the Sun.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|62}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Walking on the Sun'''&lt;br /&gt;
|''&amp;quot;After the Sun runs out of fuel, it will become a white dwarf and slowly cool. When will it be cool enough to touch?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Jabari Garland&amp;lt;/div&amp;gt;&lt;br /&gt;
|The Sun will cool to room temperature in about 20 billion years. However, getting there to actually touch it is the hard part. The immense gravity the changed star still has would create a major problem for any attempt to land on and touch it. Even the most powerful propulsion would not be able to escape the pull of the Sun's gravity, making it nigh impossible for any currently theorised craft to reach the Sun and survive, let alone let you touch it 'safely'.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|63}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Lemon Drops and Gumdrops'''&lt;br /&gt;
|''&amp;quot;What if all the raindrops were lemon drops and gumdrops?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Shuo Peskoe-Yang&amp;lt;/div&amp;gt;&lt;br /&gt;
|Replacing all rain in the world would have devastating conseqeunces, especially with such dry candies as lemon drops and gumdrops. The water cycle would be destroyed, arable land would become unusable, and the ocean the would dry up. Humanity would perish in this wasteland-like scenario, probably hopped up on sugar.&lt;br /&gt;
|&lt;br /&gt;
|{{book|2|64}}&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|'''Bonus Chapter'''&lt;br /&gt;
|''&amp;quot;..&amp;lt;!-- This is how it's written in the book, don't turn it into an ellipsis --&amp;gt;.but what if we tried even ''more'' power?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;—Randall Munroe&amp;lt;/div&amp;gt;&lt;br /&gt;
| This is a continuation of {{what if|13|13: Laser Pointer}}. Adding even more power than the end of that article would heat the air so much that the lasers would stop themselves long before reaching the Moon. Even if we managed to get them to hit the Moon, the plasma created would be so hot that it would stop anyway.&lt;br /&gt;
|&lt;br /&gt;
|{{book|3|70}}&lt;br /&gt;
|{{book|19|2024|12|03|jgafb8G7i4o|But what if we tried MORE power?}}&lt;br /&gt;
|-&lt;br /&gt;
|}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Editors&amp;quot;&amp;gt;&amp;lt;big&amp;gt;&amp;lt;big&amp;gt;'''Editors'''&amp;lt;/big&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/span&amp;gt; ㅤ ''[[#Article index|(jump back to table)]]''&lt;br /&gt;
&lt;br /&gt;
These templates are used in this table: {{tl|what if}}, {{tl|What If}}, {{tl|book}}, {{tl|blog}}.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Add YouTube video'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|YT-NUMBER|YYYY|MM|DD|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''&amp;lt;nowiki&amp;gt;HTTPS://LINK&amp;lt;/nowiki&amp;gt;'''''&amp;lt;/font&amp;gt;|VIDEO-TITLE}}&lt;br /&gt;
 '''EXAMPLE:''' &amp;lt;nowiki&amp;gt;{{book|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''2'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''2022'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''12'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''31'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''https://www.youtube.com/watch?v=2LSyNhb5Y'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''What if everyone pointed a laser at the m&amp;lt;!--DO NOT CAPITALISE THE &amp;quot;m&amp;quot;: This is how it's written on the site, it should not be changed.--&amp;gt;oon?'''''&amp;lt;/font&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Add book chapter'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For the first [[What If? (book)|What If? book]]:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''1'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''CHAPTER-NUMBER'''''&amp;lt;/font&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
For the second [[What If? 2]] book:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''2'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''CHAPTER-NUMBER'''''&amp;lt;/font&amp;gt;}}&lt;br /&gt;
 &lt;br /&gt;
 '''EXAMPLE:'''&amp;lt;nowiki&amp;gt;{{book|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''2'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''69'''''&amp;lt;/font&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
If an article is available exclusively on the third book ([[What If? 10th Anniversary Edition]]) and not in the first two, use this:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;{{book|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''3'''''&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''CHAPTER-NUMBER'''''&amp;lt;/font&amp;gt;}}&lt;br /&gt;
&amp;lt;big&amp;gt;'''Link to a ''what if?'' article'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On this wiki, an easy way to link to a given ''what if?'' article is by using the {{Template|what if}} template. Copy and paste the text below, correcting the number and title (highlighted in green) to get this result:&lt;br /&gt;
&lt;br /&gt;
 '''EXAMPLE:'''&lt;br /&gt;
 See the &amp;lt;nowiki&amp;gt;''[[what if? (blog)|what if?]]'' article ''{{what if|&amp;lt;/nowiki&amp;gt;&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;&amp;lt;ins&amp;gt;'''''158'''''&amp;lt;/ins&amp;gt;&amp;lt;/font&amp;gt;|&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;&amp;lt;ins&amp;gt;'''''Hot Banana'''''&amp;lt;/ins&amp;gt;&amp;lt;/font&amp;gt;}}&amp;lt;nowiki&amp;gt;''&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
 '''RESULTS IN:'''&lt;br /&gt;
 See the ''[[what if? (blog)|what if?]]'' article ''{{what if|158|Hot Banana}}''.&lt;br /&gt;
&lt;br /&gt;
NOTE: Since the blog releases are now random, please write a comment on [[{{LATESTCOMIC}}#Discussion|the newest comic's talk page]] to announce that a new ''what if?'' article is out.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;'''Add name of reader who asked the question.'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here's how to add the name(s) to any question on the table. For example, this...&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|''&amp;quot;What if all the raindrops were lemon drops and gumdrops?&amp;quot;''&lt;br /&gt;
|Human civilization would collapse, and we would all die.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
... becomes this:&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;|''&amp;quot;What if all the raindrops were lemon drops and gumdrops?&amp;quot;''&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;&amp;lt;/nowiki&amp;gt;'''—'''&amp;lt;font color=&amp;quot;SeaGreen&amp;quot;&amp;gt;'''''InsertNamesHere'''''&amp;lt;/font&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|Human civilization would collapse, and we would all die.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Copy the code and replace the green part! (NOTE: It uses the em-dash, not a normal hyphen, so don't replace the dash, or use &amp;lt;code&amp;gt;&amp;amp;amp;mdash;&amp;lt;/code&amp;gt;.) Transcribe it exactly as it is written on the website or book, including parenthesis and age, if given by Randall. '''Protip for desktop users:''' the text looks ALL CAPS on the site, but if you copy and paste it, it's in normal Sentence Case. You can simply copy and paste.&lt;br /&gt;
&lt;br /&gt;
''[[#Article index|(jump back to table)]]''&lt;br /&gt;
&amp;lt;span id=&amp;quot;bottom&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
{| style=&amp;quot;border: 1px solid {{{border|gray}}}; background-color: {{{color|#fdffe7}}};&amp;quot;&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; style=&amp;quot;vertical-align:middle;&amp;quot; | {{{{{|safesubst:}}}#ifeq:{{{2}}}|alt|[[File:What If Barnstar.jpeg|100px]]|[[File:What If Barnstar.jpeg|100px]]}}&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|style=&amp;quot;font-size: x-large; padding: 0; vertical-align: middle; height: 1.1em;&amp;quot; | '''The What If? Project Barnstar'''&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;vertical-align: middle; border-top: 1px solid gray;&amp;quot; | &amp;lt;div style=&amp;quot;font-family: Cormorant Garamond&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size:5pt;color:black&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:#9eff9e;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:green; font-size:1.4em;&amp;quot;&amp;gt;'''&amp;amp;nbsp;✓'''&amp;lt;/span&amp;gt;&amp;lt;big&amp;gt;&amp;amp;nbsp;'''Added:&amp;amp;nbsp;'''&amp;lt;/big&amp;gt;&amp;lt;/span&amp;gt; All ~140 book-exclusive articles, each color-coded by book; reader question and Randall's answer for almost all ~70 [[What If? 2]]-exclusive articles; EVERY YouTube video and its associated article; over new 130 thumbnails uploaded; new article from [[What If? 10th Anniversary Edition|the new book]] and the [[what if? (blog)#top|deleted article]].&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span style=&amp;quot;background-color:#9eff9e;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;color:green; font-size:1.4em;&amp;quot;&amp;gt;'''&amp;amp;nbsp;✓'''&amp;lt;/span&amp;gt;&amp;lt;big&amp;gt;&amp;amp;nbsp;'''Changes:&amp;amp;nbsp;'''&amp;lt;/big&amp;gt;&amp;lt;/span&amp;gt; Merged columns No., Release date, and Weeks since last release; every column now easily sortable; columns Blog, Book (new), and YouTube (new) now use {{template|blog}} and {{template|book}} and are color-coded; split ''Short-Answer Sections'' into different cells; title bold and question italics and quoted!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Great Job to everyone who helped out on this project! If you helped out explain the articles or build the table, feel free to sign here: '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:5pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:2pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 17:44, 14 February 2025 (UTC), [[User:WriterArtistCoder|WriterArtistCoder]]&amp;lt;sup&amp;gt;[[User talk:WriterArtistCoder|talk to me]]&amp;lt;/sup&amp;gt; 21:56, 11 March 2025 (UTC), [[User:FaviFake|FaviFake]] ([[User talk:FaviFake|talk]]) 15:53, 12 March 2025 (UTC) --'''''[[User:DollarStoreBa'al |&amp;lt;span style=&amp;quot;font-family:Atomic Age;font-size:5pt;color:red;&amp;quot;&amp;gt;DollarStoreBa'al&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:DollarStoreBa'al |'''''Converse''''']]&amp;lt;/sup&amp;gt;[[DSBContribs |'''''My life choices''''']] 23:30, 14 June 2025 (UTC) [[User:1234231587678|1234231587678]] ([[User talk:1234231587678|talk]]) 20:48, 26 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:What If?| 9]]{{xkcdmeta}}&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=779:_Anxiety&amp;diff=413499</id>
		<title>779: Anxiety</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=779:_Anxiety&amp;diff=413499"/>
				<updated>2026-05-26T00:53:16Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 779&lt;br /&gt;
| date      = August 13, 2010&lt;br /&gt;
| title     = Anxiety&lt;br /&gt;
| image     = anxiety.png&lt;br /&gt;
| titletext = Don't need any, thanks. I have a backscattering fetish.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Some people are upset about airport security policies that mandate the use of {{w|backscatter X-ray}} machines, since the machines can create an image of the subject naked. In protest, the travellers in the lineup (or at least the male ones) are taking {{w|Sildenafil|Viagra}}, sold to them by [[Black Hat]]; there is a heteronormative expectation that the male security guard will be disgusted at being forced to look at erect penises. (An expectation which is supported by the guard's thought bubble of &amp;quot;Oh God&amp;quot;, which could either be in response to seeing what Black Hat is doing or in response to an unseen person, presumably sporting such an erection, already in the scanner.) Alternatively, the guard may just be worried by the fact that Black Hat is selling unidentified pills which might contain harmful ingredients.&lt;br /&gt;
&lt;br /&gt;
Given Black Hat's personality, it is unlikely he himself is doing this in protest; rather he is monetizing the opportunity, a supposition reinforced by the inflated price ($20 for a single dose) at which he is selling the medication{{cn}}.&lt;br /&gt;
&lt;br /&gt;
An alternate interpretation is that many men feel self-conscious (or anxious, as the title puts it) about their size when flaccid{{citation needed}}, and thus might wish to &amp;quot;put their best foot forward&amp;quot; and look their best.&lt;br /&gt;
&lt;br /&gt;
Realistically, given the size of the line, there would be insufficient time between consuming the pills and entering the scanner for them to take effect.&lt;br /&gt;
&lt;br /&gt;
In the title text, one of the people in the line explains he has a {{w|sexual fetish|fetish}} with being X-ray scanned, and thus doesn't need Viagra to achieve the above effect.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[There is an airport security checkpoint where a queue of ten passengers is waiting to go through a backscatter X-ray scanner. Near the back of the line, Black Hat is standing next to a stand and a sign which says &amp;quot;Viagra $20&amp;quot;. One passenger next to him is drinking a glass of water; another is contemplating the sign.]&lt;br /&gt;
:Security Guard (thinking): Oh God.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Sex]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Aviation]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=737:_Yogurt&amp;diff=413462</id>
		<title>737: Yogurt</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=737:_Yogurt&amp;diff=413462"/>
				<updated>2026-05-25T15:48:03Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 737&lt;br /&gt;
| date      = May 7, 2010&lt;br /&gt;
| title     = Yogurt&lt;br /&gt;
| image     = yogurt.png&lt;br /&gt;
| titletext = I am firmly of the opinion that if something doesn't have a year on it, every time the expiration date rolls around it is good again for the two weeks preceding that date.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Most packaged food has an {{w|shelf life|expiration date}} that indicates when the food will probably no longer be suitable for consumption. This could be due to any number of reasons; most products will rot or grow mold after their expiration date passes, but some processed foods will &amp;quot;dry out&amp;quot; or just generally become &amp;quot;unpleasant&amp;quot; long before they spoil. The expiration date is sometimes called a &amp;quot;best before&amp;quot; or &amp;quot;use by&amp;quot; date for this reason.&lt;br /&gt;
&lt;br /&gt;
Some products don't list the year as part of the expiration date, on the assumption that by the time the year becomes an issue, the food will be spoiled. [[Cueball]] and his guest are encountering this issue; clearly, the yogurt has gone bad - it's raising &amp;quot;stink lines&amp;quot; and appears to have visible mold - but the expiration date only lists &amp;quot;May 12th&amp;quot; and it's currently May 7th, so Cueball reasons that it must still be good since the expiration date hasn't passed yet. Somehow, he fails to notice the terrible smell coming off of it.&lt;br /&gt;
&lt;br /&gt;
The {{w|Gregorian calendar}} was initially adopted in the Catholic European countries in 1582 to correct the slow drift of the seasons relative to the calendar year that occurred under the Julian calendar. The Protestant and Orthodox countries were slower to adopt it. The British Empire, including the American colonies, adopted the Gregorian calendar in 1752. Cueball (in a seemingly sarcastic manner) wonders whether the expiration date might have been printed under the Julian Calendar, i.e., at least just under a century prior (some nations in Eastern Europe changed from the Julian Calendar to the Gregorian Calendar only around the time of the First World War).&lt;br /&gt;
&lt;br /&gt;
The {{w|Gregorian calendar}} (our current calendar) is mostly the same as the {{w|Julian calendar}} with two major differences:&lt;br /&gt;
&lt;br /&gt;
*The Julian calendar overestimated the length of a year by 10 minutes 48 seconds or about 1 day every 128 years. The Gregorian calendar has 97 leap days every 400 years instead of 100, which reduces the error to about 1 day in 3300 years.&lt;br /&gt;
*As each country adopted the Gregorian calendar, it was necessary to skip the appropriate number of days to realign the {{w|Vernal Equinox}} with March 21. When the British Empire adopted the Gregorian calendar in 1752, 11 days had to be skipped, so in the English-speaking countries, September 2, 1752, under the Julian calendar was immediately followed by September 14, 1752, under the Gregorian calendar; there was no September 3–13 in that year.&lt;br /&gt;
&lt;br /&gt;
The last line spoken by Cueball may mean one of two things: either 1) he is continuing to be sarcastic toward his friend, or 2) he is genuinely considering that it may not have gone bad, despite all the clues saying otherwise.&lt;br /&gt;
&lt;br /&gt;
The title text is Randall's own (absurd){{Citation needed}} view: for a short period preceding the expiration date of any food, no matter how many years have passed, it suddenly becomes good to eat again. One might also wonder if the last two digits of the year were given in addition to just the day and month, and if Randall were given centuries to live, he might apply this principle centennially instead of annually.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is holding a yogurt cup with spots on it at arm's length. Waves of stink are rising from it.]&lt;br /&gt;
:Cueball: Oh God, how old is this yogurt in your fridge?&lt;br /&gt;
:[Someone speaks from off-panel.]&lt;br /&gt;
:Friend: What's the expiration date?&lt;br /&gt;
&lt;br /&gt;
:[Cueball holds up the cup to look at the bottom.]&lt;br /&gt;
:Cueball: May 12th, but there's no year.&lt;br /&gt;
:[From off-panel again.]&lt;br /&gt;
:Friend: It's May 7th. So it's fine.&lt;br /&gt;
&lt;br /&gt;
:[Now the second person is on panel, and Cueball speaks from off-panel. The second person is sitting down working on a laptop.]&lt;br /&gt;
:Cueball: I'm not sure. When it was packaged, was civilization using the Gregorian or Julian calendar?&lt;br /&gt;
:Friend: ''Okay,'' I'll throw it out.&lt;br /&gt;
:Cueball: No, it might still be good!&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Calendar]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=660:_Sympathy&amp;diff=413461</id>
		<title>660: Sympathy</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=660:_Sympathy&amp;diff=413461"/>
				<updated>2026-05-25T15:46:06Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 660&lt;br /&gt;
| date      = November 9, 2009&lt;br /&gt;
| title     = Sympathy&lt;br /&gt;
| image     = sympathy.png&lt;br /&gt;
| titletext = Excellent recovery:... which we could try to use to somehow save your original brother!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic plays at the lack of social skills physicists and other people in heavily scientific disciplines are stereotypically believed to have. The example displayed is a case of condolence, in which the appropriate behaviour would of course be to express compassion with the bereaved, as shown in the second panel.&lt;br /&gt;
&lt;br /&gt;
In the third panel, the physicist fails to display the endorsed demeanour. Instead, he takes a scientific approach towards the statement of his friend. He points out that the transmission of the information that the latter's brother died, which triggered the pain that the latter believes to have felt, is in fact limited by the {{w|speed of light}} and could therefore not have been 'instant'. By saying so, he betrays an absence of feeling towards his friend, as well as his inability to understand the figurative sense of the words.&lt;br /&gt;
&lt;br /&gt;
In the last panel, the physicist takes the previous to a bizarre extreme and reflects on the consequences that would follow if the statement of his friend were indeed literally true. According to {{w|special relativity}}, any object travelling faster than at the speed of light would in fact move backwards in time. The physicist therefore plans to utilize this effect in order to construct a {{w|tachyonic antitelephone}}, a device that allows sending information to the past. To confirm the initial condition, he makes the utterly inappropriate proposal to start a series of measurements by killing other family members of his friend. Of course, virtually no one would agree to this.&lt;br /&gt;
&lt;br /&gt;
A correction of the misdemeanour is suggested in the title text: The antitelephone might be used to change causality and save the original brother from dying in the first place. Of course, saying the latter would not be of much help in the given scenario, although it does serve a noticeable improvement over the last two panels.&lt;br /&gt;
&lt;br /&gt;
Note how he says 'original brother', noting that although he would have saved his brother, another family member would have to have been killed to do so.&lt;br /&gt;
&lt;br /&gt;
The use of the &amp;quot;right, wrong, very wrong&amp;quot; template is also presented in [[803: Airfoil]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Sympathy Tips for Physicists&lt;br /&gt;
:[Cueball and friend are talking.]&lt;br /&gt;
:Friend: The moment my brother died, I felt a searing pain in my heart.&lt;br /&gt;
&lt;br /&gt;
:Right:&lt;br /&gt;
:[Cueball places his hand on the friend's shoulder.]&lt;br /&gt;
:Cueball: I'm so sorry.&lt;br /&gt;
&lt;br /&gt;
:Wrong:&lt;br /&gt;
:Cueball: Was it instant, or was there a speed-of-light delay?&lt;br /&gt;
&lt;br /&gt;
:Very Wrong:&lt;br /&gt;
:[Cueball thoughtfully puts his hand on his chin.]&lt;br /&gt;
:Cueball: If it was instant, with the right arrangement of moving reference frames, we could use this to send signals back in time and violate causality! How many remaining siblings do you have?&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Social interactions]]&lt;br /&gt;
[[Category:Comics with a Spanish translation]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2387:_Blair_Witch&amp;diff=413457</id>
		<title>2387: Blair Witch</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2387:_Blair_Witch&amp;diff=413457"/>
				<updated>2026-05-25T14:29:26Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2387&lt;br /&gt;
| date      = November 18, 2020&lt;br /&gt;
| title     = Blair Witch&lt;br /&gt;
| image     = blair_witch.png&lt;br /&gt;
| titletext = &amp;quot;Are you concerned the witches won't breed in captivity?&amp;quot; &amp;quot;Honestly, we're more concerned that they WILL. We don't know what it involves, but our biologists theorize that it's 'harrowing.'&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
''{{w|The Blair Witch Project}}'' is a {{w|found footage (film technique)|found footage}} horror film released in 1999. For the marketing campaign of the film, the producers created the legend of the Blair Witch, a supernatural being whose legend originates in {{w|Burkittsville|Burkittsville, Maryland}}. As it sometimes happened in Protestant societies in the {{w|colonial era}}, a woman was ostracized from the community after having been accused of {{w|witchcraft}}. This woman, who tends to conflict in name with various versions of the lore, would supposedly attempt to inflict revenge upon the community that exiled her, and these fearful people fled from the town. &lt;br /&gt;
&lt;br /&gt;
The comic takes a humorous turn on the legend, suggesting a conservation program to save the Blair Witch. While the film was described by reliable sources as faked and misrepresented footage, the Blair Witch is postulated as separate species that is being tracked by the {{w|IUCN Red List}}. With the rise of camera-phones in the modern age, sightings of {{w|List of cryptids|beings that are most likely fictitious}}, such as Bigfoot and the Loch Ness Monster, are becoming rarer over time, due to [[1235: Settled|lack of credibility of a reported sighting without visual evidence]] (although with the rise of deepfakes, even visual evidence might lose credibility in the future). A species which has not been notably documented for a long time would indeed be moved to the &amp;quot;possibly {{w|extinct in the wild}}&amp;quot; category, as [[Megan]] notes.&lt;br /&gt;
&lt;br /&gt;
Rather than taking this to mean the Blair Witch does not exist however, Megan instead suggests {{w|habitat loss}} as the reason why encountering a Blair Witch might be more difficult. Habitat loss is in fact one of the most prominent and concerning reasons for extinction in recent years. Megan claims that suburban projects have fragmented the witch's &amp;quot;spooky forest&amp;quot; ecosystem, a reference to the many species that are dying off due to encroachment, logging, and similar human activities. Migration due to {{w|climate change}} is also an observable phenomenon in animal populations (and some plant populations, depending on their mode of travel while in seeds; those that rely on animals to germinate will migrate as well).&lt;br /&gt;
&lt;br /&gt;
Megan then proposes a plan to catch and breed Blair Witches in an attempt to resurrect the species. This final panel is more obviously humorous, as even if the Blair Witch ''did'' exist separate from humans, there is only one, and thus any attempt to breed and repopulate would be futile. It may be possible that {{w|Parthenogenesis|this is not a problem}}, but if it is, it could also raise the objection that any pair of Blair Witch may both be female, and thus unable to reproduce. This could be resolved by (a) assuming that Witches can ({{w|Sequential hermaphroditism|sometimes?}}) be male as well, (b) assuming that half of Blair Witches are transgender, or (c) assuming that, much like Tremblay's salamander, females can reproduce with a male of a related species (most likely human, in which case the project might have difficulty obtaining approval from an {{w|Institutional review board|ethics review board}}.) The phrase &amp;quot;Blair Witch Reintroduction Project&amp;quot; is a reference to ''The Blair Witch Project''.&lt;br /&gt;
&lt;br /&gt;
The title-text suggests that the comic is a lecture, as Megan's whiteboard and pointer would suggest. A (presumed) student asks whether Megan is concerned that witches won't breed in captivity (a serious real-world concern to the IUCN). If this is a press conference, the question would be asked by a reporter instead.  Megan replies that they are worried that there ''will'' be breeding, but biologists are unsure how the breeding occurs, calling it &amp;quot;harrowing&amp;quot; (presumably because they have captured the Blair Witch and it has set a curse on their laboratory as she supposedly did in Burkittsville).  Historically, communities practicing witchcraft may have fled to the woods to engage in sometimes very sexual behaviors that others at the time were very frightened by.&lt;br /&gt;
&lt;br /&gt;
Randall previously wrote about an ill-advised fauna introduction project in [[2349: Rabbit Introduction]], but at least rabbits are cuter and less harrowing than witches.{{Citation needed}} &amp;lt;sup&amp;gt;&amp;amp;#91;''{{w|Rabbit of Caerbannog|disputed}}''&amp;amp;#93;&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan is standing in front of a screen looking away from it at an audience off-panel. She is holding a stick, pointed at the chart behind her. The chart shows the stick figure from ''The Blair Witch Project''. Above is an unreadable line of text, and below are two smaller rectangles a smaller one above the other, the small seems to be empty, but there seems to be some kind of graph in the bottom one.]&lt;br /&gt;
:Megan: Other than the fake 1999 video, there have been no Blair Witch sightings in 30+ years.&lt;br /&gt;
:Megan: The IUCN redlist says the witch is &amp;quot;possibly extinct in the wild.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:[A close-up of Megan's face. The screen now shows a habitat map, with four separate shaded areas enclosed in a dotted line. The dotted line and one of the areas goes to the upper edge of the screen indicating they continue beyond the shown area. Beneath the dotted line and to the right there are three small squares, one of them clearly shaded the same way as the areas above. Next to each there is an unreadable label.]&lt;br /&gt;
:Megan: Development in the Maryland suburbs has fragmented the spooky forest habitat.&lt;br /&gt;
:Megan: Climate change will push any remnant populations north.&lt;br /&gt;
&lt;br /&gt;
:[Back to the original setting, Megan is standing with the stick pointing downwards, and the chart is out of frame.]&lt;br /&gt;
:Megan: That's why we plan to capture any surviving witches and establish a breeding population.&lt;br /&gt;
:Megan: Then, in time, the Blair Witch Reintroduction Project can begin.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Movies]]&lt;br /&gt;
[[Category:Biology]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2203:_Prescience&amp;diff=413454</id>
		<title>2203: Prescience</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2203:_Prescience&amp;diff=413454"/>
				<updated>2026-05-25T14:08:51Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2203&lt;br /&gt;
| date      = September 16, 2019&lt;br /&gt;
| title     = Prescience&lt;br /&gt;
| image     = prescience.png&lt;br /&gt;
| titletext = Lots of people called their ships unsinkable before the Titanic. Voicing your hubris doesn't make failure more likely, just more memorable.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
In this comic, [[Cueball]] states that it's been a long time since there's been a really big {{w|Impact event|meteor impact}}. Due to the {{w|gambler's fallacy}}, this is taken to be Cueball implying that a big meteor impact is coming soon. The off-panel voice is annoyed about his statement, but whether from fear of it happening or because he does this all the time is unclear, see more below. The joke is that Cueball does this often, also with other types of major random events, just in case they do actually happen soon. For instance, if there does happen to be an impact soon after he made the statement, it makes him look incredibly {{w|prescient}}, whereas if there isn't one, no one really cares or remembers.&lt;br /&gt;
&lt;br /&gt;
It is also unclear how big an impact he refers to. It has been 60 million years since the {{w|Cretaceous–Paleogene extinction event|impact that killed the dinosaurs}}, but that if that is the type of event he refers to, then maybe no one will be there to remember what he said. So, it is likely much smaller impacts he is talking about. ''Prescience'' means to predict the future. It is clear from this comic that [[Randall]] makes fun of both of those that claim to have prescience and of those that have a superstition against talking about something happening that could cause it to happen. Although only one method is scientifically recognized, there are at least three possible sources of prescience recognized by people.&lt;br /&gt;
&lt;br /&gt;
The first of the two main ways of predicting the future involves a mix of common sense and historical knowledge.  By understanding the past, the direction of the future can be guessed at with varying levels of accuracy.  This type of prescience is also known sometimes as future modelling, statistical prediction, psychohistory, and even wisdom to name a few. The second way to predict the future is not scientifically recognized but remains popular in culture and fiction.  It can involve magic, psychic power, higher powers (gods), and other such methods.  Collectively, they are labelled supernatural; any method to predict the future using this class of method cannot be easily measured by science.&lt;br /&gt;
&lt;br /&gt;
Although not technically a way to predict the future, the third way to predict the future is through superstition.  The method involved in this comic effectively boils down to &amp;quot;speak the name of evil, and you will summon it.&amp;quot;  This superstition can have surprising power in people's lives, however.  A woman planning her outdoor wedding may feel the urge to hit her friend if they say &amp;quot;Gosh, I hope it doesn't rain on that day.&amp;quot;  A doctor working in the Emergency Room may feel the need to kick anyone who says &amp;quot;Wow, it's really quiet around here.&amp;quot;  Such thoughts spoken aloud do not have the power to control the weather or cause people to seriously injure themselves{{cn}}.  Yet people often react emotionally as if not speaking the name of 'evil' will keep it away.&lt;br /&gt;
&lt;br /&gt;
This comic may reflect that emotional reaction when the off-screen character yells at Cueball: &amp;quot;Will you stop that?!&amp;quot;. Alternatively, it is one, like [[Megan]], who knows Cueball well enough to know that which is stated in the caption, that he only does this to look good if said thing happens. And the person is so tired of it! Maybe Cueball does it at least once a week, and obviously from the caption, it is not only about meteor impact, but any major random event, that he could then be remembered as having predicted. The title has a double meaning. The first meaning is about the prescience that would appear if one actually predicts a natural disaster this way. The second meaning involves the fact that it is spelled pre-science - since there are many more scientific ways to predict meteor impacts, even though they aren't entirely accurate. This comic has a clear resemblance to the [[:Category:My Hobby|My Hobby]] series. This would also make it clear the Cueball in this comic is actually [[Randall]]. The entire setup and punch line of this comic is very similar to this old comic: [[525: I Know You're Listening]], and [[628: Psychic]] and [[858: Milk]] also use the idea of guessing something that will make you look special.&lt;br /&gt;
&lt;br /&gt;
The title text refers to the {{w|RMS Titanic|RMS ''Titanic''}}, a ship which was claimed to be unsinkable by those promoting its maiden voyage. The use of multiple water-tight compartments allowed the ship to suffer a moderate amount of damage without sinking. Unfortunately, there existed a way for the ship to suffer damage in a way which caused more compartments to be filled with water than it could survive; and, therefore, it could &amp;amp;mdash; and eventually ''did'' &amp;amp;mdash; sink. But with all the news stories that had just been published hailing this unsinkable ship as a modern wonder of the world, this shipwreck was particularly ironic. The story of the sinking of the ''Titanic'' has been memorialized in popular culture, most memorably in the 1997 film {{w|Titanic (1997 film)|Titanic}}. &lt;br /&gt;
&lt;br /&gt;
In the title text, Randall thus suggests that lots of ships had been called unsinkable before Titanic. But saying such {{w|hubris}} aloud doesn't make any ship more likely to sink. But when such a ship, like Titanic, then sinks it does, however, increase the value of the story ensuring it will be remembered. It should be noted that few among the ship's builders or crew boasted the ''Titanic'' to be unsinkable. Most of the boasting came from the owners that used the news media of the day to create hype and promote their ship, just when the ship was finished and dedicated (the ship's builders did, however, boast that the ship exceeded all safety standards of the time). In addition, the hubris was only one small part of the fame of the sinking of the ''Titanic''; the ''Titanic''&amp;lt;nowiki&amp;gt;'&amp;lt;/nowiki&amp;gt;s status as a world record setter for most massive ship ever built, the incredible wealth of most of its passengers, and the fact it sank on its maiden voyage all contributed to the fame and hype behind the great maritime tragedy.&lt;br /&gt;
&lt;br /&gt;
Ironically, part of what caused this disaster was hubris, since those that were interested in promoting the ship also wished it to make a speed record, by reaching New York a day before expected. Thus, the captain, even though he would have realised that the ship could sink, took the fateful decisions of running at full speed through waters known to contain icebergs during a still night with very calm waters. Spotting icebergs in such conditions is known to be difficult, especially as there will be no notably foaming waves around the icebergs' bases and patchy mists will inconveniently diffuse the horizons and any useful starlight.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is sitting in an armchair holding a book. He seems to be looking off as he talks to an off-panel person behind him. This person replies.]&lt;br /&gt;
:Cueball: You know, it's been a while since there's been a really big meteor impact.&lt;br /&gt;
:Off-panel voice: '''''Will you stop that?!'''''&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:I say this kind of thing every so often, because I don't believe it affects the outcome and it has a slim chance of looking ''incredibly'' prescient.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2203:_Prescience&amp;diff=413453</id>
		<title>2203: Prescience</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2203:_Prescience&amp;diff=413453"/>
				<updated>2026-05-25T14:05:29Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2203&lt;br /&gt;
| date      = September 16, 2019&lt;br /&gt;
| title     = Prescience&lt;br /&gt;
| image     = prescience.png&lt;br /&gt;
| titletext = Lots of people called their ships unsinkable before the Titanic. Voicing your hubris doesn't make failure more likely, just more memorable.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
In this comic, [[Cueball]] states that it's been a long time since there's been a really big {{w|Impact event|meteor impact}}. Due to the {{w|Gambler's Fallacy}}, this is taken to be Cueball implying that a big meteor impact is coming soon. The off-panel voice is annoyed about his statement, but whether from fear of it happening or because he does this all the time is unclear, see more below. The joke is that Cueball does this often, also with other types of major random events, just in case they do actually happen soon. For instance, if there does happen to be an impact soon after he made the statement, it makes him look incredibly {{w|prescient}}, whereas if there isn't one, no one really cares or remembers.&lt;br /&gt;
&lt;br /&gt;
It is also unclear how big an impact he refers to. It has been 60 million years since the {{w|Cretaceous–Paleogene extinction event|impact that killed the dinosaurs}}, but that if that is the type of event he refers to, then maybe no one will be there to remember what he said. So, it is likely much smaller impacts he is talking about. ''Prescience'' means to predict the future. It is clear from this comic that [[Randall]] makes fun of both of those that claim to have prescience and of those that have a superstition against talking about something happening that could cause it to happen. Although only one method is scientifically recognized, there are at least three possible sources of prescience recognized by people.&lt;br /&gt;
&lt;br /&gt;
The first of the two main ways of predicting the future involves a mix of common sense and historical knowledge.  By understanding the past, the direction of the future can be guessed at with varying levels of accuracy.  This type of prescience is also known sometimes as future modelling, statistical prediction, psychohistory, and even wisdom to name a few. The second way to predict the future is not scientifically recognized but remains popular in culture and fiction.  It can involve magic, psychic power, higher powers (gods), and other such methods.  Collectively, they are labelled supernatural; any method to predict the future using this class of method cannot be easily measured by science.&lt;br /&gt;
&lt;br /&gt;
Although not technically a way to predict the future, the third way to predict the future is through superstition.  The method involved in this comic effectively boils down to &amp;quot;speak the name of evil, and you will summon it.&amp;quot;  This superstition can have surprising power in people's lives, however.  A woman planning her outdoor wedding may feel the urge to hit her friend if they say &amp;quot;Gosh, I hope it doesn't rain on that day.&amp;quot;  A doctor working in the Emergency Room may feel the need to kick anyone who says &amp;quot;Wow, it's really quiet around here.&amp;quot;  Such thoughts spoken aloud do not have the power to control the weather or cause people to seriously injure themselves{{cn}}.  Yet people often react emotionally as if not speaking the name of 'evil' will keep it away.&lt;br /&gt;
&lt;br /&gt;
This comic may reflect that emotional reaction when the off-screen character yells at Cueball: &amp;quot;Will you stop that?!&amp;quot;. Alternatively, it is one, like [[Megan]], who knows Cueball well enough to know that which is stated in the caption, that he only does this to look good if said thing happens. And the person is so tired of it! Maybe Cueball does it at least once a week, and obviously from the caption, it is not only about meteor impact, but any major random event, that he could then be remembered as having predicted. The title has a double meaning. The first meaning is about the prescience that would appear if one actually predicts a natural disaster this way. The second meaning involves the fact that it is spelled pre-science - since there are many more scientific ways to predict meteor impacts, even though they aren't entirely accurate. This comic has a clear resemblance to the [[:Category:My Hobby|My Hobby]] series. This would also make it clear the Cueball in this comic is actually [[Randall]]. The entire setup and punch line of this comic is very similar to this old comic: [[525: I Know You're Listening]], and [[628: Psychic]] and [[858: Milk]] also use the idea of guessing something that will make you look special.&lt;br /&gt;
&lt;br /&gt;
The title text refers to the {{w|RMS Titanic|RMS ''Titanic''}}, a ship which was claimed to be unsinkable by those promoting its maiden voyage. The use of multiple water-tight compartments allowed the ship to suffer a moderate amount of damage without sinking. Unfortunately, there existed a way for the ship to suffer damage in a way which caused more compartments to be filled with water than it could survive; and, therefore, it could &amp;amp;mdash; and eventually ''did'' &amp;amp;mdash; sink. But with all the news stories that had just been published hailing this unsinkable ship as a modern wonder of the world, this shipwreck was particularly ironic. The story of the sinking of the ''Titanic'' has been memorialized in popular culture, most memorably in the 1997 film {{w|Titanic (1997 film)|Titanic}}. &lt;br /&gt;
&lt;br /&gt;
In the title text, Randall thus suggests that lots of ships had been called unsinkable before Titanic. But saying such {{w|hubris}} aloud doesn't make any ship more likely to sink. But when such a ship, like Titanic, then sinks it does, however, increase the value of the story ensuring it will be remembered. It should be noted that few among the ship's builders or crew boasted the ''Titanic'' to be unsinkable. Most of the boasting came from the owners that used the news media of the day to create hype and promote their ship, just when the ship was finished and dedicated (the ship's builders did, however, boast that the ship exceeded all safety standards of the time). In addition, the hubris was only one small part of the fame of the sinking of the ''Titanic''; the ''Titanic''&amp;lt;nowiki&amp;gt;'&amp;lt;/nowiki&amp;gt;s status as a world record setter for most massive ship ever built, the incredible wealth of most of its passengers, and the fact it sank on its maiden voyage all contributed to the fame and hype behind the great maritime tragedy.&lt;br /&gt;
&lt;br /&gt;
Ironically, part of what caused this disaster was hubris, since those that were interested in promoting the ship also wished it to make a speed record, by reaching New York a day before expected. Thus, the captain, even though he would have realised that the ship could sink, took the fateful decisions of running at full speed through waters known to contain icebergs during a still night with very calm waters. Spotting icebergs in such conditions is known to be difficult, especially as there will be no notably foaming waves around the icebergs' bases and patchy mists will inconveniently diffuse the horizons and any useful starlight.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is sitting in an armchair holding a book. He seems to be looking off as he talks to an off-panel person behind him. This person replies.]&lt;br /&gt;
:Cueball: You know, it's been a while since there's been a really big meteor impact.&lt;br /&gt;
:Off-panel voice: '''''Will you stop that?!'''''&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:I say this kind of thing every so often, because I don't believe it affects the outcome and it has a slim chance of looking ''incredibly'' prescient.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3249:_Neutrino_Project&amp;diff=413452</id>
		<title>3249: Neutrino Project</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3249:_Neutrino_Project&amp;diff=413452"/>
				<updated>2026-05-25T14:01:40Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3249&lt;br /&gt;
| date      = May 22, 2026&lt;br /&gt;
| title     = Neutrino Project&lt;br /&gt;
| image     = neutrino_project_2x.png&lt;br /&gt;
| imagesize = 324x471px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = We definitely put the pool in a mine for shielding. It was absolutely not to hide it from the funding people.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by a solar neutrino. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A {{w|neutrino}} is a type of subatomic particle that extremely rarely interacts with matter. In nearly all cases, neutrinos pass through objects, regardless of density or composition, with no effects whatsoever unless there are {{What If|73|a lot of them}}. For instance, about [https://icecube.wisc.edu/news/press-releases/2017/11/first-look-at-how-earth-stops-high-energy-neutrinos-in-their-tracks/ 100 trillion neutrinos pass through your body every second] to no noticeable effect.&lt;br /&gt;
&lt;br /&gt;
However, there is a very small chance that a neutrino will collide with any material, including water, which has the advantage of being transparent to the light that occurs due to that interaction. Neutrinos can thus be detected by constructing a large pool of water, shielded from as many other particles and radiations as possible, and carefully monitoring it for the small flashes of light that occur when a neutrino does interact with one of the many water molecules within the pool. {{w|Photomultiplier tubes}} are used to assist in detecting these very faint and infrequent flashes and reveal the possible nature (and direction) of the interactions that caused them.&lt;br /&gt;
&lt;br /&gt;
The comic jokes that these detectors were not constructed with this purpose in mind. Instead, [[Cueball]] and [[Ponytail]], the organizers of this project, obtained funding for a “neutrino project” and then embezzled these funds for a pool party, likely primarily to buy the large swimming pool seen in the panel. They supposedly only then realize that the pool could be repurposed as an actual neutrino detector. It is unclear what, exactly, they had claimed to be building with the funding they somehow obtained. Probably given they didn't know how a neutrino detector worked the money was to find out how to build the detector - Though artistically enough if that was what the money was for, then given they managed to figure out how to build a neutrino detector, they did still somehow achieve their job!&lt;br /&gt;
&lt;br /&gt;
It is unclear how large the pool in the comic really is. The {{w|Super-Kamiokande}} detector in Japan, one of the world’s largest and most well-known neutrino detectors, holds over 50,000 tons of water. This is approximately 20 times the water capacity of {{w|Olympic-size swimming pool}}s. The only statement made about the water capacity in the swimming pool is “huge”, which is not a precise measurement of volume or mass{{Citation needed}}. The pool appears to be between 10 and 20 meters in diameter. While the surface of the pool seems to be at most half as large as that of an olympic-sized pool, its depth could be approximately the same, since it seems to safely allow jumps from an approximately 1m high platform. Therefore, a regular pool of this appearance would be expected to hold less water than an olympic-sized one, and certainly much less than would be required for an effective neutrino detector. However, since the bottom of the pool is not visible, the physicists ''might'' just have built a pool with an appropriate volume by making it extremely deep. Assuming a diameter of 20m and therefore a surface area of approximately 314m², the pool would need to be approximately 159m deep. Constructing such a pool would be even more expensive than building a neutrino detector{{Citation needed}}, thanks to the large depth. It's more likely that the pool simply isn't circular with such a small diameter. The problem that the pool is too small is not a problem in the context of the cartoon. The final report to the funding agency would simply conclude &amp;quot;Would work, but we need a larger pool for the next one.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The title text elaborates on why the pool was suitable for a neutrino detector. In real life, these detectors must be heavily shielded from all other particle interactions that might drown out neutrino interactions. This generally requires them to be deep underground (like {{w|Deep Underground Neutrino Experiment|this}} and {{w|Sudbury Neutrino Observatory|this}} and {{w|Super-Kamiokande|this}}), so a surface-level pool would obviously be unsuitable for that purpose. Randall implies that the pool was built in a deep mine in order to prevent it from being noticed by the people responsible for funding the project, due to them having misused the funding money. which could fulfill the shielding requirement but is a humorously excessive strategy for hiding a swimming pool from a small group of people - Particulary as there are many more discreet ways of wasting fund money than a massive pool party, so if they were concerned about being found they could have just been more subtle.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[There is a large pool with a curved edge at the bottom of the panel, with a diving board and several stickfigures in and around it. Ponytail and Cueball are talking in the pool; two characters with relatively indistinct hair are in the water either side of them, passing a beachball between themselves; a Cueball has somersaulted off the diving board in a 'cannonball'-like jump; a Danish and a Ponytail with a drink are walking along the outside of the pool.]&lt;br /&gt;
&lt;br /&gt;
: Ponytail in pool: How much trouble do you think we'll be in when they find out we used the grant money to throw a huge pool party instead?&lt;br /&gt;
: Cueball: We could argue that we '''''did''''' build a neutrino detector.&lt;br /&gt;
: Cueball: There's a lot of water here. A solar neutrino will probably interact with it at '''''some''''' point.&lt;br /&gt;
: Ponytail: ...Wait. Actually, if we got some photomultiplier tubes...&lt;br /&gt;
&lt;br /&gt;
:[Caption below comic:]&lt;br /&gt;
:How the neutrino detector was invented&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3249:_Neutrino_Project&amp;diff=413451</id>
		<title>3249: Neutrino Project</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3249:_Neutrino_Project&amp;diff=413451"/>
				<updated>2026-05-25T13:58:46Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3249&lt;br /&gt;
| date      = May 22, 2026&lt;br /&gt;
| title     = Neutrino Project&lt;br /&gt;
| image     = neutrino_project_2x.png&lt;br /&gt;
| imagesize = 324x471px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = We definitely put the pool in a mine for shielding. It was absolutely not to hide it from the funding people.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by a solar neutrino. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A {{w|neutrino}} is a type of subatomic particle that extremely rarely interacts with matter. In nearly all cases, neutrinos pass through objects, regardless of density or composition, with no effects whatsoever unless there are {{What If|73|a lot of them}}. For instance, about [https://icecube.wisc.edu/news/press-releases/2017/11/first-look-at-how-earth-stops-high-energy-neutrinos-in-their-tracks/ 100 trillion neutrinos pass through your body every second] to no noticeable effect.&lt;br /&gt;
&lt;br /&gt;
However, there is a very small chance that a neutrino will collide with any material, including water, which has the advantage of being transparent to the light that occurs due to that interaction. Neutrinos can thus be detected by constructing a large pool of water, shielded from as many other particles and radiations as possible, and carefully monitoring it for the small flashes of light that occur when a neutrino does interact with one of the many water molecules within the pool. {{w|Photomultiplier tubes}} are used to assist in detecting these very faint and infrequent flashes and reveal the possible nature (and direction) of the interactions that caused them.&lt;br /&gt;
&lt;br /&gt;
The comic jokes that these detectors were not constructed with this purpose in mind. Instead, [[Cueball]] and [[Ponytail]], the organizers of this project, obtained funding for a “neutrino project” and then embezzled these funds for a pool party, likely primarily to buy the large swimming pool seen in the panel. They supposedly only then realize that the pool could be repurposed as an actual neutrino detector. It is unclear what, exactly, they had claimed to be building with the funding they somehow obtained. Probably given they didn't know how a neutrino detector worked the money was to find out how to build the detector - Though artistically enough if that was what the money was for, then given they managed to figure out how to build a neutrino detector, they did still somehow achieve their job!&lt;br /&gt;
&lt;br /&gt;
It is unclear how large the pool in the comic really is. The {{w|Super-Kamiokande}} detector in Japan, one of the world’s largest and most well-known neutrino detectors, holds over 50,000 tons of water. This is approximately 20 times the water capacity of {{w|Olympic-size swimming pool}}s. The only statement made about the water capacity in the swimming pool is “huge”, which is not a precise measurement of volume or mass.{{Citation needed}} The pool appears to be between 10 and 20 meters in diameter. While the surface of the pool seems to be at most half as large as that of an olympic-sized pool, its depth could be approximately the same, since it seems to safely allow jumps from an approximately 1m high platform. Therefore, a regular pool of this appearance would be expected to hold less water than an olympic-sized one, and certainly much less than would be required for an effective neutrino detector. However, since the bottom of the pool is not visible, the physicists ''might'' just have built a pool with an appropriate volume by making it extremely deep. Assuming a diameter of 20m and therefore a surface area of approximately 314m², the pool would need to be approximately 159m deep. Constructing such a pool would be even more expensive than building a neutrino detector{{Citation needed}}, thanks to the large depth. It's more likely that the pool simply isn't circular with such a small diameter. The problem that the pool is too small is not a problem in the context of the cartoon. The final report to the funding agency would simply conclude &amp;quot;Would work, but we need a larger pool for the next one.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The title text elaborates on why the pool was suitable for a neutrino detector. In real life, these detectors must be heavily shielded from all other particle interactions that might drown out neutrino interactions. This generally requires them to be deep underground (like {{w|Deep Underground Neutrino Experiment|this}} and {{w|Sudbury Neutrino Observatory|this}} and {{w|Super-Kamiokande|this}}), so a surface-level pool would obviously be unsuitable for that purpose. Randall implies that the pool was built in a deep mine in order to prevent it from being noticed by the people responsible for funding the project, due to them having misused the funding money. which could fulfill the shielding requirement but is a humorously excessive strategy for hiding a swimming pool from a small group of people - Particulary as there are many more discreet ways of wasting fund money than a massive pool party, so if they were concerned about being found they could have just been more subtle.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[There is a large pool with a curved edge at the bottom of the panel, with a diving board and several stickfigures in and around it. Ponytail and Cueball are talking in the pool; two characters with relatively indistinct hair are in the water either side of them, passing a beachball between themselves; a Cueball has somersaulted off the diving board in a 'cannonball'-like jump; a Danish and a Ponytail with a drink are walking along the outside of the pool.]&lt;br /&gt;
&lt;br /&gt;
: Ponytail in pool: How much trouble do you think we'll be in when they find out we used the grant money to throw a huge pool party instead?&lt;br /&gt;
: Cueball: We could argue that we '''''did''''' build a neutrino detector.&lt;br /&gt;
: Cueball: There's a lot of water here. A solar neutrino will probably interact with it at '''''some''''' point.&lt;br /&gt;
: Ponytail: ...Wait. Actually, if we got some photomultiplier tubes...&lt;br /&gt;
&lt;br /&gt;
:[Caption below comic:]&lt;br /&gt;
:How the neutrino detector was invented&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Danish]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1427:_iOS_Keyboard&amp;diff=412841</id>
		<title>1427: iOS Keyboard</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1427:_iOS_Keyboard&amp;diff=412841"/>
				<updated>2026-05-15T19:28:45Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1427&lt;br /&gt;
| date      = September 29, 2014&lt;br /&gt;
| title     = iOS Keyboard&lt;br /&gt;
| image     = ios_keyboard.png&lt;br /&gt;
| titletext = More actual results: 'Hello. My name is Inigo Montoya. You [are the best. The best thing ever]', 'Revenge is a dish best served [by a group of people in my room]', and 'They may take our lives, but they'll never take our [money].'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
It looks like [[Randall]] has been playing with his Apple device after installing the recently released {{w|iOS 8}} update. The comic is referencing the autocomplete function on the iOS virtual keyboard. A comparable feature is also available on other operating systems, like Android. When the phrase, for example, &amp;quot;Revenge is a dish best served&amp;quot; is typed, the keyboard will suggest “by” followed by “a” then “group” and so on.&lt;br /&gt;
&lt;br /&gt;
The top of the comic, where the keyboard is shown, is a reference to the character Sherlock Holmes, a detective who is often attributed the famous line &amp;quot;Elementary, my dear Watson&amp;quot; (despite having never said that in the canon). In Randall's typing history, the word &amp;quot;dear&amp;quot; is most often followed by &amp;quot;lord&amp;quot;, &amp;quot;friend&amp;quot;, or &amp;quot;friends,&amp;quot; and thus the phone suggests those words as a likely continuation of the line.&lt;br /&gt;
&lt;br /&gt;
The title text continues, by showing more actual results from keyboard predictions from other movie quotes.&lt;br /&gt;
&lt;br /&gt;
The following movies are referenced in the comic and title text:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Movie&lt;br /&gt;
!Character &amp;amp; Situation&lt;br /&gt;
!Full Quote&lt;br /&gt;
!iOS Keyboard Version&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|[http://www.imdb.com/title/tt0086250/quotes Scarface (1983)]&lt;br /&gt;
|Scarface is holding an M16, defending his house from Sosa's gunmen, shouting to attackers.&lt;br /&gt;
|&amp;quot;You wanna fuck with me? Okay. You wanna play rough? Okay. Say hello to my little friend!&amp;quot;&lt;br /&gt;
|Say hello to my little ''sister and my mom and my dad and my friends''&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0032138/quotes The Wizard of Oz (1939)]&lt;br /&gt;
|Dorothy with her dog, Toto, in Munchkin land.&lt;br /&gt;
|&amp;quot;Toto, I've a feeling we're not in Kansas anymore.&amp;quot;&lt;br /&gt;
|Toto, I've a feeling we're not ''going to the gym today''&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/character/ch0000007/quotes James Bond]&lt;br /&gt;
|Bond introducing himself, while holding trademark martini.&lt;br /&gt;
|&amp;quot;Bond, James Bond.&amp;quot; (nothing follows).&lt;br /&gt;
|Bond, James Bond ''yields''&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0379786/quotes Serenity (2005)]&lt;br /&gt;
|Wash, at the controls of Serenity.&lt;br /&gt;
|&amp;quot;I am a leaf on the wind - watch how I soar.&amp;quot;&lt;br /&gt;
|I am a leaf on the wind -  watch ''me play the piano''&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0089218/quotes The Goonies (1985)]&lt;br /&gt;
|Mikey standing at the pool in the wishing well, encouraging his troop of misfits to continue on their journey.&lt;br /&gt;
|&amp;quot;Goonies never say die!&amp;quot;&lt;br /&gt;
|Goonies never say ''anything''&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0120737/quotes The Lord of The Rings: The Fellowship of the Ring (2001)]&lt;br /&gt;
|Aragorn, Legolas &amp;amp; Gimli pledge allegiance to protect the ring bearer on their mission to destroy the ring.&lt;br /&gt;
|Aragorn: &amp;quot;If by my life or death I can protect you, I will. You have my sword.&amp;quot; Legolas: &amp;quot;And you have my bow.&amp;quot; Gimli: &amp;quot;And *my* axe.&amp;quot;&lt;br /&gt;
|Aragorn: &amp;quot;You have my sword.&amp;quot; Legolas: &amp;quot;And my bow.&amp;quot; Gimli: &amp;quot;And my ''dad''&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0093779/quotes The Princess Bride (1987)]&lt;br /&gt;
|Inigo Montoya facing the six fingered man, the man he swore a vendetta against for killing his father.&lt;br /&gt;
|&amp;quot;Hello. My name is Inigo Montoya. You killed my father. Prepare to die.&amp;quot;&lt;br /&gt;
|Hello. My name is Inigo Montoya. You ''are the best. The best thing ever''.&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0084726/ Star Trek: The Wrath of Khan (1982)]&lt;br /&gt;
|Khan paraphrasing Shakespeare to justify his vengeance.&lt;br /&gt;
|{{w|Revenge#Proverbs|&amp;quot;Revenge is a dish best served cold&amp;quot;}} (e.g. [http://www.imdb.com/title/tt0084726/quotes Star Trek: The Wrath of Khan (1982)]: Khan: &amp;quot;...do you know the Klingon proverb that tells us revenge is a dish that is best served cold?&amp;quot;) The quote is not originally from Star Trek but was used already in 1967 in {{w|Death Rides a Horse}} but it is likely that it is the Star Trek reference that is best known to Randall as it is also referenced as a Klingon proverb in {{w|Kill Bill: Volume 1}}.&lt;br /&gt;
|Revenge is a dish best served ''by a group of people in my room''.&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imdb.com/title/tt0112573/quotes Braveheart (1995)]&lt;br /&gt;
|Wallace rallying his Scottish army before a seemingly hopeless battle against the English.&lt;br /&gt;
|&amp;quot;They may take our lives, but they'll never take... OUR FREEDOM!&amp;quot;&lt;br /&gt;
|They may take our lives, but they'll never take our ''money''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
An older comic [[1068: Swiftkey]] is also about keyboard predictions, but without any preceding text (by the Swiftkey keyboard application instead of the iOS 8 keyboard).&lt;br /&gt;
&lt;br /&gt;
It is similar to [[2169: Predictive Models]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Movie quotes'''&lt;br /&gt;
:[Top picture shows a line typed on an iPhone.]&lt;br /&gt;
:Elementary, my dear&lt;br /&gt;
:[Then the next line shows the words suggested by the virtual keyboard.]&lt;br /&gt;
:Friend | Lord | Friends&lt;br /&gt;
:[Below are the visible part of keyboard. In the second line only the top of the letters can be seen.]&lt;br /&gt;
:QWERTYUIOP&lt;br /&gt;
:ASDFGHJKL&lt;br /&gt;
:[Below is a new sub heading above six pictures arranged in two rows.]&lt;br /&gt;
:According to iOS 8 keyboard predictions&lt;br /&gt;
:[For each of the six pictures a part of the text is black, and the other part is light grey. Below the black text is written in bold letters.]&lt;br /&gt;
:[Picture 1: Cueball stands with a machine gun.]&lt;br /&gt;
:Cueball: '''Say hello to my little''' sister and my mom and my dad and my friends&lt;br /&gt;
:[Picture 2: A girl stands next to her dog with a basket.]&lt;br /&gt;
:Girl: '''Toto, I've a feeling we're not''' going to the gym today&lt;br /&gt;
:[Picture 3: Bond talks to Megan.]&lt;br /&gt;
:James Bond: '''Bond, James Bond''' yields&lt;br /&gt;
:[Picture 4: A pilot operates his plane and talks to Cueball behind him.]&lt;br /&gt;
:Pilot: '''I'm a leaf on the wind. Watch''' me play the piano&lt;br /&gt;
:[Picture 5: A guy with dark hair stands behind a jagged edge.]&lt;br /&gt;
:Goonie: '''Goonies never say''' anything&lt;br /&gt;
:[Picture 6: A dwarf with long beard and helmet stands with an axe.]&lt;br /&gt;
:Off panel left: '''You have my sword.''' &lt;br /&gt;
:Off panel right: '''And my bow.'''&lt;br /&gt;
:Dwarf: '''And my''' dad&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Firefly]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:iOS]]&lt;br /&gt;
[[Category:Smartphones]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:LOTR]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3242:_Aperiodic_Table&amp;diff=412005</id>
		<title>3242: Aperiodic Table</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3242:_Aperiodic_Table&amp;diff=412005"/>
				<updated>2026-05-07T17:25:17Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3242&lt;br /&gt;
| date      = May 6, 2026&lt;br /&gt;
| title     = Aperiodic Table&lt;br /&gt;
| image     = aperiodic_table_2x.png&lt;br /&gt;
| imagesize = 740x464px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Scientists occasionally invent alternative periodic table layouts, which is usually a sign that they don't have enough enrichment in their enclosures.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created APERIODICALLY. Don't remove this notice too soon.}}&lt;br /&gt;
The {{w|periodic table of the elements}} is a diagram often used to show the properties of the {{w|chemical elements}} that make up the world. Its structure represents several properties of the elements. Atoms increase in {{w|atomic number}} from left to right and continue on each new row, going top to bottom. Elements in a single column will have similar chemical properties, with allowance for any crossing of the {{w|dividing line between metals and nonmetals}}, and each row exhibits a similar trend to adjacent rows for the gaining or losing electrons and other physical properties.&lt;br /&gt;
&lt;br /&gt;
[[Randall]] spoofs this concept by creating a similar view that is much less useful. The original table is &amp;quot;periodic&amp;quot; because it has consistent, repeating patterns that are represented by the horizontal position of the elements. Randall's 'table' is &amp;quot;aperiodic&amp;quot;, meaning it has no consistent, repeating patterns. Instead, it is just a meandering line ordered by atomic number. To fit into a compact space, the sequence snakes back and forth and (roughly) down the page. This presentation is not actually helpful{{cn}}, since it contains little information other than the atomic number of each element. Faint colouring on each box does show its category, but due to the dull colours that is also quite inconvenient to use, and depicts this information in an unnecessarily unhelpful and hard-to-read format.&lt;br /&gt;
&lt;br /&gt;
The title text suggests that the creation of {{w|Types of periodic tables|alternative periodic table layouts}} is due to them not having enough work to do. However, it frames this by comparing them to animals kept in enclosures, with a lack of enrichment activities to keep them occupied and satisfied in their lab, implying that this is a form of aberrant dysfunctional behaviour. Researcher enclosure enrichment was previously mentioned in [[3052: Archive Request]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon. All 118 elements and their number should be included in a full transcript.}}&lt;br /&gt;
&lt;br /&gt;
:The Aperiodic Table of the Elements&lt;br /&gt;
:[Rectangles showing the atomic symbols and atomic numbers from H (1) through Og (118) are arranged in a serpentine chain. Each rectangle has the atomic number in small numerals at the upper left and the atomic symbol in large letters. The color of each rectangle matches the the pattern of a standard periodic table. For example, the noble elements all have a red background.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Periodic table]]&lt;br /&gt;
[[Category:Chemistry]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3237:_Husband_and_Wife&amp;diff=411229</id>
		<title>3237: Husband and Wife</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3237:_Husband_and_Wife&amp;diff=411229"/>
				<updated>2026-04-27T21:37:52Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3237&lt;br /&gt;
| date      = April 24, 2026&lt;br /&gt;
| title     = Husband and Wife&lt;br /&gt;
| image     = husband_and_wife_2x.png&lt;br /&gt;
| imagesize = 586x292px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Borat came out twenty years ago this year--closer to the breakup of the Soviet Union than to today--but it honestly feels like it's been even longer, somehow.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by MAH BAAT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[Megan]] and [[Cueball]], who are married in this strip, are discussing the phrases that married couples use to refer to each other. Traditionally, in English, married couples refer to their partners as &amp;quot;my husband&amp;quot; and &amp;quot;my wife&amp;quot;, though many euphemistic or 'cutesy' alternatives have gained currency. Megan finds the phrase &amp;quot;my husband&amp;quot; odd and perhaps a little archaic, comparing it to a &amp;quot;Victorian gossip&amp;quot; (a subject that was previously referenced in [[2660: Gen Z]]).&lt;br /&gt;
&lt;br /&gt;
The specifics of Megan's objection aren't clear, and there are a number of possible angles. It could be due to the possessive phrasing (though similar phrasing is very common in English, and generally doesn't imply ownership). Possibly, the old and and gendered roots of the word itself feel odd to her, as the 17th-century roots meant of &amp;quot;master of the house&amp;quot; or &amp;quot;husbandman&amp;quot; (farmer). American norms around relationships, gender and marriage have changed significantly over the last several decades, and phrases associated with traditional and rigid concepts of relationships and gender roles might naturally feel outdated to the younger generations. &lt;br /&gt;
&lt;br /&gt;
Cueball, on the other hand, isn't bothered as much by this implication as by the association with 2006 film ''{{w|Borat}}''. Borat, a fictional character from {{w|Kazakhstan}}, had a distinct, cringy way of saying [https://youtu.be/Zw16aew4Pt0 &amp;quot;my wife&amp;quot;], which has been frequently referenced, quoted, replayed and incorporated into memes ever since the film came out. Even though the film was released 20 years prior to this strip, Cueball can't get the reference out of his head when he uses the phrase. (For those readers of advanced age, there is another possible reference. “My wife; I think I’ll keep her” was used as a commercial for a tonic to keep women looking young and/or feeling energetic. This was certainly not the author’s intent, but it certainly fits with the comic, if not the title text.)&lt;br /&gt;
&lt;br /&gt;
The title text points out that the 20 years from the movie's release to the publication of this comic is longer than the 15 years from the {{w|dissolution of the Soviet Union}} to the movie (Kazakhstan was briefly the last-remaining member of the USSR). In contrast to [[Randall]]'s usual [[:Category:Comics to make one feel old|attempts to make people feel old]], the title text claims that ''Borat'' actually seems '''older''' than it really is. The implication is that the memes have become so ubiquitous that they feel like they've been part of American culture for a very long time.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan and Cueball are talking, standing next to each other.]&lt;br /&gt;
:Megan: I still feel a little weird saying the phrase &amp;quot;my husband&amp;quot;.&lt;br /&gt;
:Megan: It makes me feel so traditional, like a Victorian gossip.&lt;br /&gt;
&lt;br /&gt;
:[Megan and Cueball still standing next to each other.]&lt;br /&gt;
:Cueball: Yeah, well, '''''my''''' plight isn’t much better.&lt;br /&gt;
:Megan: What do you mean?&lt;br /&gt;
:Cueball: What’s the most salient cultural reference for the phrase &amp;quot;my wife&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
:[In the 3rd panel, Cueball has his hands raised.]&lt;br /&gt;
:Megan: Ughhhh, true.&lt;br /&gt;
:Cueball: Even now, after two decades, when I speak of you I hear his voice, echoing through the halls of memory like a cringey ghost.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Movies]]&lt;br /&gt;
[[Category:Comics to make one feel old]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3227:_Creation&amp;diff=410832</id>
		<title>3227: Creation</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3227:_Creation&amp;diff=410832"/>
				<updated>2026-04-22T03:28:15Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3227&lt;br /&gt;
| date      = April 1, 2026&lt;br /&gt;
| title     = Creation&lt;br /&gt;
| image     = creation_2x.png&lt;br /&gt;
| imagesize = 567x198px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = This xkcd.com update introduces a variety of new reading modes which can be activated through the menu.&lt;br /&gt;
}}&lt;br /&gt;
{{series&lt;br /&gt;
| series        = April&lt;br /&gt;
| number        = 18&lt;br /&gt;
| date          = April 1, 2026&lt;br /&gt;
| days_late     = &lt;br /&gt;
| day_category  = Wednesday&lt;br /&gt;
| prev_title    = 3074: Push Notifications&lt;br /&gt;
| prev_date     = April 9, 2025&lt;br /&gt;
| next_title    = &lt;br /&gt;
| next_date     = &lt;br /&gt;
}}&lt;br /&gt;
To experience the interactivity of the web page, visit the {{xkcd|3227|original comic}}!&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
In this {{w|April Fool's Day}} comic, several new viewing modes have been added to the xkcd website, accessible through a {{w|drop-down list}} beneath the comic (not visible on Explain xkcd). This was the first time in 15 years that the xkcd site itself had been redesigned, with the previous site redesign coming in 2011 with [[880: Headache]]. This allows various different viewing experiences for the entire website (this included other comics until 15 April 2026; since then it only works on this comic). Some are &amp;quot;normal&amp;quot; viewing modes, like the typical &amp;quot;light&amp;quot; and &amp;quot;dark&amp;quot; modes, but others take such things further and/or in more esoteric ways. This includes an &amp;quot;airplane mode&amp;quot; (see below) that parodies and subverts the {{w|Airplane mode|normal implementation}}.&lt;br /&gt;
&lt;br /&gt;
The accompanying comic references one of the first lines of the {{w|Bible}} (Genesis 1:3), wherein God creates light. Here, though, before God has a chance to fully appreciate their work, a person on Earth immediately requests an implementation of {{w|dark mode}}. Dark mode is a feature on many websites and devices which displays text in white against a black background instead of the default black text on a white background. In low ambient light this makes for a less intense viewing experience that is easier on the eyes, so many people who spend a lot of time looking at screens prefer dark mode (whereas casual users often find light mode easier to read). On OLED screens, another benefit is that less battery life is consumed because of the primarily low brightness of the screen, which makes it useful for those who want to be energy-efficient or extend their battery life.&lt;br /&gt;
&lt;br /&gt;
This demand represents a common experience for web and app designers, who spend a lot of time creating something that looks beautiful to them, and in their particular use case, only to find when it is put out into the wild that it doesn't suit the needs of many of their actual users, who don't particularly care about the effort they've put in.&lt;br /&gt;
&lt;br /&gt;
Dark mode is not usually implemented on planets,{{cn}} although one could argue that night-time is effectively Earth's &amp;quot;dark mode&amp;quot;, which could have been created by God as a response to the person. (That seems likely, in fact, given that the very next words in Genesis 1:4 are &amp;quot;and he separated the light from the darkness&amp;quot;.) The comic deviates somewhat from traditional Judeo-Christian theology, as in Genesis the day/night cycle was created on the first day, but humans were created on the sixth day - thus, the &amp;quot;dark mode&amp;quot; (night-time) would already have been implemented by the time humans existed. Possibly the person is actually requesting a dark mode that can be toggled at will, rather than one which occurs automatically each day.&lt;br /&gt;
&lt;br /&gt;
Unlike most comics, the title text contains no jokes, but rather explains the update and gives basic instructions.&lt;br /&gt;
&lt;br /&gt;
The comic credits the &amp;quot;Excellent Design Team&amp;quot;, consisting of Amber, Benjamin Staffin, and Kevin who helped create the modes.&lt;br /&gt;
&lt;br /&gt;
This credit was also implemented as the new [[Header text]], so that the explanation for the new mode would be visible when viewing all other comics on xkcd, as well as the credit to the design team, see more details [[Header_text#2026-04-07_-_Reading_Modes|here]].&lt;br /&gt;
&lt;br /&gt;
===List of Modes===&lt;br /&gt;
; Light Mode&lt;br /&gt;
: The usual site experience. Typically, where sites have light and dark modes, light is the default option, so as to mimic ink on paper (such as printed {{w|newspaper comic strip}}s).&lt;br /&gt;
&lt;br /&gt;
; Lighter Mode&lt;br /&gt;
: The entire web page is filtered to look {{w|Exposure (photography)#Overexposure and underexposure|overexposed}}, making colors wash out and reducing the contrast.&lt;br /&gt;
&lt;br /&gt;
; Dark Mode&lt;br /&gt;
: A standard &amp;quot;white content on black background&amp;quot; dark mode. Specifically, Dark Mode inverts the colors of the page (which makes a {{w|Negative (photography)|colour-negative}} and then hue-rotates it by 180 degrees (to make hue return to normal, only brightness-reversed. (For example, see comic [[556: Alternative Energy Revolution|556]], with dark mode enabled, to see how the hue is maintained.) The background of the page, normally light blue, becomes a dark blue; (near-)whites become (near-)blacks, and vice-versa, only mid-tones staying the same. This inversion makes the content of this particular comic, with the original transition from a dark pane to &amp;quot;let there be light&amp;quot; panes and the subsequent request for this very feature, particularly nonsensical, as it seems to start fully bright, then darken as God creates light.&lt;br /&gt;
&lt;br /&gt;
; Darkest Mode&lt;br /&gt;
: Everything on the webpage turns completely black (severely 'underexposed', in effect, the opposite to &amp;quot;Lighter mode&amp;quot; but also even more extreme). The exception is the drop-down menu widget, which may appear as merely a dark gray — and depending upon the browser itself, the dropped-down menu may be its 'natural' appearance when it becomes fully active — which is of course extremely helpful for navigating back out of this mode or onward onto others.&lt;br /&gt;
&lt;br /&gt;
; Blurry Mode&lt;br /&gt;
: {{w|Blur (photographic effect)|Blurs}} the entire webpage. This is not conventionally desirable as it makes it harder to read text and interpret visuals. Whereas light and dark mode support can improve {{w|Web accessibility|accessibility}} for certain vision conditions, this mode makes already poor vision even worse.&lt;br /&gt;
&lt;br /&gt;
; Grayscale Mode&lt;br /&gt;
: Applies a standard {{w|grayscale}}/{{w|Colorfulness#Saturation|desaturation}} conversion filter to the entire webpage. Many devices provide a grayscale mode as one of their color filter settings, which can simulate different {{w|color vision deficiencies}}. Grayscale specifically can also help improve focus by preventing colors from catching the eye and making distractions less visually appealing.&lt;br /&gt;
&lt;br /&gt;
; Greyscale Mode&lt;br /&gt;
: Operates identically to Grayscale Mode, but also changes the spelling of &amp;quot;math&amp;quot; in the slogan at the top of the page to &amp;quot;maths&amp;quot; (to go along with the respective {{w|American and British English spelling differences|British English}} use of ''{{wiktionary|gray}}/{{wiktionary|grey}}'').&lt;br /&gt;
&lt;br /&gt;
; Dorian Greyscale Mode&lt;br /&gt;
: Makes the webpage slowly turn grey&amp;lt;!-- or 'gray', but now sticking with this given the Mode's title... --&amp;gt;, including darkening/fading-to-grey 'white' areas. This refers to ''{{w|The Picture of Dorian Gray}}'', in which the titular character has a portrait that slowly ages and fades out while the character stays young and handsome. The transformation finishes after 5 minutes.&lt;br /&gt;
&lt;br /&gt;
: Of note is that the surname of the titular character is &amp;quot;{{w|Grey (disambiguation)#People|Gray}}&amp;quot; (as is still common, if not dominant, in Britain), but the mode itself is named for the primary British/non-American standard English version of the word for such a hueless shade.&lt;br /&gt;
&lt;br /&gt;
: No relation to the {{w|Dorian mode}}, a musical scale.&lt;br /&gt;
&lt;br /&gt;
; Space Opera Mode&lt;br /&gt;
: Turns the entire page into a ''{{w|Star Wars}}''-style opening scroll, which loops round until you change the mode. Scrolling the mouse scrolls up or down through the page content. {{w|Space opera}} is a genre of sci-fi that ''Star Wars'' falls under. Opera is the name of a web browser, though it does not usually display content in this way.&lt;br /&gt;
&lt;br /&gt;
; 3D Mode&lt;br /&gt;
: Makes the comic render in {{w|Anaglyph 3D|anaglyphic stereoscopy}}. [[Randall]] has used 3D space before for [[848|another joke comic]]. He has also utilized a similar joke for the 2011 xkcd redesign, which was released along with [[880: Headache]].&lt;br /&gt;
&lt;br /&gt;
; Origami Mode&lt;br /&gt;
: Rotates and folds various pieces of the webpage, as if it were {{w|origami}}-folded.&lt;br /&gt;
&lt;br /&gt;
; Ink Mode&lt;br /&gt;
: Recolors the webpage as if drawn in blue ink, which is often used for the initial roughing-out of a drawing.&lt;br /&gt;
&lt;br /&gt;
; Spring Mode&lt;br /&gt;
: Gives the comic a simple physics simulation, making it slightly rotate around an axis when the page is scrolled, and giving it a {{w|springboard}} look, hence the name. The axis around which the page precesses is perpendicular to the axis the user scrolls on. This means that when the page is scrolled vertically (the usual direction), the comic wobbles around a horizontal axis, but when scrolled horizontally (if your screen size or zoom allows it), the comic precesses about the vertical axis.&lt;br /&gt;
&lt;br /&gt;
; Antipodes Mode&lt;br /&gt;
: Turns the entire webpage upside down. An {{w|antipodes|antipode}} is the point on the Earth's surface directly opposite of another, but &amp;quot;The Antipodes&amp;quot; is also a term used to refer to {{w|Australia}} and {{w|New Zealand}} by inhabitants of the northern hemisphere. Note: When the comic was first published this was labeled &amp;quot;Southern Hemisphere Mode&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
; Hacker Mode&lt;br /&gt;
: Recolors the entire webpage in the stereotypical green-on-black coding environment color scheme often used by {{w|hacker}}s in film and TV. This visual shorthand is a holdover from early {{w|monochrome monitor}}s that used P1 phosphor. (Modern terminal software has no such limitations, and many programmers today use {{w|syntax highlighting}} to color-code operators and keywords.)&lt;br /&gt;
&lt;br /&gt;
; Screensaver Mode&lt;br /&gt;
: Makes the comic float around on the webpage, bouncing as it hits the edges. A common type of {{w|screensaver}} has some text or other element drifting around the screen in this way. Many people ended up watching such screensavers, waiting for the bouncing graphic to hit the corner of the screen. Like with Hacker Mode, there is an element of nostalgia to this; screensavers are less necessary on modern LCD screens, so fewer setups use them.&lt;br /&gt;
&lt;br /&gt;
; Modem Mode&lt;br /&gt;
: Slowly reveals the comic from top to bottom, as if slowly loading (but [[598: Porn|only in approximation]]) the way images often used to have to be progressively rendered from a low-rate stream of image data in the days of more limited dial-up connections and also a lower-performance {{w|internet backbone}} in general. This is accompanied by audio of the sound of a {{w|modem}} communicating over such a connection. NB - this mode does not appear to function correctly/reliably for some viewers.&lt;br /&gt;
&lt;br /&gt;
; Stained Glass Mode&lt;br /&gt;
: Fills each closed area of the comic with a separate color to mimic the look of {{w|stained glass}} imagery. The colors vary each time this mode is selected or the page is reloaded in this mode, which &amp;lt;!--check the code to verify? ...but going purely from visual analysis of the how it treats comic 2598 and other obvious comics with colourful/greyful features already in the original--&amp;gt;works by flooding a single pseudorandom hue over all areas of near-white, each flood bounded only by any sufficiently dark or saturated drawn line/border. Strangely enough, on this mode you can't see the title text. This is because the canvas used to apply the hues is functionally covering the image: the javascript used to do this should have been made to copy the comic image's title attribute and make it apply to the overlaid canvas for the benefit of the browser.&lt;br /&gt;
&lt;br /&gt;
; Airplane Mode&lt;br /&gt;
: Makes the comic fly around on the page, with the {{w|onomatopoeia}} &amp;quot;NYOOM!&amp;quot; written next to it, as if it were an {{w|airplane}}. This is unlike the usual use of {{w|airplane mode}} to refer to disabling the cellphone (or all {{w|radio frequency}}) features of a mobile device, as required on most flights. Of course, the website's &amp;quot;Airplane Mode&amp;quot; does no such thing, and would be pointless to enable on an airplane.{{cn}}&lt;br /&gt;
&lt;br /&gt;
; Boat Mode&lt;br /&gt;
: Makes the entire webpage tilt back and forth, emulating the way a boat rolls on the water. While [[165: Turn Signals|extremely unlikely]], this could theoretically counteract the rocking motion of a boat, stabilizing the page content. In practice, it is unlikely to help with {{w|seasickness}}. (As of 2024, some smart devices started offering a &amp;quot;vehicle motion cues&amp;quot; feature that is meant to reduce motion sickness, although it is designed for road vehicles rather than watercraft.)&lt;br /&gt;
&lt;br /&gt;
: This mode is a reference to the longstanding mention of a Boat Mode in the [[footnote]], which says &amp;quot;Remove your device from Airplane Mode and set it to Boat Mode&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Black background with white caption boxes.]&lt;br /&gt;
:Caption: And God said, &lt;br /&gt;
:Caption:&amp;quot;Let there be light,&amp;quot;&lt;br /&gt;
&lt;br /&gt;
:[A bright explosion of light from a star in the center, with a white caption box.]&lt;br /&gt;
:Caption: And there was light.&lt;br /&gt;
&lt;br /&gt;
:[The star with bright rays of light is shown against the horizon of a planet.]&lt;br /&gt;
:[The same planet horizon is shown with a clear sky above.]&lt;br /&gt;
:Caption: God saw that the light was-&lt;br /&gt;
:Voice from the planet: Can you add support for dark mode?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{comic discussion}}&lt;br /&gt;
[[Category:Interactive comics]]&lt;br /&gt;
[[Category:Dynamic comics]]&lt;br /&gt;
[[Category:April Fools' Day comics]]&lt;br /&gt;
[[Category:Religion]]&lt;br /&gt;
[[Category:Comics with custom header texts]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3234:_Europa_Missions&amp;diff=410636</id>
		<title>3234: Europa Missions</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3234:_Europa_Missions&amp;diff=410636"/>
				<updated>2026-04-19T02:00:56Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3234&lt;br /&gt;
| date      = April 17, 2026&lt;br /&gt;
| title     = Europa Missions&lt;br /&gt;
| image     = europa_missions_2x.png&lt;br /&gt;
| imagesize = 515x274px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Before resurfacing, they promise to inspect the ice for any evidence of hockey-playing life.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by the Zamboni Voyager. Don't remove this notice too soon.}}&lt;br /&gt;
In recent years, {{w|NASA}} and the {{w|European Space Agency}} (ESA) have sent spacecraft to observe Jupiter’s moon Europa. According to NASA, the moon could be a candidate for life, so it would make sense that the scientists would send spacecraft to observe it. The first two craft, the {{w|Europa Clipper}} and {{w|Jupiter Icy Moons Explorer}}, respectively, will investigate the ocean, topography and chemistry of the moon, to help in searching for signs of life. Europa's ocean is frozen on the top, thus &amp;quot;subsurface ocean.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A {{w|Zamboni}} is a vehicle that, rather than being a scientific misson or a transport for other scientific missions, is meant to quickly resurface ice rinks that have been worn down. The comic talks about a hypothetical spacecraft carrying a Zamboni because the {{w|National Hockey League}} (NHL) wants to expand their games to Europa due to the surface of the moon’s oceans being completely covered in ice. Hockey in reduced gravity would be {{What If|124|an interesting idea.}}&lt;br /&gt;
&lt;br /&gt;
The title text talks about finding hockey playing life on Europa, which would be unlikely, as the life on Earth and Europa are completely separate cultures,{{citation needed}} so even if the life on Europa does have its own forms of entertainment similar to sports, it would be unlikely that the sports played have even {{w|Convergent evolution|remotely similar}} rules or equipment. It appears that, if life were on Europa that did not play hockey, the NHL would not consider them important enough to reassess the impacts of their space mission.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The [https://www.explainxkcd.com/wiki/images/archive/f/fd/20260418170145%21europa_missions_2x.png original version of the comic] incorrectly referred to the &amp;quot;Jupiter Icy Moons ''Orbiter''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball's upper body is shown; he is in front of an image of a spacecraft.]&lt;br /&gt;
:Cueball: There are now three spacecraft headed to Europa:&lt;br /&gt;
:Cueball: NASA's ''Europa Clipper'', which investigate Europa's subsurface ocean,&lt;br /&gt;
&lt;br /&gt;
:[In a longer shot, Cueball, Ponytail, and Hairy are all shown standing in front of another spacecraft image, with Cueball gesturing at it.]&lt;br /&gt;
:Cueball: ESA's ''Jupiter Icy Moons Explorer'', which will study the topography and chemistry of Europa and the other moons,&lt;br /&gt;
&lt;br /&gt;
:[Another closeup on Cueball, who is in front of an image of a {{w|Zamboni}} with a firing rocket nozzle on its bottom.]&lt;br /&gt;
:Cueball: And the NHL's ''Zamboni Voyager'', which plans to resurface Europa.&lt;br /&gt;
:Voice out of frame: Oh no.&lt;br /&gt;
:Cueball: We tried to stop them, but the league is set on an expansion.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Space probes]]&lt;br /&gt;
[[Category:Sport]]&lt;br /&gt;
[[Category:Comics edited after their publication]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=User:1234231587678&amp;diff=410635</id>
		<title>User:1234231587678</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=User:1234231587678&amp;diff=410635"/>
				<updated>2026-04-19T01:48:22Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I didn't feel like adding information, so here's filler text instead!&lt;br /&gt;
&lt;br /&gt;
!&amp;quot;#$%&amp;amp;'()*+,-./0123456789:;&amp;lt;=&amp;gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgh&lt;br /&gt;
&lt;br /&gt;
&amp;quot;#$%&amp;amp;'()*+,-./0123456789:;&amp;lt;=&amp;gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#$%&amp;amp;'()*+,-./0123456789:;&amp;lt;=&amp;gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
$%&amp;amp;'()*+,-./0123456789:;&amp;lt;=&amp;gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijk&lt;br /&gt;
&lt;br /&gt;
Please message me on my discussion page.&lt;br /&gt;
&lt;br /&gt;
2024-04-08&lt;br /&gt;
&lt;br /&gt;
Staring at the Sun was very fun.&lt;br /&gt;
&lt;br /&gt;
2025-09-01&lt;br /&gt;
&lt;br /&gt;
I like TETR.IO too much and that's a problem HELP&lt;br /&gt;
&lt;br /&gt;
2025-10-14&lt;br /&gt;
&lt;br /&gt;
I am #42 Yeyyyeysyysyeyyeysyyeyesyesyyeyyeyys&lt;br /&gt;
&lt;br /&gt;
2026-04-18&lt;br /&gt;
&lt;br /&gt;
I broke a plate. Oops.&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1196:_Subways&amp;diff=410430</id>
		<title>1196: Subways</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1196:_Subways&amp;diff=410430"/>
				<updated>2026-04-16T02:13:40Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1196&lt;br /&gt;
| date      = April 8, 2013&lt;br /&gt;
| title     = Subways&lt;br /&gt;
| image     = subways.png&lt;br /&gt;
| titletext = About one in three North American subway stops are in NYC.&lt;br /&gt;
}}&lt;br /&gt;
{{TOC}}* The xkcd page links to [https://xkcd.com/1196/large/ a much larger version], which has another text added:&lt;br /&gt;
{{Quote|For the pedantic rail enthusiasts, the definition of a subway used here is, with some caveats, &amp;quot;a network containing high capacity grade-separated passenger rail transit lines which run frequently, serve an urban core, and are underground or elevated for at least part of their downtown route.&amp;quot; For the rest of you, the definition is &amp;quot;an underground train in a city.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[File:North American subways.svg.png|right|border|link=http://www.radicalcartography.net/subways.html|North America Subways by Prof. Bill Rankin]]&lt;br /&gt;
The comic shows the maps of all North American {{w|subway}} networks. In reality, none of these systems are interconnected, but in the diagram subways from different cities that have the same color on the official subway map have whimsically named connections, such as the &amp;quot;Ohio-California Tunnel&amp;quot; connecting the Green Lines of Cleveland and Los Angeles, or the &amp;quot;Rocky Mountain Tunnel&amp;quot; connecting the Blue Lines of Chicago and San Francisco. Vancouver and San Francisco are connected through a station called Richmond, which appears to double as {{w|Richmond, British Columbia}} and {{w|Richmond, California}}. The &amp;quot;Springfield Monorail&amp;quot; is fictional, from the animated series ''{{w|The Simpsons}}'' (see {{w|Marge vs. the Monorail}}), but its approximate location on this map would suggest the [http://www.seattlemonorail.com/ Seattle Monorail], or perhaps Springfield, Oregon, which [http://www.smithsonianmag.com/arts-culture/Matt-Groening-Reveals-the-Location-of-the-Real-Springfield.html Matt Groening revealed was the inspiration for the  Simpsons' hometown].&lt;br /&gt;
&lt;br /&gt;
The [http://www.radicalcartography.net/subways.html Urban Mass Transit Systems of North America] map (right) created by [http://hshm.yale.edu/rankin Yale Professor Bill Rankin] on his website [http://www.radicalcartography.net/ Radical Cartography] in 2006 presents all of the subway systems in North America at the same scale using geographic, instead of topological, layout. The networks on xkcd's map are displayed with absolutely no consideration to geographic position, in order to connect like-colored routes together. While {{w|Vancouver}} is the most North-West, {{w|Mexico City}} being the most South, and San Francisco the most west, distances are not accurate (in reality, Vancouver is closer to Chicago than to Toronto for example) and cities are often arranged in the wrong direction from one another:&lt;br /&gt;
&lt;br /&gt;
* San Francisco is shown directly west of Toronto - in reality west southwest &lt;br /&gt;
* Boston is shown directly north of New York City and just slightly to the west - in reality east northeast&lt;br /&gt;
* Atlanta is shown west southwest of Miami - it is actually north northwest&lt;br /&gt;
* Atlanta is shown northwest of Mexico City - it is actually northeast&lt;br /&gt;
* Atlanta is shown slightly east of being south of Los Angeles - it is actually just slightly north of being directly east&lt;br /&gt;
&lt;br /&gt;
The map's design is modeled after the system map of the {{w|Massachusetts Bay Transportation Authority}} in Boston where Randall is from.&lt;br /&gt;
&lt;br /&gt;
===City-specific notes===&lt;br /&gt;
&lt;br /&gt;
===={{w|SkyTrain_(Vancouver)|Vancouver}}====&lt;br /&gt;
*The {{w|Canada Line}} and the {{w|Expo Line (TransLink)|Expo Line}} are shown as the same color; SkyTrain's official maps depict them with light blue and dark blue respectively.&lt;br /&gt;
*{{w|Richmond, British Columbia|Richmond}}, B.C., is the name of the city where the southernmost terminus of the Canada Line is located, and shares its name with {{w|Richmond, California}} (see San Francisco section).&lt;br /&gt;
&lt;br /&gt;
===={{w|MBTA subway|Boston}}====&lt;br /&gt;
*The &amp;quot;Green Line Extension to Canada&amp;quot; references {{w|Green Line Extension|the actual project}} to extend the {{w|Green Line (MBTA)|Green Line}} into Medford, north of Boston, which was completed in 2022.&lt;br /&gt;
*The &amp;quot;Ashmont–Manhattan High-Speed Line&amp;quot; shown as connecting Boston's Red Line to New York City's 1 train is a play on the {{w|Ashmont-Mattapan High Speed Line}} in Boston.&lt;br /&gt;
*The renamed {{w|Red Line (MBTA)|Red Line}} stops {{w|Quincy Center station|Skinflower}} and {{w|Quincy Adams station|Bonevine}} are plays on the actual name of the Red Line's terminus, {{w|Braintree (MBTA station)|Braintree}}.&lt;br /&gt;
*The {{w|Orange Line (MBTA)|Orange Line}} terminates at {{w|Forest Hills station (MBTA)|Forest Hills}} in {{w|Jamaica Plain}}. It is connected to New York's IND Concourse Line, but unfortunately despite its ambiguous appearance on the map this does not actually through-run to the IND Queens Boulevard Line with its {{w|Forest Hills-71st Avenue station|Forest Hills}} and {{w|Jamaica–179th Street station|Jamaica}} stations.&lt;br /&gt;
&lt;br /&gt;
====San Francisco====&lt;br /&gt;
*Both {{w|Muni Metro|Muni}} and {{w|Bay Area Rapid Transit|BART}} are depicted in San Francisco's map and are completely separate systems, although the map gives the impression that trains interline between the two.  Non-wheelchair-accessible stops on Muni lines are omitted.&lt;br /&gt;
*{{w|Richmond, California|Richmond}} is the name of the city where the northern terminus of the {{w|Richmond-Fremont line|Richmond–Fremont}} and the {{w|Richmond-Daly City/Millbrae line|Richmond–Daly City/Millbrae}} BART lines are located, and shares its name with {{w|Richmond, British Columbia|Richmond, British Columbia}} (see Vancouver section).&lt;br /&gt;
*&amp;quot;Sunnydale&amp;quot; is the {{w|Sunnydale Station|actual name}} of the terminus of the Muni {{w|T Third Street}} line, not to be confused with {{w|Sunnydale|the city}} where ''Buffy the Vampire Slayer'' is set, nor the very real city of {{w|Sunnyvale, California|Sunnyvale}}, located approximately at the location shown, some 40 miles southeast of San Francisco.&lt;br /&gt;
&lt;br /&gt;
===={{w|Los Angeles Metro Rail|Los Angeles}}====&lt;br /&gt;
*The {{w|Gold Line (Los Angeles Metro)|Gold Line}} and the {{w|Orange Line (Los Angeles Metro)|Orange Line}} are shown with swapped colors.&lt;br /&gt;
*The Orange Line is the only {{w|bus rapid transit}} (BRT) line to be shown on the map. LA Metro also operates a second BRT line, the {{w|Silver Line (Los Angeles Metro)|Silver Line}}, which is not shown.&lt;br /&gt;
&lt;br /&gt;
====New York City====&lt;br /&gt;
*The {{w|New York City Subway}}, {{w|Port Authority Trans-Hudson}} (PATH), and the single line of the {{w|Staten Island Railway}} (with a connection via the {{w|Staten Island Ferry}}) are shown.&lt;br /&gt;
*{{w|Jamaica, Queens|Jamaica}} is the name of the neighborhood in Queens where the E, F, and J/Z trains terminate. Kingston is the capital and largest city in the country of {{w|Jamaica}}.&lt;br /&gt;
*The actual {{w|G (New York City Subway service)|G train}} is notorious for unreliable service, hence the &amp;quot;Random Service&amp;quot; notation.&lt;br /&gt;
*The &amp;quot;Robert Moses High-Speed Line&amp;quot; refers to the NYC urban planner {{w|Robert Moses}}, who was one of the most influential planners in supporting cars over all public transport, creating the car-dependent {{w|New York metropolitan area}}.&lt;br /&gt;
&lt;br /&gt;
====Philadelphia====&lt;br /&gt;
*Both {{w|SEPTA}} subway lines, a portion of the {{w|SEPTA Subway–Surface Trolley Lines}}, and the {{w|PATCO Speedline}} are shown.&lt;br /&gt;
*The {{w|Norristown High Speed Line}} and {{w|Media-Sharon Hill Lines}} are not shown&lt;br /&gt;
*&amp;quot;Trolley Rt. 10 to California&amp;quot; is a play on the actual {{w|SEPTA Route 10|Route 10}} trolley.&lt;br /&gt;
*The {{w|West Trenton Line}}, a commuter rail line, has accidentally ended up in Cleveland for no reason.&lt;br /&gt;
&lt;br /&gt;
===={{w|Washington Metro|Washington, DC}}====&lt;br /&gt;
*The &amp;quot;Graveyard for passengers killed by closing doors&amp;quot; refers to the warning played in the Washington DC Metro system advising passengers that the subway doors are &amp;quot;not like elevator doors&amp;quot; and will close on your limbs or belongings rather than opening when contact with an object is detected.&lt;br /&gt;
*The &amp;quot;Morgantown, WV Automated Line&amp;quot; references the {{w|Morgantown Personal Rapid Transit}} system, which was built in 1975 as a {{w|personal rapid transit}} demonstrator and serves the three campuses of West Virginia University.&lt;br /&gt;
*{{w|Greenbelt (WMATA station)|Greenbelt}} is the northern terminus of the Washington Metro's Green and Yellow lines, hence the Green line being depicted as forming a belt.&lt;br /&gt;
*This comic was made before the Silver line was constructed, so it does not appear in the comic.&lt;br /&gt;
&lt;br /&gt;
===={{w|Metrorail (Miami-Dade County)|Miami}}====&lt;br /&gt;
*The &amp;quot;Caribbean Metromover&amp;quot; references the {{w|Miami Metromover}}, a people mover in downtown Miami (not shown on the map.)&lt;br /&gt;
*The airport logo for Miami International Airport (MIA) is replaced with a paper airplane.&lt;br /&gt;
&lt;br /&gt;
===={{w|Tren Urbano|San Juan}}====&lt;br /&gt;
*The &amp;quot;Puerto Rico Submarine&amp;quot; that connects the Red Lines of San Juan and New York refers to the fact that San Juan is on an island, namely {{w|Puerto Rico}}. It is a pun on the Staten Island Ferry, which also has New York at one end, the idea being that there could be a different, comically unlikely sea-faring vessel travelling to Puerto Rico.&lt;br /&gt;
*The &amp;quot;Mona Tunnel&amp;quot; that connects the Red Lines of San Juan and Santo Domingo may refer to the island of {{w|Isla de Mona|Mona}}, which lies between Puerto Rico and Hispaniola.&lt;br /&gt;
&lt;br /&gt;
===={{w|Metrorrey|Monterrey}}====&lt;br /&gt;
*The &amp;quot;Chicxulub Tunnel&amp;quot; that connects the Red Lines of Santo Domingo and Monterrey refers to the 65-million-year-old {{w|Chicxulub crater}}, which lies roughly between the two cities.&lt;br /&gt;
&lt;br /&gt;
===Official subway maps===&lt;br /&gt;
*Atlanta - http://www.itsmarta.com/rail-schedules-or-route.aspx&lt;br /&gt;
*Baltimore (MTA Maryland) - http://mta.maryland.gov/sites/default/files/metro-subway.jpg&lt;br /&gt;
*Boston (MBTA) - http://www.mbta.com/schedules_and_maps/subway/&lt;br /&gt;
*Chicago (CTA) - http://www.transitchicago.com/assets/1/maps/P19_2012_CTA_Rail_Map.pdf&lt;br /&gt;
*Cleveland - http://www.riderta.com/pdf/maps/System_Map_Rapid_Connect.pdf&lt;br /&gt;
*Los Angeles (LACMTA) - http://www.metro.net/riding_metro/maps/images/rail_map.gif&lt;br /&gt;
*Mexico City - http://www.metro.df.gob.mx/imagenes/red/redinternet.pdf&lt;br /&gt;
*Montreal - http://www.stm.info/english/metro/images/plan-metro.jpg&lt;br /&gt;
*New York City (MTA) - http://www.mta.info/maps/submap.html&lt;br /&gt;
*New York City (PATH) - http://www.panynj.gov/path/maps.html&lt;br /&gt;
*Philadelphia (SEPTA and PATCO) - http://www.septa.org/maps/system/index.html&lt;br /&gt;
*San Francisco (BART) - http://www.bart.gov/images/global/system-map.gif&lt;br /&gt;
*San Francisco (MUNI) - https://www.sfmta.com/maps/muni-metro-map&lt;br /&gt;
*Toronto (TTC) - https://www.tourbytransit.com/toronto/public-transit/subway&lt;br /&gt;
*Vancouver - http://mapa-metro.com/mapas/Vancouver/mapa-metro-vancouver.png&lt;br /&gt;
*Washington (WMATA) - http://wmata.com/rail/maps/map.cfm&lt;br /&gt;
&lt;br /&gt;
===Missing cities===&lt;br /&gt;
Not all cities with a subway are shown on the map. Missing from the map:&lt;br /&gt;
*Pittsburgh (Port Authority of Allegheny County) has a light rail subway tunnel, called '''The T''', in the downtown area. The subway {{W|Pittsburgh Light Rail|opened in 1985}}, which is before this comic was published.{{Citation needed}}&lt;br /&gt;
*Seattle (Sound Transit) has a light rail called the '''link light rail''' has multiple underground tunnels as well as above ground stop. {{W|Link light rail| Opened in 2003}}, there are 3 seperate lines, serving Lynwood, Seattle, and Seattle–Tacoma International Airport on the 1 line, King County Eastside on the 2 line, and Downtown Tacoma and the Tacoma Dome on the T line.&lt;br /&gt;
&lt;br /&gt;
{{clear}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Subways of North America'''&lt;br /&gt;
:[A subway-line style (bold colored, 45-degree aligned lines with white bars indicating stations) map has been constructed by combining and linking various parts of the subway maps from many different cities, as if all of the transit systems were connected directly. The cities include (from top to bottom, left to right) Vancouver, Montreal, San Francisco, Toronto, Boston, Chicago, Los Angeles, Cleveland, New York City, Philadelphia, Baltimore, Washington DC, Miami, Atlanta, Monterrey, San Juan, Santo Domingo, and Mexico City.]&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
This comic used to be [https://web.archive.org/web/20220125024922/https://store.xkcd.com/products/subways available as a poster] in the xkcd store before it was [[Store|shut down]].&lt;br /&gt;
&lt;br /&gt;
This comic also makes a good map for the Subway Planet in [[2765: Escape Speed]] and the link to xkcd is shown on the planet.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Large drawings]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Maps]]&lt;br /&gt;
[[Category:Comics with xkcd store products]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1196:_Subways&amp;diff=410429</id>
		<title>1196: Subways</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1196:_Subways&amp;diff=410429"/>
				<updated>2026-04-16T02:12:42Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1196&lt;br /&gt;
| date      = April 8, 2013&lt;br /&gt;
| title     = Subways&lt;br /&gt;
| image     = subways.png&lt;br /&gt;
| titletext = About one in three North American subway stops are in NYC.&lt;br /&gt;
}}&lt;br /&gt;
{{TOC}}* The xkcd page links to [https://xkcd.com/1196/large/ a much larger version], which has another text added:&lt;br /&gt;
{{Quote|For the pedantic rail enthusiasts, the definition of a subway used here is, with some caveats, &amp;quot;a network containing high capacity grade-separated passenger rail transit lines which run frequently, serve an urban core, and are underground or elevated for at least part of their downtown route.&amp;quot; For the rest of you, the definition is &amp;quot;an underground train in a city.&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[File:North American subways.svg.png|right|border|link=http://www.radicalcartography.net/subways.html|North America Subways by Prof. Bill Rankin]]&lt;br /&gt;
The comic shows the maps of all North American {{w|subway}} networks. In reality, none of these systems are interconnected, but in the diagram subways from different cities that have the same color on the official subway map have whimsically named connections, such as the &amp;quot;Ohio-California Tunnel&amp;quot; connecting the Green Lines of Cleveland and Los Angeles, or the &amp;quot;Rocky Mountain Tunnel&amp;quot; connecting the Blue Lines of Chicago and San Francisco. Vancouver and San Francisco are connected through a station called Richmond, which appears to double as {{w|Richmond, British Columbia}} and {{w|Richmond, California}}. The &amp;quot;Springfield Monorail&amp;quot; is fictional, from the animated series ''{{w|The Simpsons}}'' (see {{w|Marge vs. the Monorail}}), but its approximate location on this map would suggest the [http://www.seattlemonorail.com/ Seattle Monorail], or perhaps Springfield, Oregon, which [http://www.smithsonianmag.com/arts-culture/Matt-Groening-Reveals-the-Location-of-the-Real-Springfield.html Matt Groening revealed was the inspiration for the  Simpsons' hometown].&lt;br /&gt;
&lt;br /&gt;
The [http://www.radicalcartography.net/subways.html Urban Mass Transit Systems of North America] map (right) created by [http://hshm.yale.edu/rankin Yale Professor Bill Rankin] on his website [http://www.radicalcartography.net/ Radical Cartography] in 2006 presents all of the subway systems in North America at the same scale using geographic, instead of topological, layout. The networks on xkcd's map are displayed with absolutely no consideration to geographic position, in order to connect like-colored routes together. While {{w|Vancouver}} is the most North-West, {{w|Mexico City}} being the most South, and San Francisco the most west, distances are not accurate (in reality, Vancouver is closer to Chicago than to Toronto for example) and cities are often arranged in the wrong direction from one another:&lt;br /&gt;
&lt;br /&gt;
* San Francisco is shown directly west of Toronto - in reality west southwest &lt;br /&gt;
* Boston is shown directly north of New York City and just slightly to the west - in reality east northeast&lt;br /&gt;
* Atlanta is shown west southwest of Miami - it is actually north northwest&lt;br /&gt;
* Atlanta is shown northwest of Mexico City - it is actually northeast&lt;br /&gt;
* Atlanta is shown slightly east of being south of Los Angeles - it is actually just slightly north of being directly east&lt;br /&gt;
&lt;br /&gt;
The map's design is modeled after the system map of the {{w|Massachusetts Bay Transportation Authority}} in Boston where Randall is from.&lt;br /&gt;
&lt;br /&gt;
===City-specific notes===&lt;br /&gt;
&lt;br /&gt;
===={{w|SkyTrain_(Vancouver)|Vancouver}}====&lt;br /&gt;
*The {{w|Canada Line}} and the {{w|Expo Line (TransLink)|Expo Line}} are shown as the same color; SkyTrain's official maps depict them with light blue and dark blue respectively.&lt;br /&gt;
*{{w|Richmond, British Columbia|Richmond}}, B.C., is the name of the city where the southernmost terminus of the Canada Line is located, and shares its name with {{w|Richmond, California}} (see San Francisco section).&lt;br /&gt;
&lt;br /&gt;
===={{w|MBTA subway|Boston}}====&lt;br /&gt;
*The &amp;quot;Green Line Extension to Canada&amp;quot; references {{w|Green Line Extension|the actual project}} to extend the {{w|Green Line (MBTA)|Green Line}} into Medford, north of Boston, which was completed in 2022.&lt;br /&gt;
*The &amp;quot;Ashmont–Manhattan High-Speed Line&amp;quot; shown as connecting Boston's Red Line to New York City's 1 train is a play on the {{w|Ashmont-Mattapan High Speed Line}} in Boston.&lt;br /&gt;
*The renamed {{w|Red Line (MBTA)|Red Line}} stops {{w|Quincy Center station|Skinflower}} and {{w|Quincy Adams station|Bonevine}} are plays on the actual name of the Red Line's terminus, {{w|Braintree (MBTA station)|Braintree}}.&lt;br /&gt;
*The {{w|Orange Line (MBTA)|Orange Line}} terminates at {{w|Forest Hills station (MBTA)|Forest Hills}} in {{w|Jamaica Plain}}. It is connected to New York's IND Concourse Line, but unfortunately despite its ambiguous appearance on the map this does not actually through-run to the IND Queens Boulevard Line with its {{w|Forest Hills-71st Avenue station|Forest Hills}} and {{w|Jamaica–179th Street station|Jamaica}} stations.&lt;br /&gt;
&lt;br /&gt;
====San Francisco====&lt;br /&gt;
*Both {{w|Muni Metro|Muni}} and {{w|Bay Area Rapid Transit|BART}} are depicted in San Francisco's map and are completely separate systems, although the map gives the impression that trains interline between the two.  Non-wheelchair-accessible stops on Muni lines are omitted.&lt;br /&gt;
*{{w|Richmond, California|Richmond}} is the name of the city where the northern terminus of the {{w|Richmond-Fremont line|Richmond–Fremont}} and the {{w|Richmond-Daly City/Millbrae line|Richmond–Daly City/Millbrae}} BART lines are located, and shares its name with {{w|Richmond, British Columbia|Richmond, British Columbia}} (see Vancouver section).&lt;br /&gt;
*&amp;quot;Sunnydale&amp;quot; is the {{w|Sunnydale Station|actual name}} of the terminus of the Muni {{w|T Third Street}} line, not to be confused with {{w|Sunnydale|the city}} where ''Buffy the Vampire Slayer'' is set, nor the very real city of {{w|Sunnyvale, California|Sunnyvale}}, located approximately at the location shown, some 40 miles southeast of San Francisco.&lt;br /&gt;
&lt;br /&gt;
===={{w|Los Angeles Metro Rail|Los Angeles}}====&lt;br /&gt;
*The {{w|Gold Line (Los Angeles Metro)|Gold Line}} and the {{w|Orange Line (Los Angeles Metro)|Orange Line}} are shown with swapped colors.&lt;br /&gt;
*The Orange Line is the only {{w|bus rapid transit}} (BRT) line to be shown on the map. LA Metro also operates a second BRT line, the {{w|Silver Line (Los Angeles Metro)|Silver Line}}, which is not shown.&lt;br /&gt;
&lt;br /&gt;
====New York City====&lt;br /&gt;
*The {{w|New York City Subway}}, {{w|Port Authority Trans-Hudson}} (PATH), and the single line of the {{w|Staten Island Railway}} (with a connection via the {{w|Staten Island Ferry}}) are shown.&lt;br /&gt;
*{{w|Jamaica, Queens|Jamaica}} is the name of the neighborhood in Queens where the E, F, and J/Z trains terminate. Kingston is the capital and largest city in the country of {{w|Jamaica}}.&lt;br /&gt;
*The actual {{w|G (New York City Subway service)|G train}} is notorious for unreliable service, hence the &amp;quot;Random Service&amp;quot; notation.&lt;br /&gt;
*The &amp;quot;Robert Moses High-Speed Line&amp;quot; refers to the NYC urban planner {{w|Robert Moses}}, who was one of the most influential planners in supporting cars over all public transport, creating the car-dependent {{w|New York metropolitan area}}.&lt;br /&gt;
&lt;br /&gt;
====Philadelphia====&lt;br /&gt;
*Both {{w|SEPTA}} subway lines, a portion of the {{w|SEPTA Subway–Surface Trolley Lines}}, and the {{w|PATCO Speedline}} are shown.&lt;br /&gt;
*The {{w|Norristown High Speed Line}} and {{w|Media-Sharon Hill Lines}} are not shown&lt;br /&gt;
*&amp;quot;Trolley Rt. 10 to California&amp;quot; is a play on the actual {{w|SEPTA Route 10|Route 10}} trolley.&lt;br /&gt;
*The {{w|West Trenton Line}}, a commuter rail line, has accidentally ended up in Cleveland for no reason.&lt;br /&gt;
&lt;br /&gt;
===={{w|Washington Metro|Washington, DC}}====&lt;br /&gt;
*The &amp;quot;Graveyard for passengers killed by closing doors&amp;quot; refers to the warning played in the Washington DC Metro system advising passengers that the subway doors are &amp;quot;not like elevator doors&amp;quot; and will close on your limbs or belongings rather than opening when contact with an object is detected.&lt;br /&gt;
*The &amp;quot;Morgantown, WV Automated Line&amp;quot; references the {{w|Morgantown Personal Rapid Transit}} system, which was built in 1975 as a {{w|personal rapid transit}} demonstrator and serves the three campuses of West Virginia University.&lt;br /&gt;
*{{w|Greenbelt (WMATA station)|Greenbelt}} is the northern terminus of the Washington Metro's Green and Yellow lines, hence the Green line being depicted as forming a belt.&lt;br /&gt;
*This comic was made before the Silver line was constructed, so it does not appear in the comic.&lt;br /&gt;
&lt;br /&gt;
===={{w|Metrorail (Miami-Dade County)|Miami}}====&lt;br /&gt;
*The &amp;quot;Caribbean Metromover&amp;quot; references the {{w|Miami Metromover}}, a people mover in downtown Miami (not shown on the map.)&lt;br /&gt;
*The airport logo for Miami International Airport (MIA) is replaced with a paper airplane.&lt;br /&gt;
&lt;br /&gt;
===={{w|Tren Urbano|San Juan}}====&lt;br /&gt;
*The &amp;quot;Puerto Rico Submarine&amp;quot; that connects the Red Lines of San Juan and New York refers to the fact that San Juan is on an island, namely {{w|Puerto Rico}}. It is a pun on the Staten Island Ferry, which also has New York at one end, the idea being that there could be a different, comically unlikely sea-faring vessel travelling to Puerto Rico.&lt;br /&gt;
*The &amp;quot;Mona Tunnel&amp;quot; that connects the Red Lines of San Juan and Santo Domingo may refer to the island of {{w|Isla de Mona|Mona}}, which lies between Puerto Rico and Hispaniola.&lt;br /&gt;
&lt;br /&gt;
===={{w|Metrorrey|Monterrey}}====&lt;br /&gt;
*The &amp;quot;Chicxulub Tunnel&amp;quot; that connects the Red Lines of Santo Domingo and Monterey refers to the 65-million-year-old {{w|Chicxulub crater}}, which lies roughly between the two cities.&lt;br /&gt;
&lt;br /&gt;
===Official subway maps===&lt;br /&gt;
*Atlanta - http://www.itsmarta.com/rail-schedules-or-route.aspx&lt;br /&gt;
*Baltimore (MTA Maryland) - http://mta.maryland.gov/sites/default/files/metro-subway.jpg&lt;br /&gt;
*Boston (MBTA) - http://www.mbta.com/schedules_and_maps/subway/&lt;br /&gt;
*Chicago (CTA) - http://www.transitchicago.com/assets/1/maps/P19_2012_CTA_Rail_Map.pdf&lt;br /&gt;
*Cleveland - http://www.riderta.com/pdf/maps/System_Map_Rapid_Connect.pdf&lt;br /&gt;
*Los Angeles (LACMTA) - http://www.metro.net/riding_metro/maps/images/rail_map.gif&lt;br /&gt;
*Mexico City - http://www.metro.df.gob.mx/imagenes/red/redinternet.pdf&lt;br /&gt;
*Montreal - http://www.stm.info/english/metro/images/plan-metro.jpg&lt;br /&gt;
*New York City (MTA) - http://www.mta.info/maps/submap.html&lt;br /&gt;
*New York City (PATH) - http://www.panynj.gov/path/maps.html&lt;br /&gt;
*Philadelphia (SEPTA and PATCO) - http://www.septa.org/maps/system/index.html&lt;br /&gt;
*San Francisco (BART) - http://www.bart.gov/images/global/system-map.gif&lt;br /&gt;
*San Francisco (MUNI) - https://www.sfmta.com/maps/muni-metro-map&lt;br /&gt;
*Toronto (TTC) - https://www.tourbytransit.com/toronto/public-transit/subway&lt;br /&gt;
*Vancouver - http://mapa-metro.com/mapas/Vancouver/mapa-metro-vancouver.png&lt;br /&gt;
*Washington (WMATA) - http://wmata.com/rail/maps/map.cfm&lt;br /&gt;
&lt;br /&gt;
===Missing cities===&lt;br /&gt;
Not all cities with a subway are shown on the map. Missing from the map:&lt;br /&gt;
*Pittsburgh (Port Authority of Allegheny County) has a light rail subway tunnel, called '''The T''', in the downtown area. The subway {{W|Pittsburgh Light Rail|opened in 1985}}, which is before this comic was published.{{Citation needed}}&lt;br /&gt;
*Seattle (Sound Transit) has a light rail called the '''link light rail''' has multiple underground tunnels as well as above ground stop. {{W|Link light rail| Opened in 2003}}, there are 3 seperate lines, serving Lynwood, Seattle, and Seattle–Tacoma International Airport on the 1 line, King County Eastside on the 2 line, and Downtown Tacoma and the Tacoma Dome on the T line.&lt;br /&gt;
&lt;br /&gt;
{{clear}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:'''Subways of North America'''&lt;br /&gt;
:[A subway-line style (bold colored, 45-degree aligned lines with white bars indicating stations) map has been constructed by combining and linking various parts of the subway maps from many different cities, as if all of the transit systems were connected directly. The cities include (from top to bottom, left to right) Vancouver, Montreal, San Francisco, Toronto, Boston, Chicago, Los Angeles, Cleveland, New York City, Philadelphia, Baltimore, Washington DC, Miami, Atlanta, Monterrey, San Juan, Santo Domingo, and Mexico City.]&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
This comic used to be [https://web.archive.org/web/20220125024922/https://store.xkcd.com/products/subways available as a poster] in the xkcd store before it was [[Store|shut down]].&lt;br /&gt;
&lt;br /&gt;
This comic also makes a good map for the Subway Planet in [[2765: Escape Speed]] and the link to xkcd is shown on the planet.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Large drawings]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Maps]]&lt;br /&gt;
[[Category:Comics with xkcd store products]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1523:_Microdrones&amp;diff=410428</id>
		<title>1523: Microdrones</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1523:_Microdrones&amp;diff=410428"/>
				<updated>2026-04-16T01:55:50Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1523&lt;br /&gt;
| date      = May 11, 2015&lt;br /&gt;
| title     = Microdrones&lt;br /&gt;
| image     = microdrones.png&lt;br /&gt;
| titletext = Oh, weird, Amazon is out of butterfly nets.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Amazon Prime Air}} is a {{w|drone}}-based delivery system by Amazon.com currently being rolled out to cities,  but at the time was still in its conceptual stage. While on one level he thinks the idea is cool, [[Cueball]] worries about living in a sci-fi {{w|dystopia}}, with those drones flying all around him, tracking his actions, etc. In the third panel, [[Megan]] suggests sending a message to Congress, suggesting a law for making the stealing of drones legal. This would alleviate the problem of drones flying around everywhere because if they did people would catch them to use for themselves. In the final panel Megan begins to search for {{w|butterfly nets}} so they are ready to catch the microdrones when the law to make it legal to steal the drones goes through.&lt;br /&gt;
&lt;br /&gt;
This tactic may not work as well as planned; drones will likely simply fly higher or employ other security measures since there are no regulations on drone behavior.&lt;br /&gt;
&lt;br /&gt;
The title text implies that Amazon has seen this idea coming; they've marked butterfly nets as &amp;quot;out of stock&amp;quot;, to prevent prospective drone thieves from acquiring them. Alternatively, it could be taken to mean that:&lt;br /&gt;
*Amazon is out of stock of butterfly nets due to everyone purchasing them to catch drones with, implying many people had the same idea as Megan.&lt;br /&gt;
*Non-Amazon individuals controlling the drones have pre-emptively purchased them all.&lt;br /&gt;
*Amazon has put all of its nets into a private stock, in order to steal other companies' or individuals' drones.&lt;br /&gt;
*Amazon's drones have already become self-aware, and have altered the database in order to prevent their capture.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Amazon drones is also the subject of the title text in [[1625: Substitutions 2]] and there are two {{w|quadcopters}} over the volcano lake in [[1608: Hoverboard]]. Also, Cueball is abducted by seemly sentient drones in [[1630: Quadcopter]].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is standing behind Megan who sits at a desk typing on her laptop.]&lt;br /&gt;
:Cueball: So how do we regulate all these micro drones?&lt;br /&gt;
:Cueball: I mean, Amazon delivery bots sound cool...&lt;br /&gt;
&lt;br /&gt;
:[Cueball stands alone surrounded by three micro drones.]&lt;br /&gt;
:Cueball: But I worry that overnight we'll realize we're surrounded by these things, no one will know who's controlling them, and then ''bam'', sci-fi dystopia.&lt;br /&gt;
&lt;br /&gt;
:[Megan turns in her chair towards Cueball.]&lt;br /&gt;
:Megan: If you wanna slow it down, why not just remove all regulations, but then make drone theft legal?&lt;br /&gt;
&lt;br /&gt;
:[Cueball takes his hand to his chin and Megan turns back to type on the laptop.]&lt;br /&gt;
:Cueball: ...I ''like'' that.&lt;br /&gt;
:Megan: You write to congress.&lt;br /&gt;
:Megan: I'll stock up on butterfly nets.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Robots]]&lt;br /&gt;
[[Category:Butterfly net]]&lt;br /&gt;
[[Category:Drones]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2788:_Musical_Scales&amp;diff=410427</id>
		<title>2788: Musical Scales</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2788:_Musical_Scales&amp;diff=410427"/>
				<updated>2026-04-16T01:49:50Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2788&lt;br /&gt;
| date      = June 12, 2023&lt;br /&gt;
| title     = Musical Scales&lt;br /&gt;
| image     = musical_scales_2x.png&lt;br /&gt;
| imagesize = 326x222px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = In the Hall of the Mountain King was accidentally composed on log/log paper.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
In {{w|Musical_notation#Modern_staff_notation|standard Western musical notation}}, the horizontal position of a note indicates its relative temporal position in the piece, and the vertical position of a note denotes &amp;lt;!-- no pun intended, honest --&amp;gt; its pitch; but the pitch is really a logarithm of the note's frequency, as the frequency of a note doubles every octave, so it's a semi-log plot of sorts.  The comic thus explores what a notation would look like if the horizontal axis behaved this way instead. Likewise, the vertical axis has been rendered linearly by frequency, with the normally equally-set lines on a normal musical staff stretching to compensate for the increasing jumps between pitches.&lt;br /&gt;
&lt;br /&gt;
[[File:SimpleGifts.png|thumb|The nonstandard music notation depicted in the comic is the opening five measures of &amp;quot;{{w|Simple Gifts}}&amp;quot; ([https://upload.wikimedia.org/wikipedia/commons/1/16/Simple_Gifts_-_Pendyrus_Choir-cory_Band.ogg listen.])]]&lt;br /&gt;
&lt;br /&gt;
[[Randall]] may have mistakenly assumed that the lines of a music stave represent a linear increase in pitch and thus an exponential increase in frequency. He has thus mapped them onto a logarithmic scale by doubling the space between each successive line of the stave - one space between the bottom two lines, then two spaces, then four, then eight. In fact, the lines and the spaces between them correspond to notes in the C Major scale, which have unequal gaps between them. It is also possible that he is aware of this small inaccuracy and chose to ignore it in the name of humor.&lt;br /&gt;
&lt;br /&gt;
The title text purports to explain how {{w|In the Hall of the Mountain King}}, which progressively accelerates from an initially subtle start into a rapid hustle towards a series of crescendos at the end, was written on {{w|Log–log plot|log-log paper}}, that features nonlinear expansion in ''both'' its axes, in order to render various exponential graphs linear, often for the purposes of ease of understanding. Rather than these features being a deliberate composition decision, this says that they're only the result of how it was written down or read. Here, the music was originally written ''as though'' for log-log paper, using shorter notes as the piece went on, intended to have consistent actual durations throughout the piece—and then ''interpreted'' on a linear time scale, such that the later notes actually had shorter durations, speeding up the piece.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The sheet music for &amp;quot;Simple Gifts&amp;quot; on a distorted staff.]&lt;br /&gt;
:[Caption below the panel]:&lt;br /&gt;
:When transcribing music, remember to put ''frequency'' on a log scale and ''time'' on a linear one, not the other way around.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Music]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=824:_Guest_Week:_Bill_Amend_(FoxTrot)&amp;diff=410426</id>
		<title>824: Guest Week: Bill Amend (FoxTrot)</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=824:_Guest_Week:_Bill_Amend_(FoxTrot)&amp;diff=410426"/>
				<updated>2026-04-16T01:22:42Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 824&lt;br /&gt;
| date      = November 24, 2010&lt;br /&gt;
| title     = Guest Week: Bill Amend (FoxTrot)&lt;br /&gt;
| image     = guest_week_bill_amend_foxtrot.png&lt;br /&gt;
| titletext = Guest comic by Bill Amend of FoxTrot, an inspiration to all us nerdy-physics-majors-turned-cartoonists, of which there are an oddly large number.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Bill Amend}}, author of the newspaper comic ''{{w|FoxTrot}}'', draws for [[Randall]] in this special '[[:Category:Guest Week|Guest Week]]' edition of [[xkcd]]. In the first two panels, we see {{w|List_of_FoxTrot_characters#Jason_Fox|Jason Fox}}, a geeky 10-year-old from Amend's strip. Jason asks to draw comics for Randall. When Randall refuses, he uses the {{w|sudo}} command, used in {{w|Unix}} systems to perform an action as an administrator/super user. This forces Randall to agree. This is a reference to the very popular comic [[149: Sandwich]], which has now become a geek culture catch-phrase.&lt;br /&gt;
&lt;br /&gt;
It is a recurring theme in ''FoxTrot'' for Jason to offer to make substitute comics for artists, said comics usually involving mocking his sister Paige, and it is possible that Ponytail is representing her. This would be the first time that someone accepted his offers to make comics.&lt;br /&gt;
&lt;br /&gt;
In the first comic, [[Cueball]] is making a pun on the word {{Wiktionary|attractive}}. In the first context it means a person is  &amp;quot;good looking&amp;quot; or &amp;quot;beautiful&amp;quot; which the female character attributes to her hair. In Cueball's context, he means that he is feeling an increased gravitational pull from the woman, due to her increase in mass (see {{w|Gravitation}}). This setup is also very typical of the Jason Fox character, who, ostensibly ten, is supposed to be too young to like girls.  The female character's hair is done up in a ponytail similar to how Paige usually keeps hers, so this comic strip may also be a joke at Paige's expense.&lt;br /&gt;
&lt;br /&gt;
In 1927 {{w|Werner Heisenberg}} postulated his eponymous {{w|Uncertainty principle|Heisenberg Uncertainty Principle}}, which roughly states that in {{w|quantum mechanics}} one cannot know both the position and momentum of a particle. The joke is that (presumably) Elisabeth Heisenberg does not know the position of her keys, because she knows too much about their momentum. (This is also the subject of [[1473: Location Sharing]].)&lt;br /&gt;
&lt;br /&gt;
In many {{w|parliament}}ary and {{w|congress}}ional halls it is customary, when calling an issue to vote to have the people who want the issue at hand to be passed to say out loud that they agree. The customary response to this is to say &amp;quot;aye.&amp;quot; The dissenters are then asked. Their response would be &amp;quot;nay&amp;quot; or &amp;quot;no&amp;quot;. Then the volume (by rough {{w|decibel}}s) of the assenters and dissenters are weighed. If it is close, a more formal vote may be called. &amp;quot;Aye&amp;quot; is pronounced the same way as the letter &amp;quot;i&amp;quot; and &amp;quot;''i''&amp;quot; is the mathematical value of the square root of negative one, which can be used to represent an {{w|imaginary number}}.&lt;br /&gt;
&lt;br /&gt;
The title text of this comic draws attention to the fact that there are a number of notable people who have become famous as cartoonists, but also hold degrees in physics or have a strong interest in physics. This might seem unusual, because the average person might see physics and art as incompatible, and this is why Randall writes &amp;quot;an oddly large number.&amp;quot; These people include:&lt;br /&gt;
* Randall Munroe, the writer of xkcd, has a degree in physics from Christopher Newport University.&lt;br /&gt;
* Bill Amend, the creator of [http://www.foxtrot.com/ Foxtrot], majored in physics at Amherst College. &lt;br /&gt;
* Zach Weinersmith, who writes the webcomic [http://www.smbc-comics.com/ Saturday Morning Breakfast Cereal], majored in physics at San Jose State University.&lt;br /&gt;
* Henry Reich is the creator of the web video series [http://www.youtube.com/user/minutephysics MinutePhysics], and studied physics and mathematics at Grinnell College.&lt;br /&gt;
* Paul G. Hewitt is a physicist and [http://www.conceptualphysics.com/ author of physics textbooks]. His textbooks contain a number of cartoons, drawn by Hewitt himself, to help illustrate physics concepts.&lt;br /&gt;
* Arryn Diaz writes the webcomic [http://dresdencodak.com/ Dresden Codak], and majored in physics (among several other things) before dropping out. Her comics frequently reference ideas and experiments in physics.&lt;br /&gt;
* Larry Gonick is a cartoonist who has published [http://www.harpercollins.co.uk/search-results?contributor=larry-gonick a number of educational comic books], including The Cartoon Guide to Physics.&lt;br /&gt;
* Bud Grace, the creator of the comic [http://piranhaclubcomics.com/ Piranha Club] (previously known as Ernie) holds a PhD in nuclear physics. He has been making the comic since 1988.&lt;br /&gt;
* Darren 'Gav' Bleuel, the creator of [http://nukees.com/ Nukees], is himself a nuclear engineer.&lt;br /&gt;
&lt;br /&gt;
''Guest Week'' was a series of five comics written by five other comic authors. They were released over five consecutive days (Monday-Friday); not over the usual Monday/Wednesday/Friday schedule.&amp;lt;br&amp;gt;&lt;br /&gt;
The five comics are:&lt;br /&gt;
*[[822: Guest Week: Jeph Jacques (Questionable Content)]]&lt;br /&gt;
*[[823: Guest Week: David Troupes (Buttercup Festival)]]&lt;br /&gt;
*[[824: Guest Week: Bill Amend (FoxTrot)]]&lt;br /&gt;
*[[825: Guest Week: Jeffrey Rowland (Overcompensating)]]&lt;br /&gt;
*[[826: Guest Week: Zach Weiner (SMBC)]]&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Jason from FoxTrot is sitting at an artist's desk with a pencil, holding a phone.]&lt;br /&gt;
:Jason: Hi, Mr. Munroe? I have a great idea! Let me draw some strips for you!&lt;br /&gt;
:Randall, through the telephone: Fat chance, kid.&lt;br /&gt;
&lt;br /&gt;
:[Zoom in to Jason.]&lt;br /&gt;
:Jason: Sudo let me draw some strips for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[The following are transcripts of three strips.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[Cueball and Ponytail are looking at each other. Ponytail has some hearts floating next to her head.]&lt;br /&gt;
:Cueball: I find you more attractive than usual.&lt;br /&gt;
:Ponytail: You do? Is it my new haircut?&lt;br /&gt;
&lt;br /&gt;
:[Zoom in to Cueball.]&lt;br /&gt;
:Cueball: Actually, I think it's all the weight you've been putting on. Your gravitational pull is pretty severe.&lt;br /&gt;
&lt;br /&gt;
:[Cueball is now alone in the panel.]&lt;br /&gt;
:Cueball: Just sayin'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[Two people are in a living room. The woman is looking through a chest of drawers.]&lt;br /&gt;
:Caption: At home with the Heisenbergs&lt;br /&gt;
:Mrs. Heisenberg: I can't find my car keys.&lt;br /&gt;
:Mr. Heisenberg: You probably know too much about their momentum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[Congress is in session.  The Speaker is standing on stage in front of an American Flag hanging by an ionic column, holding up a gavel. Seven Members of Congress are seen in front of the stage: a Cueball, a Hairbun, a man with glasses, a woman with long hair, and three more Cueballs.  The first, fourth, and sixth members have their hands raised.]&lt;br /&gt;
:Caption: Why mathematicians should run for Congress&lt;br /&gt;
:Speaker: All those in favor of the bill say &amp;quot;aye.&amp;quot;&lt;br /&gt;
:Congressman #1: Aye.&lt;br /&gt;
:Congresswoman #2: Aye.&lt;br /&gt;
:Congress–Mathematician: √-1&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Guest Week]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Puns]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Comics with custom header texts]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2936:_Exponential_Growth&amp;diff=410425</id>
		<title>2936: Exponential Growth</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2936:_Exponential_Growth&amp;diff=410425"/>
				<updated>2026-04-16T01:20:03Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2936&lt;br /&gt;
| date      = May 22, 2024&lt;br /&gt;
| title     = Exponential Growth&lt;br /&gt;
| image     = exponential_growth_2x.png&lt;br /&gt;
| imagesize = 545x264px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Karpov's construction of a series of increasingly large rice cookers led to a protracted deadlock, but exponential growth won in the end.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
In this strip, Black Hat begins by demonstrating {{w|exponential growth}}, using a variation of the {{w|wheat and chessboard problem}}, a classic demonstration of this mathematical principle. Exponential growth involves an initial quantity being multiplied repeatedly by a constant larger than one. Small numbers can grow faster than our intuition anticipates. This principle is important in a number of real life applications, ranging from biological growth to {{w|inflation}} to reaction kinetics. &lt;br /&gt;
&lt;br /&gt;
The earliest versions of this story come from India and involve a man (the inventor of {{w|chess}}, in some tellings), being offered a reward by a king, and asking that a single grain of wheat (rice, in some versions) be placed on the first square of a chessboard, two on the second, and each subsequent square having twice as many grains as the one before. In the story, the king generally laughs off such a reward as being trivial, but soon learns that the reward would be impossible to pay. Since a chessboard contains 64 squares, the final square would contain 2&amp;lt;sup&amp;gt;63&amp;lt;/sup&amp;gt; (9,223,372,036,854,775,808) grains. This would be around 600 billion tonnes of wheat (which, even in modern times, would be centuries of global wheat production).&lt;br /&gt;
 		 	&lt;br /&gt;
In some versions of the story, the man is executed for embarrassing the king and for being over-greedy; in others, he is rewarded for his cleverness; in yet others, he becomes king himself as a consequence. There are also other versions that [https://www.comedy.co.uk/radio/finnemore_souvenir_programme/episodes/7/5/ subvert the well-known tale] by the king not being so naïve as to fall for the 'trick' played by the creator of the problem.&lt;br /&gt;
&lt;br /&gt;
[[Black Hat]] initially appears to be using this example, to demonstrate a mathematical principle, but actually turns out to be using it to &amp;quot;win&amp;quot; a chess match by covering the chess board in rice until his opponent quits out of frustration. Naturally, despite his claims that it's &amp;quot;nearly impossible to counter&amp;quot;, under the International Chess Federation ({{w|FIDE}})'s [https://www.fide.com/FIDE/handbook/LawsOfChess.pdf Laws of Chess], this would be illegal on several levels, as deliberately distracting or annoying your opponent is a violation, as is deliberately displacing the chess pieces. Black Hat, being the chaotic [[classhole]] that he is, likely simply doesn't care, and counts it as a win when his opponent [[Hairy]] stomps off out of annoyance. &lt;br /&gt;
&lt;br /&gt;
{{w|Garry Kasparov}} and {{w|Anatoly Karpov}} are both Russian chess grandmasters and former world champions. The two men famously competed for the world championship in the 1980s. The Kasparov gambit is a famous gambit that Kasparov played multiple times (but not, as Black Hat's is, something that can be played very early in the game). The title text implies that Kasparov actually tried Black Hat's method on Karpov, who attempted to consume all the rice with &amp;quot;increasingly large rice cookers&amp;quot;, but eventually couldn't keep up. While this is obviously fictional,{{cn}} it fits with the principle of exponential growth. If exponential growth is unrestricted, it will eventually grow beyond the constraints of anything that could plausibly be built to contain it. &lt;br /&gt;
&lt;br /&gt;
In any case, it appears that in his enthusiasm to enact his scheme, Black Hat has neglected to even set up his own pieces (or they have already been completely buried), never mind wait for the game to commence, so Hairy has nothing to resign from - indeed his king still appears to be standing as he walks away, so he may be only assumed to have resigned/defaulted due to competition rules that cover various circumstances in which one may leave the playing area (but, apparently, nothing too restrictive about bringing in sacks of rice). &lt;br /&gt;
&lt;br /&gt;
Another unusual Kasparov gambit is mentioned in [[3082: Chess Position]].&lt;br /&gt;
&lt;br /&gt;
==Math==&lt;br /&gt;
&lt;br /&gt;
The amount of rice collected on each square of the chess board is listed below. It all sums up to around 400 billion tons (or {{w|tonne}}s, the various distinctions being not so important), taking each grain as weighing approximately 0.02 grams. This is 500 times the annual world production.&lt;br /&gt;
&lt;br /&gt;
The last day, alone, would require 200 billion tons. But the implicit nature of this doubling is that the amount of rice you put on at any stage is exactly equal to the amount of rice already on the board ''plus one extra grain''. So there were around 200 billion tons already, before the last square required a virtually identical additional amount.&lt;br /&gt;
&lt;br /&gt;
* First row:&lt;br /&gt;
** a1: 1 grain&lt;br /&gt;
** a2: 2 grains&lt;br /&gt;
** a3: 4 ...&lt;br /&gt;
** a4: 8&lt;br /&gt;
** a5: 16&lt;br /&gt;
** a6: 32&lt;br /&gt;
** a7: 64&lt;br /&gt;
** a8: 128&lt;br /&gt;
* Second row&lt;br /&gt;
** b1: 256&lt;br /&gt;
** b2: 512&lt;br /&gt;
** b3: 1,024&lt;br /&gt;
** b4: 2,048&lt;br /&gt;
** b5: 4,096&lt;br /&gt;
** b6: 8,192&lt;br /&gt;
** b7: 16,384&lt;br /&gt;
** b8: 32,768&lt;br /&gt;
* First column of third to seventh rows&lt;br /&gt;
** c1: 65,536 grains (~ 1 kg)&lt;br /&gt;
** d1: 16,777,216 (~ 400 kg)&lt;br /&gt;
** e1: 4,294,967,296 (~ 100 tons)&lt;br /&gt;
** f1: 1,099,511,627,776 (~ 25,000 tons)&lt;br /&gt;
** g1: 281,474,976,710,656 (~ 6 million tons)&lt;br /&gt;
* Eighth row, in detail&lt;br /&gt;
** h1:    72,057,594,037,927,936 (~ 1.5 billion tons, more than the 2022 world harvest)&lt;br /&gt;
** h2:   144,115,188,075,855,872&lt;br /&gt;
** h3:   288,230,376,151,711,744&lt;br /&gt;
** h4:   576,460,752,303,423,488&lt;br /&gt;
** h5: 1,152,921,504,606,846,976&lt;br /&gt;
** h6: 2,305,843,009,213,693,952&lt;br /&gt;
** h7: 4,611,686,018,427,387,904&lt;br /&gt;
** h8: 9,223,372,036,854,775,808 (~ 200 billion tons)&lt;br /&gt;
* Total: 18,446,744,073,709,551,615&lt;br /&gt;
&lt;br /&gt;
[https://upload.wikimedia.org/wikipedia/commons/e/e7/Wheat_Chessboard_with_line.svg Example on the chessboard (SVG diagram)]&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
:[Black Hat is talking to Cueball standing next to him, arm raised.]&lt;br /&gt;
:Black Hat: Exponential growth is very powerful.&lt;br /&gt;
&lt;br /&gt;
:[Closeup on Black Hat. Next to him is an image of the lower left part of a chessboard. The four leftmost squares in the bottom row have grains of rice on them -- one, two, four, and eight grains respectively.]&lt;br /&gt;
:Black Hat: A chessboard has 64 squares.&lt;br /&gt;
:Black Hat: Say you put one grain of rice on the first square, then two grains on the second, then four, then eight, doubling each time.&lt;br /&gt;
&lt;br /&gt;
:[Black Hat has emptied a bag of rice on a chessboard. There are two additional bags next to him, each labeled &amp;quot;Rice&amp;quot;, and a pile of rice already on the table. Some rice has spilled off, and a small pile of rice is growing at Black Hat's feet. A frustrated Hairy is walking away, fists clenched. On Hairy's side of the chessboard there is a white king and pawn.]&lt;br /&gt;
:[Caption above panel, representing Black Hat continuing to speak:]&lt;br /&gt;
:If you keep this up, your opponent will resign in frustration.&lt;br /&gt;
:It's called Kasparov's Grain Gambit. Nearly impossible to counter.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Hairy]]&lt;br /&gt;
[[Category:Chess]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Food]]&lt;br /&gt;
[[Category:Comics featuring real people]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3233:_Make_It_Myself&amp;diff=410424</id>
		<title>3233: Make It Myself</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3233:_Make_It_Myself&amp;diff=410424"/>
				<updated>2026-04-16T01:00:36Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: what am i missing??? what is 46????&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3233&lt;br /&gt;
| date      = April 15, 2026&lt;br /&gt;
| title     = Make It Myself&lt;br /&gt;
| image     = make_it_myself_2x.png&lt;br /&gt;
| imagesize = 284x438px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = It's not as big a loss as it looks, because now I have have leftover supplies, which will help me talk myself into doing this all over again with a new project!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created BY A BOT MADE WITH 20 MINUTES OF CODING, 30 MINUTES OF TROUBLESHOOTING, ANOTHER HOUR OF CODING, AND A SUBSCRIPTION TO CURSOR. Don't remove this notice too soon.}}&lt;br /&gt;
There are many people who complain about the retail price of items (especially, but not only, after rising prices such as with the trend of high rates of inflation occuring at around the time of this comic). People sometimes claim that they could make something themselves, thinking it will be quick and easy. Instead, Cueball reflects real life by listing the actual effort he would expend on such a project. In total, Cueball spends $60 (and 5-6 hours of &amp;quot;labor&amp;quot;) creating his replacement, and then ends up just buying the one in the store because his {{w|do it yourself|do-it-yourself}} replacement breaks sooner than the engineered product. This means that Cueball actually lost $60 on this venture, as well as at least a few hours and several trips to the store. And most people aren't as technically capable as Cueball (or as [[:Category:Cueball's computer problems|irrationally confident]] as Cueball is about his technical capabilities), so may not even be able to ''start'' to consider the self-built item.&lt;br /&gt;
&lt;br /&gt;
The title text has Cueball compensating for his losses by deluding himself into believing that the leftover supplies will help him with a future project. This could be the case depending on the supplies. When deciding whether to do work personally versus paying for a product or service, a common dilemma is that the DIY approach requires specialized tools and/or buying a larger amount of material than one will need. There may not be a future personal project requiring a specialized drill bit or leftover screws, in which case the leftovers will gather dust until they are thrown out or sold off at a steep discount. If Cueball was determined enough to put the leftovers to use, he might offer to create improved versions of his solution for other people, gradually amortizing the up-front costs and ultimately creating a competing product years later. Barring major cost-saving innovations, that new product might end up costing a similar amount to the original. If the original's price was inflated, the two products might drive down each other's prices through competition.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon.}}&lt;br /&gt;
:[Cueball and White Hat stand together looking at two boxes on the right side of the frame. Cueball is holding his arms out toward the boxes.]&lt;br /&gt;
&lt;br /&gt;
:Cueball: They want $80 for this?&lt;br /&gt;
:Cueball:  I could make one myself for $10 in parts, an hour of work, a trip to the hardware store, another $30 in parts, another few hours of work, two more trips to the store for $20 more in parts, another hour to redo the first hour of work because I messed up, and $80 to buy this when the one I made breaks.&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category: Comics featuring Cueball]]&lt;br /&gt;
[[Category: Comics featuring White Hat]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1428:_Move_Fast_and_Break_Things&amp;diff=410378</id>
		<title>1428: Move Fast and Break Things</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1428:_Move_Fast_and_Break_Things&amp;diff=410378"/>
				<updated>2026-04-15T19:20:12Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1428&lt;br /&gt;
| date      = October 1, 2014&lt;br /&gt;
| title     = Move Fast and Break Things&lt;br /&gt;
| image     = move_fast_and_break_things.png&lt;br /&gt;
| titletext = I was almost fired from a job driving the hearse in funeral processions, but then the funeral home realized how much business I was creating for them.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] appears to be at a job interview, proudly stating his motto to the interviewer [[Ponytail]]. &amp;quot;Move fast and break things&amp;quot; is a saying common in science and engineering industries. In that context, it means that making mistakes is a natural consequence of innovation in a highly competitive and complex environment. In particular, it was adopted by Mark Zuckerberg at Facebook (who even went as far as to say that [https://www.businessinsider.com/mark-zuckerberg-2010-10 'breaking things' is a necessary feature of moving 'fast enough']).&lt;br /&gt;
&lt;br /&gt;
While in software development it is unusual for any great harm to result from breaking things, the jobs listed in the comic are ones where there are serious consequences of mistakes. Some would result in dangerous or deadly situations, while others would just end up with broken packages etc. It's not clear what job Cueball is interviewing for; one suspects it's probably one that belongs in the 'breaking things is bad' group. The results of moving fast and breaking things for the listed jobs might include:&lt;br /&gt;
&lt;br /&gt;
*{{w|FedEx}} driver - Injured/killed pedestrians, collisions with other vehicles, broken &amp;amp; damaged packages&lt;br /&gt;
*Crane operator - Damage or destruction of load, dropping loads on people below, damage to crane&lt;br /&gt;
*Surgeon - Incorrect operations performed, removing wrong body parts, damaging expensive medical equipment, death of the patient, or in {{w|Robert_Liston#Liston's_most_famous_case|extreme cases}}, the death of assistants and spectators as well&lt;br /&gt;
*Air traffic controller - Air collisions, travel disruption, chaos&lt;br /&gt;
*Pharmacist - Handing out wrong drugs, resulting in illness or death, or destroying them&lt;br /&gt;
*Museum curator - Damage or destruction of items of historical or artistic significance, damage to the museum&lt;br /&gt;
*Waiter - Crockery broken, drinks or food spilled on customers, food tipped over people, possible injuries to self and others when hot food is involved&lt;br /&gt;
*Dog walker - Injuring the pet, or preventing it from fulfilling its bodily functions (the major reason for a walk)&lt;br /&gt;
*Oil tanker captain - Collisions between vessels, or tanker and port, or running aground, leading to oil spills and casualties&lt;br /&gt;
*Violinist - Ruining an ensemble's performance by playing too fast (with a higher tempo than other musicians), breaking the strings or body of the instrument&lt;br /&gt;
*Mars rover driver - Breaking an incredibly important vehicle, preventing further exploration, and ruining an extremely expensive mission&lt;br /&gt;
*Massage therapist - Injuring the client. Possibly also breaking the seat the client is on, leading to even more costly damages.&lt;br /&gt;
&lt;br /&gt;
The title text posits a morbid scenario where Cueball keeps running over funeral attendees, generating the need for more funerals.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball sits in a chair, leaning back with his arm resting on the back of the chair during a job interview. Ponytail is sitting in a chair behind her desk which is between them.]&lt;br /&gt;
:Cueball: My motto is &amp;quot;Move fast and break things.&amp;quot;&lt;br /&gt;
:[Below the panel follows a list:]&lt;br /&gt;
:'''Jobs I've been'''&lt;br /&gt;
:'''&amp;lt;u&amp;gt;fired from&amp;lt;/u&amp;gt;'''&lt;br /&gt;
:Fedex driver&lt;br /&gt;
:Crane operator&lt;br /&gt;
:Surgeon&lt;br /&gt;
:Air traffic controller&lt;br /&gt;
:Pharmacist&lt;br /&gt;
:Museum curator&lt;br /&gt;
:Waiter&lt;br /&gt;
:Dog walker&lt;br /&gt;
:Oil tanker captain&lt;br /&gt;
:Violinist&lt;br /&gt;
:Mars rover driver&lt;br /&gt;
:Massage therapist&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* This comic used to be [https://web.archive.org/web/20211215032205/https://store.xkcd.com/products/move-fast-and-break-things available as a mug] in the xkcd store before it was [[Store|shut down]].&lt;br /&gt;
* This is not the last time Cueball was fired, as seen in [[1852: Election Map]]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Mars rovers]]&lt;br /&gt;
[[Category:Comics with xkcd store products]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3125:_Snake-in-the-Box_Problem&amp;diff=410162</id>
		<title>3125: Snake-in-the-Box Problem</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3125:_Snake-in-the-Box_Problem&amp;diff=410162"/>
				<updated>2026-04-13T00:21:51Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3125&lt;br /&gt;
| date      = August 6, 2025&lt;br /&gt;
| title     = Snake-in-the-Box Problem&lt;br /&gt;
| image     = snake_in_the_box_problem_2x.png&lt;br /&gt;
| imagesize = 359x611px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Chemistry grad students have been spotted trying to lure campus squirrels into laundry hampers in the hope that it sparks inspiration.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This comic makes fun of the fact that many fields of math and science use analogies to help visualize complex problems. One such analogy, drawn in the comic, involves a snake on the edges of an n-dimensional hypercube, which is a real problem in graph theory called {{w|snake-in-the-box}}. In this problem, a snake is coiled around the edges of an ''n''-dimensional hypercube. No two adjacent corners of the cube can be occupied by non-consecutive parts of the snake (i.e., the snake can't come near itself). The problem involves finding the longest snake for a box of a given dimension. This problem has been solved up to an 8-dimensional cube, but remains unsolved for 9 dimensions and up. (The proper name for this problem, as stated in [https://oeis.org/A099155 OEIS A099155], is &amp;quot;Maximum length of a simple path with no chords in the n-dimensional hypercube&amp;quot; but, as the entry acknowledges, &amp;quot;snake-in-the-box problem&amp;quot; is the name commonly used for it.) Because a common way to formulate hypercubes is as a graph of N-tuples (each corner has N coordinates, each a 0 or 1 - for example, a {{w|Square|2-cube}} has vertices (0,0), (0,1), (1,0), (1,1) - and edges are drawn between vertices differing only in one coordinate), and this problem in particular pertains to connecting edges between vertices, this comic considers the problem to be an example of this phenomenon for the mathematical field of graph theory.&lt;br /&gt;
&lt;br /&gt;
The other thought experiment alluded to is {{w|Schrödinger's cat}}, which is used in quantum physics. In this thought experiment, a cat is put in a box which contains poison, a radioactive source and a {{w|Geiger counter}}. This aims to illustrate an apparent paradox in the principle of {{w|quantum superposition}} — a property of quantum mechanics in which objects can exist in two apparently incompatible states simultaneously, so long as no attempt is made to verify which state they are in. If an atom of the radioactive source decays, the poison is released, and the cat dies, tying its fate to the radioactive decay. Since radioactive decay obeys quantum mechanics, so long as the particle is not observed it will exist in a superposition of two states: decayed and not decayed. Therefore, the cat, too, may be considered to exist in a superposition of two states (alive and not alive) which appears to be absurd. The opening of the box collapses the superposition so that only one of those states remains.&lt;br /&gt;
&lt;br /&gt;
The comic jokes that these two &amp;quot;cute animal in a box&amp;quot; thought experiments are instances of a universal rule that applies to every field of study. Other fields have simply yet to &amp;quot;discover&amp;quot; their own analogies. Whether a snake counts as a &amp;quot;cute animal&amp;quot;, that would satisfy the &amp;quot;rule&amp;quot; is likely to occasion some debate.&lt;br /&gt;
&lt;br /&gt;
The title text takes this further by claiming that chemistry students have been trying to fix the lack of cute-animal-in-box thought experiments in their field by attempting to trap a squirrel with a laundry basket. This is possibly a reference to {{w|endohedral fullerene}} complexes, where an ion or atom is caged inside a spherical structure of carbon. Those students seem to hope that it will inspire them in some way, maybe similarly to what is depicted in [[1584: Moments of Inspiration]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The comic number 3125, being equal to 5&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;, is itself representable in terms of a (5-dimensional) box.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A panel with text both above and below the illustration, with further text below the panel.]&lt;br /&gt;
:[In the panel, above the illustration:]&lt;br /&gt;
:A snake slithers around a hypercube. No two non-consecutive parts of its coils can be on adjacent corners.&lt;br /&gt;
:[Three small illustrations of 4-dimensional hypercubes, each with a snake slithering around its edges. Each illustration has a red line or lines indicating an edge or edges where two non-consecutive parts of the snake are on adjacent corners. Below each hypercube is a red X.]&lt;br /&gt;
:[A large illustration depicting a 4-dimensional hypercube with a snake slithering around its edges.]&lt;br /&gt;
:[Below the large illustration is text printed in green. To the left of the text is a green checkmark.]&lt;br /&gt;
:Dimensions=4&lt;br /&gt;
:Max length=7&lt;br /&gt;
:[The following text is printed in black, except for the last word &amp;quot;UNSOLVED&amp;quot; which is printed in red:]&lt;br /&gt;
:Snake(N) = Largest snake that can fit in an N-dimensional hypercube&lt;br /&gt;
:Snake(N=1, 2, 3 .. 8) = 1, 2, 4, 7, 13, 26, 50, 98&lt;br /&gt;
:Snake(N&amp;gt;8) = UNSOLVED&lt;br /&gt;
&lt;br /&gt;
:[Text below the panel:]&lt;br /&gt;
:It turns out every scientific field has a key thought experiment that involves putting a cute animal in a weird box for no reason.&lt;br /&gt;
:So far, quantum mechanics and graph theory have found theirs, but most other fields are still working on it.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Cats]]&lt;br /&gt;
[[Category:Squirrels]] &amp;lt;!-- title text mention, only --&amp;gt;&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3175:_Website_Task_Flowchart&amp;diff=410054</id>
		<title>3175: Website Task Flowchart</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3175:_Website_Task_Flowchart&amp;diff=410054"/>
				<updated>2026-04-10T15:27:04Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3175&lt;br /&gt;
| date      = December 1, 2025&lt;br /&gt;
| title     = Website Task Flowchart&lt;br /&gt;
| image     = website_task_flowchart_2x.png&lt;br /&gt;
| imagesize = 333x683px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Tired of waiting on hold? Use our website to chat with one of our live agents, who are available to produce words at you 24/7!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
This is a flowchart comic. It ostensibly shows how to accomplish a task on a generic website. With the improvements to web infrastructure, {{w|accessibility}}, and {{w|user experience}} research over the decades, one might think that this would be simple. And sometimes, indeed, everything just works as expected. However, the flowchart indicates that this system often fails to handle error states gracefully and can {{wiktionary|a chain is only as strong as its weakest link|completely shut down}} when the smallest [[2347: Dependency|dependency]] breaks.&lt;br /&gt;
&lt;br /&gt;
The first step is to try to access the website. This includes {{w|Loading (computing)|pulling it up}}, and possibly {{w|Login|signing into an account}}. Websites may have legitimate or [[792: Password Reuse|nefarious]] reasons to profile their users. Either way, it is often another step in the way of the user's goals.&lt;br /&gt;
&lt;br /&gt;
The very start of the process can already fail if the website doesn't load, you enter an incorrect username or password, or the website's {{w|authentication}} service is having problems and rejecting legitimate credentials, for example. Issues at this stage are often out of the user's control, and can kneecap your productivity if you rely on that website, as was recently discussed in [[3170: Service Outage]]. The flowchart provides no specific {{w|troubleshooting}} guidance, as the exact steps will vary greatly depending on the specific problem, and readers may have their own troubleshooting process similar to [[627: Tech Support Cheat Sheet]]. It could involve visiting another website like &amp;quot;[https://www.isitdownrightnow.com Is It Down Right Now?]&amp;quot; to see if others are having the same issue, double-checking your login information, or looking up any specific error messages the site gives. You may simply have to wait until the broken service is restored.&lt;br /&gt;
&lt;br /&gt;
If you can enter the website, the next part of the flowchart asks if you finished your task successfully. If you have managed to both log in and do your work (perhaps eventually), it simply congratulates you for finishing your task. Failure here could be because of other issues with the website, such as {{w|Software bug|bugs}}, or [[3170: Service Outage|service outages]] in the middle of your work, or simply because the site doesn't have the tools to accomplish your specific task. You may have to use tools that ''are'' available in alternative or creative ways to accomplish what you need to. This might not be an option if your data or workflow relies on a specific site, or if alternatives are sketchy or paywalled.&lt;br /&gt;
&lt;br /&gt;
As the flowchart suggests, troubleshooting a website can be a major deviation from your goals, and can involve following many false leads for hours on end. There's a chance that the issue resolves, putting you back on track. But in the meantime, you're trying to find a solution on your own. According to the chart, talking to tech support is a last resort.&lt;br /&gt;
&lt;br /&gt;
If your troubleshooting fails at either stage, the chart guides you to call the website's {{w|customer service}} line, which is framed as admitting defeat. The flowchart reckons that an {{w|Automated attendant|automated}} phone system will put you {{w|Hold (telephone)|on hold}} and a {{w|On hold messaging|prerecorded message}} will then suggest trying to use the website ''instead'' of calling directly. While this would be helpful for someone calling the support line ''before'' trying the website, it assumes that the site is working properly and that the task can actually be accomplished there. It's like kicking you when you're already down to hear that &amp;quot;advice&amp;quot; after spending hours trying to use a website that simply would not work like you need it to. (Additionally, the voice reading out the website's URL is reading out the &amp;quot;www.&amp;quot; before the URL, which is usually unnecessary in the modern day (depening upon how the web-server, host/domain entries and/or browser are set up), possibly implying that the voice on the other end belongs to someone who's slightly technologically inept.)&lt;br /&gt;
&lt;br /&gt;
From there, the flowchart predicts that you will be so frustrated, you'll throw away both your computer and your phone into the sea before even listening to the rest of the on-hold message, similarly to [[1912: Thermostat]]. This would be a drastic and non-trivial way of responding to the situation, as it would destroy those devices. (It would, at least, formally end your attempt to use the website.) The flowchart presents this as an inevitability as a form of {{w|hyperbole}}.&lt;br /&gt;
&lt;br /&gt;
The title text is another part of the presumed hold message, perhaps for anyone who had not followed the flowchart as faithfully. It encourages the caller to visit the website's {{w|live chat}} function, a fairly recent development that combines the best and worst aspects of both online and phone-line support. It can be ambiguous whether the &amp;quot;live agent&amp;quot; is zero, one, or many people. You may reach a qualified staff member with all the answers to your questions; or, the conversation may be passed around between various less-than-knowledgeable staff who are merely following a ''script'' with a flowchart process (hopefully more useful than this one) to let them give more expert advice than they might be capable of; or, increasingly, you may connect to a {{w|chatbot}} that processes your queries, follows a similar script, and may be more difficult to reason with or escalate the issue. It may {{wiktionary|triage}} your initial responses before 'bothering' a real human who can help you with your request, if it is able to transfer you to a human at all.&lt;br /&gt;
&lt;br /&gt;
The claim that the agent can &amp;quot;produce words at you&amp;quot; (rather than &amp;quot;talk&amp;quot;, &amp;quot;speak&amp;quot;, or &amp;quot;communicate&amp;quot;) implies that their responses won't convey any information, or perhaps even basic understanding of the problem. If the live chat is open 24/7, you may reach a human agent elsewhere in the world who {{w|English as a second or foreign language|doesn't speak English natively}} and struggles to understand you. This could also be a blatantly honest admission that you will converse with a potentially inexhaustible {{w|large language model}} AI, where the words you receive might demonstrate {{w|Markov chain|even less understanding}} of your problem, as merely being able to send even [[1068: Swiftkey|vaguely logical sequences of words]] might be worse than useless. Additionally, giving random vague sequences of words would add to the user's frustration, strengthening their urge to throw their laptop into the ocean.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
[Caption above the panel:]&lt;br /&gt;
Doing a task using a company or organization's website:&lt;br /&gt;
&lt;br /&gt;
[Below this is a flowchart, starting with &amp;quot;Go to website, try to log in&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
[Box 1 (start):] Go to website, try to log in (go to to box 2)&lt;br /&gt;
&lt;br /&gt;
[Box 2:] Did it work? (Yes/No)&lt;br /&gt;
*Yes: Go to box 3&lt;br /&gt;
*No: Go to box 6&lt;br /&gt;
&lt;br /&gt;
[Box 3:] Try to do your task (go to box 4)&lt;br /&gt;
&lt;br /&gt;
[Box 4:] Did it work? (Yes/No)&lt;br /&gt;
*Yes: Go to box 5&lt;br /&gt;
*No: Go to box 8&lt;br /&gt;
&lt;br /&gt;
[Box 5 (end):] Nice! Done!&lt;br /&gt;
&lt;br /&gt;
[Box 6:] Spend hours troubleshooting account/login (go to box 7)&lt;br /&gt;
&lt;br /&gt;
[Box 7:] Did it work? (Yes/No)&lt;br /&gt;
*Yes: Go to box 3&lt;br /&gt;
*No: Go to box 10&lt;br /&gt;
&lt;br /&gt;
[Box 8:] Spend hours troubleshooting website (go to box 9)&lt;br /&gt;
&lt;br /&gt;
[Box 9:] Did it work? (Yes/No)&lt;br /&gt;
*Yes: Go to box 5&lt;br /&gt;
*No: Go to box 10&lt;br /&gt;
&lt;br /&gt;
[Box 10:] Give up and call customer service (go to box 11)&lt;br /&gt;
&lt;br /&gt;
[Box 11:] Hold message: &amp;quot;Did you know you could do all of this more quickly and easily on our website? Just go to W-W-W dot...&amp;quot; (go to box 12)&lt;br /&gt;
&lt;br /&gt;
[Box 12 (end):] Throw phone and laptop into the sea&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Flowcharts]]&lt;br /&gt;
[[Category:Internet]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1206:_Einstein&amp;diff=410038</id>
		<title>1206: Einstein</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1206:_Einstein&amp;diff=410038"/>
				<updated>2026-04-10T05:00:36Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1206&lt;br /&gt;
| date      = May 1, 2013&lt;br /&gt;
| title     = Einstein&lt;br /&gt;
| image     = einstein.png&lt;br /&gt;
| titletext = Einstein was WRONG when he said that provisional patent #39561 represented a novel gravel-sorting technique and should be approved by the Patent Office.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
In this comic [[Randall]] is playing with the notion that since Einstein contributed so much to society, and many of his works have withstood testing, disproving Einstein must be a difficult task. This is proven false by taking a mundane declaration by Einstein and proving it false with a simple task.&lt;br /&gt;
&lt;br /&gt;
Nobel laureate and ''Time'' Person of the Century [[Albert Einstein]] is often considered one of the smartest and most influential people in world history. His theories have revolutionized our understanding of the universe and inspired generations of scientists. In this comic, [[Cueball]] indicates to a friend that he is working on an experiment that may disprove Einstein. The implication is that Cueball is conducting a serious scientific experiment which may disprove one of Einstein's scientific theories. The second frame, however, implies that the Einsteinian &amp;quot;theory&amp;quot; Cueball's experiment may disprove is an offhand (and subjective) remark by Einstein about the availability of good sandwiches; this is not to mention the possible changing in quality of said sandwiches over time.&lt;br /&gt;
&lt;br /&gt;
The experiment Cueball is &amp;quot;currently conducting&amp;quot; probably refers to the fact that he is currently eating a sandwich, and if that sandwich was indeed a good one, Einstein would be proved wrong. Part of the humor here is that Cueball's friend probably assumes that when Cueball says &amp;quot;currently,&amp;quot; he means the experiment is part of Cueball's work, not what he is doing at that exact moment. In [[947: Investing]], Randall comments on how people put too much credence in a joke Einstein made in passing, and in [[799: Stephen Hawking]] we see {{w|Stephen Hawking}} in a similar predicament, every word he says taken as a major declaration.&lt;br /&gt;
&lt;br /&gt;
The title text demonstrates the ability to &amp;quot;disprove&amp;quot; Einstein while not challenging his scientific work but rather one of his decisions in his capacity as a patent clerk at the Swiss Patent Office at the time he published his first major papers (previously alluded to in [[1067: Pressures]]). According to [https://www.ige.ch/en/about-us/the-history-of-the-ipi/einstein/faq the Einstein FAQ] on the Swiss Federal Institute of Intellectual Property's website, patent #39561 is one of several patents that &amp;quot;we can assume ... were personally examined by Einstein&amp;quot;. A PDF of the patent, which was indeed a gravel sorter ({{w|trommel}}), can be found [http://web.archive.org/web/20150326212744/https://www.ige.ch/fileadmin/user_upload/Institut/d/i109401.pdf here] in German.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball and friend eating at a table.]&lt;br /&gt;
:Cueball: I'm currently conducting an experiment which may prove Einstein wrong!&lt;br /&gt;
:Friend: Ooh, exciting!&lt;br /&gt;
&lt;br /&gt;
:[Caption: 1947:]&lt;br /&gt;
:[Einstein and Cueball walking.]&lt;br /&gt;
:Einstein: It's ''impossible'' to find a good sandwich in this town.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Albert Einstein]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2691:_Encryption&amp;diff=409973</id>
		<title>2691: Encryption</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2691:_Encryption&amp;diff=409973"/>
				<updated>2026-04-09T00:58:50Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: why use / when you can use or&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2691&lt;br /&gt;
| date      = October 28, 2022&lt;br /&gt;
| title     = Encryption&lt;br /&gt;
| image     = encryption_2x.png&lt;br /&gt;
| imagesize = 235x380px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = WARNING: PEOPLE NAMED EVE ARE PROHIBITED FROM INSTALLING THIS APP!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
When teaching encryption or cryptography, it is common to use a story about sending messages from {{w|Alice and Bob|Alice to Bob}} (Party &amp;quot;A&amp;quot; and Party &amp;quot;B&amp;quot; respectively). Cueball claims to have created a texting app that only allows for this one thing. It does not, however, allow &amp;quot;Bob&amp;quot; to reply, making the usefulness of the app questionable at best. It is unclear how it enforces the name restriction, but it is possible that the app figures out the name of the phone's owner. The title text mentions Eve, who in the typical story represents an &amp;quot;eavesdropper&amp;quot;, someone who attempts to intercept the messages between Alice and Bob.  The fact that persons named Eve are 'forbidden' from installing the app suggests that it might not actually be as secure as Cueball advertises -- it may be that he naively thinks that it's just the name that makes the eavesdropper, and that by excluding all Eves, Alice's messages to Bob will remain private. It is not clear which phones will support this app, but it appears to be perfectly suited for the [[:Category:xkcd Phones|xkcd Phones]].&lt;br /&gt;
&lt;br /&gt;
The comics [[177: Alice and Bob]] and [[1323: Protocol]] are also about Alice and Bob.&lt;br /&gt;
&lt;br /&gt;
Even if the assumption that you could divine people's roles and motives from their names were correct, if the names of the users don't need to be verified, it seems possible for a bad actor to circumvent the security features of the app by simply lying about their name. Genuine users could also undermine the security with double installations and a complete mess of a contact list in which everyone's names are somehow identified as &amp;quot;Alice&amp;quot; or &amp;quot;Bob&amp;quot;, in order to increase its utility to them. Also, it would appear that &amp;quot;Bob&amp;quot; needn't be the commonly used name of the message receiver, in this scenario – it could also be a diminutive of what he is actually known by. Thus a user might claim to be &amp;quot;Bob&amp;quot; whichever his given name is.&lt;br /&gt;
&lt;br /&gt;
This may be related to the announcement that {{w|Signal (software)|Signal}} would be discontinuing support for SMS/MMS messages.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball showing a phone to a long-haired woman, identified in the caption as Alice]&lt;br /&gt;
:Cueball: The app will let you send messages to your friend Robert, or my brother.&lt;br /&gt;
:Alice: Can they reply?&lt;br /&gt;
:Cueball: No.&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel]:&lt;br /&gt;
:My new secure texting app only allows people named Alice to send messages to people named Bob.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category: Comics featuring Cueball]]&lt;br /&gt;
[[Category: Cryptography]]&lt;br /&gt;
[[Category: Smartphones]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1643:_Degrees&amp;diff=409898</id>
		<title>1643: Degrees</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1643:_Degrees&amp;diff=409898"/>
				<updated>2026-04-08T14:00:18Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: what is this kerning&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1643&lt;br /&gt;
| date      = February 15, 2016&lt;br /&gt;
| title     = Degrees&lt;br /&gt;
| image     = degrees.png&lt;br /&gt;
| titletext = &amp;quot;Radians Fahrenheit or radians Celsius?&amp;quot; &amp;quot;Uh, sorry, gotta go!&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] (possibly representing [[Randall]]) is being asked by a friend for the {{w|temperature}}. While he is checking his smartphone for the weather, he begins pondering what unit he should use when answering the question. (See below for [[#Cueball's reasoning|Cueball's reasoning]].)&lt;br /&gt;
&lt;br /&gt;
In the US (where Cueball and [[Randall]] are from), the {{w|Conversion of units of temperature|temperature scale}} used in daily life is {{w|Fahrenheit}}.  However, most of the rest of the world uses {{w|Celsius}} in daily life, and even in the US it is commonly used for science. This is also why Randall has previously made the comic [[526: Converting to Metric]]. There are also people who wish the US to change to the metric system, although some of them still wish to keep the Fahrenheit scale as mentioned in [[1982: Evangelism]]&lt;br /&gt;
&lt;br /&gt;
:'''The Celsius scale''' is from the {{w|metric system}}. Though this system has been officially sanctioned for use in the US since 1866, it is not frequently used in daily American life (except for some things, like liter bottles of soda), although it is the preferred system for trade and commerce according to the {{w|Metric Conversion Act}} of 1975. The US remains the only industrialized country, and one of few countries period, that does not use the metric system for everyday measurements, and in which official government documents and signage do not enforce metric units. The unit ''degree Celsius'' or °C is an accepted {{w|International System of Units#Derived units|derived unit}} from the {{w|International System of Units}} (SI units) used in science (which again is the modern form of the metric system). The SI unit of temperature is the {{w|kelvin}}, but this temperature scale just differs from the Celsius scale by a constant shift (273.15).&lt;br /&gt;
:'''The Fahrenheit scale''' is from the {{w|United States customary units|US customary system}} and the (British) {{w|Imperial units|imperial system}}. The unit is ''degree Fahrenheit'' or °F, and the relation to the Celsius scale is not easy to find in a mental calculation. The relations are: [°F] = [°C] × 9 ⁄ 5 + 32 or [°C] = ([°F] − 32) × 5 ⁄ 9. (For this exact reason Randall has previously made a helpful table for these situations in [[526: Converting to Metric]].)&lt;br /&gt;
&lt;br /&gt;
Unlike most areas of measurement, where the metric system is widely considered superior, there is considerable debate about the relative merits of Fahrenheit vs. Celsius. Cueball weighs up the benefits of both scales, but fails to find a solution he can live with, and since he feels he has to give his friend an answer now, he panics and gives the answer 0.173 {{w|radians}}.&lt;br /&gt;
:'''Radian''' is the standard unit of angular measure, used in many areas of mathematics. An angle's measurement in radians is numerically equal to the length of a corresponding arc of a {{w|unit circle}}. It has no units and is denoted with the superscript &amp;lt;sup&amp;gt;c&amp;lt;/sup&amp;gt;, but more commonly &amp;lt;sup&amp;gt;rad&amp;lt;/sup&amp;gt;, lest it be confused with {{w|Degree (angle)|angular degrees}}. One radian is an angle of approximately 57.3 degrees.&lt;br /&gt;
:'''Angular degrees''' is a system used to measure {{w|angles}} in {{w|geometry}}, and although it too uses the symbol ° and the word &amp;quot;degrees&amp;quot;, it has nothing to do with temperature measurements of any sort. Potentially he is referring to a monitor on his phone that is giving him data on which he is deliberating.&lt;br /&gt;
&lt;br /&gt;
Thus, this answer is unhelpful and the joke is that traditionally both geometric angles and temperature are measured in &amp;quot;degrees&amp;quot;, but there is no connection between the two. The Fahrenheit/Celsius debate was later referenced in [[1923: Felsius]].&lt;br /&gt;
&lt;br /&gt;
The title text indicates that Cueball's friend still wants to know whether the answer is in radians Fahrenheit or radians Celsius, which, despite being a silly way to express temperature, would actually enable the friend to get some meaning out of the reply. But this just takes Cueball back to the problem he failed to solve in the first place of choosing one scale in preference to the other, so suddenly he announces has to go and runs off without ever clarifying what he meant. This result is probably because he is afraid of being a bad friend according to his very last point regarding Fahrenheit: ''Valuing unit standardization over being helpful possibly makes me a bad friend.''&lt;br /&gt;
&lt;br /&gt;
The answer Cueball gives of 0.173 radians corresponds to a geometric angle 9.91° (0.173 × &amp;lt;sup&amp;gt;360°&amp;lt;/sup&amp;gt;/&amp;lt;sub&amp;gt;2π&amp;lt;/sub&amp;gt;). If this were &amp;quot;radians Celsius&amp;quot; it would be 9.91&amp;amp;nbsp;°C corresponding to 49.8&amp;amp;nbsp;°F and if it were &amp;quot;radians Fahrenheit&amp;quot; it would be 9.91&amp;amp;nbsp;°F corresponding to -12.3&amp;amp;nbsp;°C. Whilst the former may sound more reasonable, [http://boston.cbslocal.com/2016/02/13/new-england-freezing-temperatures-valentines-day-weekend/ given the temperatures] in {{w|Massachusetts}} (where Randall lives) when this comic came out, the day after Valentine's Day 2016, Cueball was probably giving his answer in radians Fahrenheit.&lt;br /&gt;
&lt;br /&gt;
=== Cueball's reasoning ===&lt;br /&gt;
==== Degrees Celsius ====&lt;br /&gt;
;International standard&lt;br /&gt;
:Degrees Celsius is derived unit in the SI system of units used to measure temperature in most countries today. Using the SI system would allow Cueball to be easily understood in most countries and is by far the most recognized system, but it is not the most commonly used in the United States, his presumed location in the comic.&lt;br /&gt;
;Helps reduce America's weird isolationism&lt;br /&gt;
:The United States uses its own set of units, including degrees Fahrenheit, called the {{w|United States customary system}} (similar but not equal to the imperial system), in contrast to most of the rest of the world, which uses the SI system. The US's system of units is therefore considered &amp;quot;weird&amp;quot; as it makes the US different from most of the world, but previous efforts to convert the US to the SI system have failed. Cueball evidently believes that by using SI units, he will help to eventually convert the US to the SI system, bringing considerable trade and tourism benefits and reducing confusion when dealing with foreigners.&lt;br /&gt;
;Nice how &amp;quot;negative&amp;quot; means below freezing&lt;br /&gt;
:On the Celsius scale, the freezing point of water at standard atmospheric pressure (101.325 kilopascals) is very close to 0&amp;amp;nbsp;°C, and any temperature below that is below the freezing point. The Fahrenheit scale uses different points of reference (using a water/ammonium chloride chemical reaction for the lower calibration, while the upper calibration is set such that water freezing and water boiling are 180 degrees apart), and as a result the freezing point of water is a less memorable 32&amp;amp;nbsp;°F.&lt;br /&gt;
;Physics major loyalty&lt;br /&gt;
:Cueball is apparently a physics major, like Randall, and SI units are more commonly used for scientific work (as the kelvin scale is sometimes used in physics and other sciences), even in the US. By using the Celsius scale in casual conversation, he would show his loyalty to the system used by actual physicists.&lt;br /&gt;
;Easier to spell&lt;br /&gt;
:&amp;quot;Celsius&amp;quot; is generally considered to be an easier word to spell than the German surname &amp;quot;Fahrenheit&amp;quot; (at least this is the case for Cueball, but not necessarily for those who more commonly use Fahrenheit than Celsius). In this case the word is being spoken and the point is not immediately relevant, but part of the joke is that Cueball is overthinking things and worrying about the general use of the word when an answer is needed in this specific case.&lt;br /&gt;
;We lost a Mars probe over this crap&lt;br /&gt;
:The {{w|Mars Climate Orbiter|Mars Climate Orbiter}} disintegrated in Mars' atmosphere because Lockheed used US customary units instead of the contractually specified metric units. This had nothing to do with temperature scales, but was the use of the unit pound-seconds where newton-seconds should have been used. This was a great and tragic loss for science in general, Mars exploration in particular, and thus also for Randall who would join NASA a few years later ([[:Category:Mars rovers|Mars rovers]] and probes are a frequent topic on ''xkcd'').&lt;br /&gt;
&lt;br /&gt;
====Degrees Fahrenheit====&lt;br /&gt;
;0&amp;amp;nbsp;°F to 100&amp;amp;nbsp;°F good match for temperature range in which most humans live&lt;br /&gt;
:In the context of air temperature, 0&amp;amp;nbsp;°F and 100&amp;amp;nbsp;°F correspond to &amp;quot;just about as cold as it gets&amp;quot; and &amp;quot;just about as hot as it gets&amp;quot; in temperate zones, thereby making Fahrenheit a useful temperature scale for weather reporting where most people live. By contrast, in Celsius a range of common temperatures in temperate zones is -20&amp;amp;nbsp;°C to 40&amp;amp;nbsp;°C, which is a less intuitive range for those used to the Fahrenheit scale.&lt;br /&gt;
;Rounds more usefully (70's, 90's)&lt;br /&gt;
:An argument sometimes heard for the continued use of Fahrenheit temperatures is that each 10 degrees change is meaningful in how we feel the temperature. Thus, it is convenient to talk about the temperature being in the 70's today, or in the 90's, etc. Since the Celsius degrees are almost twice as large, a similar statement about the temperature being in the 20's or 30's is not as useful, unless more precision is added by using phrases like low 20's or high 30's. However, this seems likely to be more a matter of which scale you are used to using than anything inherent in one scale or the other.&lt;br /&gt;
;Unit-aware computing makes imperial less annoying&lt;br /&gt;
:If you need to constantly convert between imperial and SI measurements in your head, or even between different imperial units (e.g., ounces and pounds), it gets annoying and is a strong argument for everyone using metric measurements all the time. But when it is easy to get the temperature - or any other measurement - reported in whatever units you want just by selecting the units you want your computer to report, then the annoyance is minimized, and the arguments for why we should stop using a familiar scale are weakened.  Note that Cueball is looking at his smart-phone to get the current temperature.&lt;br /&gt;
:As with many Americans, Randall is treating the {{w|United States customary units|United States customary system}} as identical to the {{w|imperial system}} as previously used in most of the rest of the English speaking world. They have many commonalites, and both systems have temperature measured in degrees Fahrenheit, but also differ in some ways (especially with certain units of volume).&lt;br /&gt;
;SI prefixes are less relevant for temperatures&lt;br /&gt;
:One of the nice things about SI measurements is how the same basic unit scales by factors of 10 with common prefixes - e.g., kilometer, millimeter, kilogram, milligram, etc.  Imperial measurements don't have this feature - you don't talk about long distances as kiloinches or small weights as millipounds. But, we generally don't use multiple units for atmospheric temperature (millidegrees or kilodegrees), so this argument for using SI measurements for length, mass, volume, etc., isn't as applicable for temperature scales.&lt;br /&gt;
;Fahrenheit is likely more clear in this context&lt;br /&gt;
:The fact that Cueball is having this conflict at all implies that the conversation is taking place in America, presumably between Americans. Given that, and given that the discussion is about the weather, the typical assumption is that temperatures will be given in Fahrenheit, unless specified otherwise. An answer in Fahrenheit is therefore likely to be easily understood, while an answer in Celsius risks being confusing, or even incomprehensible. &lt;br /&gt;
;Valuing unit standardization over being helpful possibly makes me a bad friend&lt;br /&gt;
:The final thing Cueball considers is to question why he would give an answer that attaches more value to promoting standardization of units when all his friend wants to know is whether it is cold or warm outside. Wouldn't it be more friendly to just answer the question the way his friend will find most convenient? This is probably the reason he ends up not giving any real answer, as giving the answer in Celsius would make him a bad friend. Panicking and giving the answer in radians makes him a weird friend, which might or might not be preferable to being a bad friend.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is looking at his smartphone while a friend calls to him from off-panel. Cueball is thinking as indicated with a thought bubble.]&lt;br /&gt;
:Off-screen voice: Hey, what's the temperature outside?&lt;br /&gt;
:Cueball (thinking): Should I give it in °F or °C?&lt;br /&gt;
&lt;br /&gt;
:[Zoom in on Cueballs head with a list of reason to use Celsius above him:]&lt;br /&gt;
:'''Degrees Celsius'''&lt;br /&gt;
:* International standard&lt;br /&gt;
:* Helps reduce America's weird isolationism&lt;br /&gt;
:* Nice how &amp;quot;negative&amp;quot; means below freezing&lt;br /&gt;
:* Physics major loyalty&lt;br /&gt;
:* Easier to spell&lt;br /&gt;
:* We lost a Mars probe over this crap&lt;br /&gt;
&lt;br /&gt;
:[Same view of Cueballs head, but wider frame to accommodate a broader a list of reason to use Fahrenheit:]&lt;br /&gt;
:'''Degrees Fahrenheit'''&lt;br /&gt;
:* 0°F to 100°F good match for temperature range in which most humans live&lt;br /&gt;
:* Rounds more usefully (70's, 90's)&lt;br /&gt;
:* Unit-aware computing makes imperial less annoying&lt;br /&gt;
:* SI prefixes are less relevant for temperatures&lt;br /&gt;
:* Fahrenheit is likely more clear in this context&lt;br /&gt;
:* Valuing unit standardization over being helpful possibly makes me a bad friend&lt;br /&gt;
&lt;br /&gt;
:[Cueball is holding his smartphone down while thinking as indicated with another thought bubble floating at the top. He then speaks and gets a reply from his off-panel friend.]&lt;br /&gt;
:Cueball (thinking): Crap, gotta pick something. Uhh...&lt;br /&gt;
:Cueball: ...0.173 radians.&lt;br /&gt;
:Off-screen voice: I'll just go check myself&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* At -0.698 radians (-40 degrees) it would not have mattered whether it was radians Celsius or radians Fahrenheit as the two scales are equal at this point: -40&amp;amp;nbsp;°F is the same temperature as -40&amp;amp;nbsp;°C.&lt;br /&gt;
&lt;br /&gt;
* Cueball’s friend’s last sentence does not end in punctuation. This mistake has not been fixed.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Space probes]]&lt;br /&gt;
[[Category:Social interactions]]&lt;br /&gt;
[[Category:Weather]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1731:_Wrong&amp;diff=409897</id>
		<title>1731: Wrong</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1731:_Wrong&amp;diff=409897"/>
				<updated>2026-04-08T13:56:49Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: sorry if i'm erasing something important, i just don't really understand what that was doing there .-.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1731&lt;br /&gt;
| date      = September 9, 2016&lt;br /&gt;
| title     = Wrong&lt;br /&gt;
| image     = wrong.png&lt;br /&gt;
| titletext = Hang on, I just remembered another thing I'm right about. See...&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Almost all matter that we encounter in everyday life is normal matter and not {{w|antimatter}}. Atoms, once believed to be the smallest unit of matter, are now known to be made up of {{w|protons}}, {{w|neutrons}} and {{w|electrons}}. Protons and neutrons are in turn made up of {{w|quarks}}, which are fundamental particles, which are not made of other particles. Quarks come in six different &amp;quot;{{w|Flavour (particle physics)|flavours}}&amp;quot; (up, down, top, bottom, charm, and strange), with protons and neutrons being made of up and down quarks. Each flavour also has a corresponding {{w|antiparticle}}, an antiquark, which would make up antiprotons and antineutrons.&lt;br /&gt;
 	&lt;br /&gt;
[[White Hat]] and [[Megan]] appear to be discussing the topics of antimatter and subatomic particles. White Hat asserts that people and objects are made partially of antimatter, because, as he claims, a proton (one of the particles which make up matter) is made of two quarks and an antiquark. In fact, protons are made up of two up quarks and a down quark, which is not an antiquark. He is likely making the mistake of mixing up the &amp;quot;up&amp;quot; and &amp;quot;down&amp;quot; flavours of quarks, which can be seen as complementary flavours of quarks, and mistaking them to be mutual antiparticles. He continues to elaborate on his idea by mentioning neutrons, which are made of two down quarks and an up quark.&lt;br /&gt;
&lt;br /&gt;
When Megan doubts his claim, White Hat takes out his smartphone to look it up, in order to show Megan that he is correct. However, upon researching online, he realizes that he was, in fact, '''wrong''', hence the title of the comic. Unwilling to admit being incorrect or yield his position in the discussion, he convinces himself that he wasn't actually wrong, as depicted by a scribble covering his realization. Instead, he completely changes the topic to try and re-frame it in order to prove that he wasn't wrong. In this case, he circles back and criticizes the entire scientific concept of &amp;quot;particles&amp;quot;, which can be seen as an attempt at a {{w|straw man}} on his part. Presumably, he will go on to explain how humans are not made of particles and quarks, but of waves.&lt;br /&gt;
&lt;br /&gt;
It is rather common to be unwilling to admit fault and to instead try to maintain an air of infallibility and intelligence. Some people are just too prideful to admit that they are inherently fallible. White Hat is one of those people, as depicted in several of his earlier appearances (see [[#Trivia|trivia section]]). [[Randall]] uses this comic to criticize people who are unable to put aside their ego and re-assess what they know in the face of empirical data. Such thinking flies directly against scientific rigor, adding an extra layer of irony to the situation, since White Hat and Megan are discussing a ''scientific'' topic. This method had already been called ''wrong'' in [[803: Airfoil]].&lt;br /&gt;
 	&lt;br /&gt;
White Hat's new topic, where he can be right, includes {{w|quantum field theory}} (QFT), a very complicated field, which is likely one Megan is not well versed in, as she was not quite sure about the anti-quarks. So he may be raising the topic because he believes she will not understand it sufficiently to refute his statements. Megan, however, recognizes exactly what he is trying to do, and can only sigh in response to his failed efforts. In QFT, particles are often described as {{w|Resonance (particle physics)|resonances}} or {{w|excited state|excited states}} of the underlying physical field, in the same way as photons may be thought of as excitations in the electromagnetic field; in this way White Hat appears to be dismissing his earlier errors by implying that particles are merely an effect of something more complex, of which he can demonstrate his knowledge. Furthermore, in quantum field theory, quarks do not exist in the conventional sense.&lt;br /&gt;
&lt;br /&gt;
In the title text, White Hat just remembers another thing he's right about. This demonstrates even more clearly that he is not interested in a discussion on the merits of a topic, but instead is seeking only recognition and validation for being right. This bears some similarity to [[386: Duty Calls]], in which [[Cueball]] stays up late correcting someone on the Internet, and [[2051: Bad Opinions]], where Cueball actively seeks out people with bad opinions for him to correct.&lt;br /&gt;
&lt;br /&gt;
White Hat may have incorrectly remembered that, while the valence quarks in a proton are all matter, quantum field theory says that protons also contain an indefinite number of &amp;quot;virtual&amp;quot; anti-quarks, quarks, and gluons (see the video ''[https://www.youtube.com/watch?v=LraNu_78sCwv What are Quarks?]''). His final comment could be referring to the ontological debate over whether virtual particles are in some sense real or only an artefact of perturbation theory. Alternatively, he may have been confused by the fact that negatively charged quarks contribute negatively to baryon number.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[White Hat is walking beside Megan, index finger extended]&lt;br /&gt;
:White Hat: Really, we're all made of antimatter. A proton consists of two quarks and an antiquark.&lt;br /&gt;
:Megan: ...I don't think that's right.&lt;br /&gt;
&lt;br /&gt;
:[White Hat stops to take out his smartphone tapping on it. Megan stops and turns towards him.]&lt;br /&gt;
:White Hat: Sure it is. Neutrons are, too.&lt;br /&gt;
:Megan: Do you mean &amp;quot;up&amp;quot; and &amp;quot;down&amp;quot; quarks? I think antiquarks are a different thing.&lt;br /&gt;
:White Hat: No, let me show you...&lt;br /&gt;
:Tap &lt;br /&gt;
:Tap&lt;br /&gt;
&lt;br /&gt;
:[Zooming in on White Hat's head, while he is holding his phone up looking at it. He is thinking as shown with a bubbly thought bubble.]&lt;br /&gt;
:White Hat (thinking): I'm...wrong?&lt;br /&gt;
&lt;br /&gt;
:[White Hat has lowered the phone. He is still thinking the same but the text has been scribbled out.]&lt;br /&gt;
:White Hat (thinking): I'm...wrong?&lt;br /&gt;
&lt;br /&gt;
:[White Hat purges the thought from his mind]&lt;br /&gt;
:White Hat (thinking): ...&lt;br /&gt;
&lt;br /&gt;
:[Similar setting as in the first panel, but in a full row wide panel, and White Hat is still holding his smartphone]&lt;br /&gt;
:White Hat: Really, the whole idea of &amp;quot;particles&amp;quot; is inaccurate. These are abstractions arising from quantum field theory, but what most people don't realize is...&lt;br /&gt;
:Megan: &amp;lt;small&amp;gt;*Sigh*&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*This comic could be seen as a follow up to [[1605: DNA]]. Going back through the last White Hat appearances it turns out that DNA, 13 White Hat comics back, is actually the last where White Hat has been the fall guy. For instance he has the opposite role in [[1640: Super Bowl Context]], and he is not &amp;quot;the stupid guy&amp;quot; in the comics between that and this one, but often just another guy than Cueball. Further back in [[1255: Columbus]] he was again the fall guy, and again it reminds a bit about this comic. Actually Megan even begins that comic with a *sigh* like she finished this one.&lt;br /&gt;
*Quarks are also referenced in [[1418: Horse]], [[1621: Fixion]] and the first time they were mentioned, in [[474: Turn-On]], all six flavors were also mentioned.&lt;br /&gt;
*Antimatter is also referenced in [[683: Science Montage]], [[826: Guest Week: Zach Weiner (SMBC)]] and [[1621: Fixion]] as well as being the subject of the ''[[what if? (blog)|what if?]]'' article ''{{what if|114|Antimatter}}''. It was also mentioned in another ''what if?'': ''{{what if|79|Lake Tea}}''. &lt;br /&gt;
*A similar thought process where earlier thoughts are scribbled out was used by Cueball in [[1650: Baby]], but for different reasons.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Smartphones]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1731:_Wrong&amp;diff=409896</id>
		<title>1731: Wrong</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1731:_Wrong&amp;diff=409896"/>
				<updated>2026-04-08T13:54:26Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1731&lt;br /&gt;
| date      = September 9, 2016&lt;br /&gt;
| title     = Wrong&lt;br /&gt;
| image     = wrong.png&lt;br /&gt;
| titletext = Hang on, I just remembered another thing I'm right about. See...&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
Almost all matter that we encounter in everyday life is normal matter and not {{w|antimatter}}. Atoms, once believed to be the smallest unit of matter, are now known to be made up of {{w|protons}}, {{w|neutrons}} and {{w|electrons}}. Protons and neutrons are in turn made up of {{w|quarks}}, which are fundamental particles, which are not made of other particles. Quarks come in six different &amp;quot;{{w|Flavour (particle physics)|flavours}}&amp;quot; (up, down, top, bottom, charm, and strange), with protons and neutrons being made of up and down quarks. Each flavour also has a corresponding {{w|antiparticle}}, an antiquark, which would make up antiprotons and antineutrons.&lt;br /&gt;
 	&lt;br /&gt;
[[White Hat]] and [[Megan]] appear to be discussing the topics of antimatter and subatomic particles. White Hat asserts that people and objects are made partially of antimatter, because, as he claims, a proton (one of the particles which make up matter) is made of two quarks and an antiquark. In fact, protons are made up of two up quarks and a down quark, which is not an antiquark. He is likely making the mistake of mixing up the &amp;quot;up&amp;quot; and &amp;quot;down&amp;quot; flavours of quarks, which can be seen as complementary flavours of quarks, and mistaking them to be mutual antiparticles. He continues to elaborate on his idea by mentioning neutrons, which are made of two down quarks and an up quark.&lt;br /&gt;
&lt;br /&gt;
When Megan doubts his claim, White Hat takes out his smartphone to look it up, in order to show Megan that he is correct. However, upon researching online, he realizes that he was, in fact, '''wrong''', hence the title of the comic. Unwilling to admit being incorrect or yield his position in the discussion, he convinces himself that he wasn't actually wrong, as depicted by a scribble covering his realization. Instead, he completely changes the topic to try and re-frame it in order to prove that he wasn't wrong. In this case, he circles back and criticizes the entire scientific concept of &amp;quot;particles&amp;quot;, which can be seen as an attempt at a {{w|straw man}} on his part. Presumably, he will go on to explain how humans are not made of particles and quarks, but of waves.&lt;br /&gt;
&lt;br /&gt;
It is rather common to be unwilling to admit fault and to instead try to maintain an air of infallibility and intelligence. Some people are just too prideful to admit that they are inherently fallible. White Hat is one of those people, as depicted in several of his earlier appearances (see [[#Trivia|trivia section]]). [[Randall]] uses this comic to criticize people who are unable to put aside their ego and re-assess what they know in the face of empirical data. Such thinking flies directly against scientific rigor, adding an extra layer of irony to the situation, since White Hat and Megan are discussing a ''scientific'' topic. This method had already been called ''wrong'' in [[803: Airfoil]].&lt;br /&gt;
 	&lt;br /&gt;
White Hat's new topic, where he can be right, includes {{w|quantum field theory}} (QFT), a very complicated field, which is likely one Megan is not well versed in, as she was not quite sure about the anti-quarks. So he may be raising the topic because he believes she will not understand it sufficiently to refute his statements. Megan, however, recognizes exactly what he is trying to do, and can only sigh in response to his failed efforts. In QFT, particles are often described as {{w|Resonance (particle physics)|resonances}} or {{w|excited state|excited states}} of the underlying physical field, in the same way as photons may be thought of as excitations in the electromagnetic field; in this way White Hat appears to be dismissing his earlier errors by implying that particles are merely an effect of something more complex, of which he can demonstrate his knowledge. Furthermore, in quantum field theory, quarks do not exist in the conventional sense.&lt;br /&gt;
&lt;br /&gt;
In the title text, White Hat just remembers another thing he's right about. This demonstrates even more clearly that he is not interested in a discussion on the merits of a topic, but instead is seeking only recognition and validation for being right. This bears some similarity to [[386: Duty Calls]], in which [[Cueball]] stays up late correcting someone on the Internet, and [[2051: Bad Opinions]], where Cueball actively seeks out people with bad opinions for him to correct.&lt;br /&gt;
&lt;br /&gt;
White Hat may have incorrectly remembered that, while the valence quarks in a proton are all matter, quantum field theory says that protons also contain an indefinite number of &amp;quot;virtual&amp;quot; anti-quarks, quarks, and gluons (see the video ''[https://www.youtube.com/watch?v=LraNu_78sCwv What are Quarks?]''). His final comment could be referring to the ontological debate over whether virtual particles are in some sense real or only an artefact of perturbation theory. Alternatively, he may have been confused by the fact that negatively charged quarks contribute negatively to baryon number. &amp;lt;nowiki&amp;gt;&amp;lt;!--&amp;lt;/nowiki&amp;gt; I think that that's incorrect; could you be thinking about strangeness and bottomness instead? I'm not wrong, but let's talk about something else that I'm right about instead. &amp;lt;nowiki&amp;gt;--&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[White Hat is walking beside Megan, index finger extended]&lt;br /&gt;
:White Hat: Really, we're all made of antimatter. A proton consists of two quarks and an antiquark.&lt;br /&gt;
:Megan: ...I don't think that's right.&lt;br /&gt;
&lt;br /&gt;
:[White Hat stops to take out his smartphone tapping on it. Megan stops and turns towards him.]&lt;br /&gt;
:White Hat: Sure it is. Neutrons are, too.&lt;br /&gt;
:Megan: Do you mean &amp;quot;up&amp;quot; and &amp;quot;down&amp;quot; quarks? I think antiquarks are a different thing.&lt;br /&gt;
:White Hat: No, let me show you...&lt;br /&gt;
:Tap &lt;br /&gt;
:Tap&lt;br /&gt;
&lt;br /&gt;
:[Zooming in on White Hat's head, while he is holding his phone up looking at it. He is thinking as shown with a bubbly thought bubble.]&lt;br /&gt;
:White Hat (thinking): I'm...wrong?&lt;br /&gt;
&lt;br /&gt;
:[White Hat has lowered the phone. He is still thinking the same but the text has been scribbled out.]&lt;br /&gt;
:White Hat (thinking): I'm...wrong?&lt;br /&gt;
&lt;br /&gt;
:[White Hat purges the thought from his mind]&lt;br /&gt;
:White Hat (thinking): ...&lt;br /&gt;
&lt;br /&gt;
:[Similar setting as in the first panel, but in a full row wide panel, and White Hat is still holding his smartphone]&lt;br /&gt;
:White Hat: Really, the whole idea of &amp;quot;particles&amp;quot; is inaccurate. These are abstractions arising from quantum field theory, but what most people don't realize is...&lt;br /&gt;
:Megan: &amp;lt;small&amp;gt;*Sigh*&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*This comic could be seen as a follow up to [[1605: DNA]]. Going back through the last White Hat appearances it turns out that DNA, 13 White Hat comics back, is actually the last where White Hat has been the fall guy. For instance he has the opposite role in [[1640: Super Bowl Context]], and he is not &amp;quot;the stupid guy&amp;quot; in the comics between that and this one, but often just another guy than Cueball. Further back in [[1255: Columbus]] he was again the fall guy, and again it reminds a bit about this comic. Actually Megan even begins that comic with a *sigh* like she finished this one.&lt;br /&gt;
*Quarks are also referenced in [[1418: Horse]], [[1621: Fixion]] and the first time they were mentioned, in [[474: Turn-On]], all six flavors were also mentioned.&lt;br /&gt;
*Antimatter is also referenced in [[683: Science Montage]], [[826: Guest Week: Zach Weiner (SMBC)]] and [[1621: Fixion]] as well as being the subject of the ''[[what if? (blog)|what if?]]'' article ''{{what if|114|Antimatter}}''. It was also mentioned in another ''what if?'': ''{{what if|79|Lake Tea}}''. &lt;br /&gt;
*A similar thought process where earlier thoughts are scribbled out was used by Cueball in [[1650: Baby]], but for different reasons.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Smartphones]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3229:_Grammar&amp;diff=409776</id>
		<title>3229: Grammar</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3229:_Grammar&amp;diff=409776"/>
				<updated>2026-04-07T04:20:51Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3229&lt;br /&gt;
| date      = April 6, 2026&lt;br /&gt;
| title     = Grammar&lt;br /&gt;
| image     = grammar_2x.png&lt;br /&gt;
| imagesize = 227x312px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Communication is one of the most popular ways to transmit information, ahead of rivals such as&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by a EEEEEEEEEEEEEEEEEEEEE. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
[[Miss Lenhart]] is shown teaching a classroom about {{w|grammar}}. Grammar is a system and set of rules to describe how a certain language is structured. This is useful to make communication and meaning standardized and clear with little to no difficulty for parsing. In this comic, Miss Lenhart claims that grammar is &amp;quot;''one'' of the most popular ways to structure a language&amp;quot;. She also presents two alternative methods (though it could be interpreted as a list of four items without commas to split it up) that competed to substitute grammar, yet evidently never took off to be implemented for practical use. Despite seeming nonsensical, they've gained their own endonyms:&lt;br /&gt;
&lt;br /&gt;
;Words order words random words words random good&lt;br /&gt;
:This form of alternative grammar arbitrarily consists of words that vaguely help understanding the overall sentence.&lt;br /&gt;
&lt;br /&gt;
;EEEEEEEEEEEEEEEEEEE&lt;br /&gt;
:This is the strangest of the two. It might be referencing a scream as a form of communication (albeit an unreliable one)&lt;br /&gt;
&lt;br /&gt;
The title text continues Lenhart's lecture, as she moves on to {{w|communication}} and its rival alternatives, similar to the subject of grammar, but seems to cut off before naming the first one. This may reference {{w|nonverbal communication}} (which is communication without oral means), but this is a subset of communication. Either Miss Lenhart has transferred into another mode of transmitting information to self-demonstrate (that may be impossible to render textually) or lack thereof, as the sudden stop in the middle of the sentence could be a joke for how there no other ways to convey information without communication. Still, this doesn't rule out other possible alternatives to communication, as Lenhart implies that other methods exist. Nonetheless, self-demonstrating lack of communication would not be useful in this setting without further explanation, as abruptly ceasing to provide more information could instill confusion in her students.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[Miss Lenhart is teaching in a classroom. Two students can be seen sitting at desks in front of her, [[Cueball]] in the first row and [[Megan]] in the second row.]&lt;br /&gt;
:Miss Lenhart: '''Grammar''' is one of the most popular ways to structure a language, ahead of rival methods such as '''''words order words random words words random good''''' and '''''EEEEEEEEEEEEEEEEEEE'''''.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Miss Lenhart]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Language]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3226:_Home_Solar&amp;diff=409257</id>
		<title>3226: Home Solar</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3226:_Home_Solar&amp;diff=409257"/>
				<updated>2026-03-31T18:57:39Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3226&lt;br /&gt;
| date      = March 30, 2026&lt;br /&gt;
| title     = Home Solar&lt;br /&gt;
| image     = home_solar_2x.png&lt;br /&gt;
| imagesize = 740x258px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = &amp;quot;While I try to do my part to destroy the environment, I try not to focus too much on individual responsibility. By pushing for broad policy changes, we can collectively do far more damage to the biosphere than any of us could on our own.&amp;quot;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created recently by HARMING THE ENVIRONMENT. Don't remove this notice too soon.}}&lt;br /&gt;
[[Black Hat]] and [[Cueball]] are outside Black Hat's house discussing the {{w|solar panel}}s he has recently installed on the roof. (Or alternatively outside another house, e.g. Cueball's, with its solar panels having initiated the comparison.) Being a [[72: Classhole|classhole]], Black Hat is attempting to live in a way that will maximize his negative impact on the environment. Cueball asks why he has installed solar panels, since he knows Black Hat, and that he has described himself as anti-'{{w|renewable energy|renewables}}'. Black Hat responds that, as much as he'd prefer an option that harmed the planet more, solar power ({{w|photovoltaics}} and/or {{w|solar thermal energy}}) is simply the cheapest option and his budget is incapable of supporting anything else.&lt;br /&gt;
&lt;br /&gt;
Black Hat's words in panel 3, that &amp;quot;the technology just isn't there and the cost is too high&amp;quot;, is an oft-repeated excuse for those sticking with {{w|fossil fuel}} use rather than potentially deploy renewable energy technology, such as solar panels. When solar panel technologies were in their infancy, their costs were [https://www.iea.org/data-and-statistics/charts/evolution-of-solar-pv-module-cost-by-data-source-1970-2020 very high], pricing out most uses of them; but now solar panels are mass-produced, together with some potential periods of official subsidy (with varying likelihood, by both location and time) as the manufacturing/installation industries were encouraged to be more developed, and it has become [https://www.wri.org/insights/growth-renewable-energy-sector-explained more affordable] for households to put solar panels on their rooftops, so the excuse has lost much of its validity. Nowadays this excuse is commonly used to justify technological inertia.&lt;br /&gt;
&lt;br /&gt;
This may also be reference to the high oil/gasoline prices recently, going up over 30% in the past two weeks prior to this comic's publication, overwhelingly due to {{w|2026 Strait of Hormuz crisis|military activity}} disrupting fuel (and other) trading, and its knock-on effects globally.&lt;br /&gt;
&lt;br /&gt;
In the end, Black Hat claims that he can try to 'make up for this' by using the saved money to buy industrial waste and burn it in his backyard. Cueball responds with a knowing comment about 'carbon onsets'. This is a play on {{w|Carbon offsets and credits|carbon ''offsets''}}: certificates used for demonstrating mitigation of one's own carbon footprint, by effectively crowd-funding larger projects that are {{w|Carbon dioxide removal|'carbon negative'}} but are difficult to properly coordinate directly and individually. Carbon offsets represent emission reductions or captures happening elsewhere, and can be used to ''offset'' emissions caused by the user of the credit. This is rather than just relying upon random altruistic third parties to put the effort and finance into such a scheme to counteract others' care-free carbon emissions, or to allow a way to reward those who would indeed just do this off their own back.&lt;br /&gt;
&lt;br /&gt;
Black Hat does the reverse, causing extra environmental harm to offset (or &amp;quot;onset&amp;quot;, as Cueball calls it) the good reluctantly done by him by using solar panels instead of an {{w|oil burner|oil furnace}}. This doesn't really make sense since it's not clear what target he would be trying to 'onset' to; there is no 'ideal' level of emissions that he would be trying to achieve, although one can assume that he'll be aiming to be at least the wrong side of 'carbon neutral'&amp;lt;!-- the term 'carbon positive' is often used for being 'positively beyond neutral', confusingly, rather than merely being break-even; or 'carbon negative' meaning &amp;quot;less net carbon than there would be, but still a net emitter&amp;quot;, so it would be a troublesome term to use, without a long explanation like this bit... Sorry! --&amp;gt;. While the solar panels will have a much lower carbon footprint than the oil furnace, they will still have had some, in manufacture, and other options (such as burning coal) could provide him with even more emissions than the oil.&lt;br /&gt;
&lt;br /&gt;
The title text is a spin on a standard argument about personal responsibility in tackling environmental issues, distorted through the perspective of Black Hat. Low amounts of action to address personal impact is sometimes excused by pointing out that it will be a 'drop in the ocean' relative to the scale of the problem, and suggesting that only action at a global institutional level can really address it. Black Hat believes (correctly) that policy and other systemic change can cause bigger damage than just him burning industrial waste, and is excited about the potential for this to change things for the worse. This is ironic, because ingrained institutional and systemic factors have played a significant role in ''causing'' the problems we now have, and holding up the finding of solutions to them.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Black Hat and Cueball stand next to a house with solar panels on the roof.]&lt;br /&gt;
:Cueball: Wait, you got solar panels? &lt;br /&gt;
:Cueball: I thought you were against renewables.&lt;br /&gt;
&lt;br /&gt;
:[Zoom to show only Cueball and Black Hat.]&lt;br /&gt;
:Black Hat: Oh, definitely. I hate the environment and want to harm it as much as possible.&lt;br /&gt;
:Black Hat: I'd '''''love''''' to have an oil furnace.&lt;br /&gt;
&lt;br /&gt;
:[Zoom in on Black Hat; only his head and shoulders are visible.]&lt;br /&gt;
:Black Hat: But the technology just isn't there and the cost is too high.&lt;br /&gt;
:Black Hat: I despise solar, but it makes more financial sense in my situation.&lt;br /&gt;
&lt;br /&gt;
:[Zoom out to show Cueball and Black Hat again.]&lt;br /&gt;
:Black Hat: But with the money I'm saving, I can buy and burn industrial waste in my yard to try to make up for it.&lt;br /&gt;
:Cueball: Ah, yeah, carbon onsets.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Black Hat]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3103:_Exoplanet_System&amp;diff=408869</id>
		<title>3103: Exoplanet System</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3103:_Exoplanet_System&amp;diff=408869"/>
				<updated>2026-03-26T02:00:40Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3103&lt;br /&gt;
| date      = June 16, 2025&lt;br /&gt;
| title     = Exoplanet System&lt;br /&gt;
| image     = exoplanet_system_2x.png&lt;br /&gt;
| imagesize = 623x447px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Sure, this exoplanet we discovered may seem hostile to life, but our calculations suggest it's actually in the accretion disc's habitable zone.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Exoplanet}}s are planets outside the Sun's {{w|Solar System}}. As astronomers discover more and more of these, they are finding all kinds of weird and unexpected examples, often with unusual and interesting physical properties, necessitating the introduction of new categorisations to describe them. Here, [[Randall]] presents a depiction of a hypothetical star system containing many exoplanets of different exotic types. Most of these are entirely imaginary, and some are outright nonsensical.&lt;br /&gt;
&lt;br /&gt;
A number of the planet descriptions reference the potential habitability. This attracts a lot of attention, particularly in the media and popular imagination, both because it suggests a higher potential for finding {{w|extraterrestrial life}} of a form we might more easily recognise, and because such planets might potentially be examined as candidates for future {{w|space colonization}}. Unfortunately, for many hopefuls, there are a number of specific conditions required for {{w|Earth life|life}} to survive, and there are many possible ways for space to be inhospitable to life. As a result, most exoplanets that have been discovered have conditions that make it nearly impossible for humans to survive, and difficult for any life form as we know it to exist. The examples here illustrate (in an exaggerated fashion) some of the many frustrations astronomers face when analyzing planets and getting their hopes up, only to discover the planets they found are, sadly, nothing like Earth.&lt;br /&gt;
&lt;br /&gt;
There are a total of 19 planets in the comic. Here are the explanations for each planet, in order of how far they are from the star:&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!-- 50px from the star--&amp;gt;  Giant planet orbiting so close that it's actually rolling on the star's surface&lt;br /&gt;
: {{w|Giant planet}}s are observed to be gravitationally pulled close to their star (see ''Hot Jupiter'', below). Here, such a process has progressed until the planet is literally touching the star, which would likely put it inside the star's {{w|Roche limit}} and cause the planet to disintegrate. Even if the planet stayed intact, the star has no solid surface to roll on.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!-- 80pxfrom the star--&amp;gt;  Hot Jupiter&lt;br /&gt;
: A {{w|Hot Jupiter}} is typical terminology used in analyzing exoplanets, generally depicting a {{w|gas giant}} (of a size similar to our {{w|Jupiter}} or {{w|Saturn}}) which orbits in a much closer/hotter orbit than our own. Hot Jupiters are easier to detect than many other types of exoplanets, due to both their gravitational effect on their stars (creating larger and/or more frequent wobbles, compared to any smaller and/or more distant planets) and their vastly more significant dimming effect on their host star's light (obscuring a greater quantity, if they happen to {{w|Astronomical transit|pass in front of it}}, than would any smaller body).&lt;br /&gt;
:We know of our own two 'not-hot Jupiters', and various other planets, ''despite'' their relative undetectability across interstellar space. Most were observed directly (and a majority of those were first detected by the {{w|Human eye|Mark-I Eyeball}}, over millennia&amp;lt;!-- for those keeping score, *without* even including &amp;quot;Look down... That's the Earth...&amp;quot; to that count, five of the seven(/eight, for the 20thC-nostalgic) others are eyeball-detectable and probably prehistorically 'known' about, along with the Moon+Sun... --&amp;gt;), with coincidental celestial alignments and their gravitational effects upon the Sun being far less obvious. Studies {{w|Jupiter#Formation and migration|suggest that}} planets may change their orbits over time, on timescales too long to easily observe directly, so we can somewhat account for the existance and prevalence of Hot Jupiters, given that the stars ''currently'' with more tightly orbiting Jupiter-mass planets are more likely to be confirmed as such. Whether they are anything like as common and significant as initial observational counts suggest, and thus what the 'typical temperature' of any given Jupiter-like might be (including whether our own system's distribution of planetary sizes and distances is common or rare) is therefore a question that remains open for the time-being, our more local assessment of gas-giant warmth aside.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--115px from the star--&amp;gt;  Planet that may actually be in the habitable zone, according to a very optimistic modeling paper by some desperate postdocs&lt;br /&gt;
: The {{w|habitable zone}} of a star is the range at which water is liquid. Notably, planets in the habitable zone could potentially host extraterrestrial life of a form we might more easily understand, which would mean greater funding for further research. As such, researchers will go to great lengths to determine as many habitable planets as they can.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--175px--&amp;gt;  There's a pulsar here but it's probably fine&lt;br /&gt;
: A {{w|pulsar}} is a {{w|neutron star}} which emits beams of radiation while spinning very fast. This means that this system is technically a {{w|binary star}}. The mass of a neutron star, this close to the visible star, means that any planets could not be simply in orbit around the latter. In addition to the {{w|gravitational instability}} this would produce, the intensity of the radiation and excess heat from the pulsar would make it extremely difficult for any form of life to exist in the system. Also, neutron stars are remnants of a {{w|supernova}} explosion, an event which is likely to sterilize, eject, or outright destroy any planets exposed to it. All of this lends a substantial level of irony to the &amp;quot;probably fine&amp;quot; comment.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--250px--&amp;gt;  A waterworld paradise with beautiful oceans and warm&amp;amp;mdash; wait, no, we just got new measurements, it's a hellish steam oven&lt;br /&gt;
: In any scientific field, new information may turn previously established knowledge on its head. Exoplanet research is no different, and a planet that at first seems to be habitable might turn out to be an incredibly deadly {{w|steam world}}. An example of this can be found in our own solar system with {{w|Venus}}, which was known to have clouds as early as the 1700s and was speculated to be habitable &amp;amp;mdash; but later, in the 1960s, those clouds were found to be made of steaming hot {{w|sulfuric acid}}, at a mean temperature of 464 °C.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--280px--&amp;gt;  Planet that could be habitable, if there's a form of life that hates water but loves acid and being on fire &lt;br /&gt;
: Scientists remain open to the possibility that life might form from different conditions than those found on Earth. That said, the speculation that life on this planet must &amp;quot;love acid and being on fire&amp;quot; is more than a little sarcastic. Possibly to a reference to the ''[[what if? (blog)|what if?]]'' article ''{{what if|30|Interplanetary Cessna}}'', in which Randall points out that the atmosphere on Venus is pretty survivable at 55km, except for the sulfuric acid, and way too hot at the surface.&lt;br /&gt;
: A similarly hostile planet is the topic of [[2202: Earth-Like Exoplanet]].&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--300px--&amp;gt;  Mini Neptune&lt;br /&gt;
: As with &amp;quot;Jupiter&amp;quot; being used for the family of larger gas-giants, &amp;quot;Neptune&amp;quot; is often used to describe those with rough size/mass categories similar to our own not-quite-so-giant examples of {{w|Neptune}} and {{w|Uranus}} — sometimes instead termed &amp;quot;ice giants&amp;quot;, though superficially they are still as gaseous. To call something a {{w|mini-Neptune}} would make it significantly smaller than Neptune, possibly small enough to not properly be any kind of 'giant' at all (perhaps instead transitioning into the nominal {{w|super-Earth}} class, but still with a substantial atmosphere), making the comparison to it even less accurate.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--345px--&amp;gt;  Lukewarm Jupiter&lt;br /&gt;
: A humorous interpolation of the &amp;quot;Hot Jupiter&amp;quot; vs. 'normal'-Jupiter scale, producing a finer distinction between 'types' of Jupiter. The French Wikipedia has {{w|fr:Jupiter tiède|an article on &amp;quot;warm Jupiters&amp;quot;}}, indicating that it isn't an entirely unknown concept. &amp;quot;Lukewarm&amp;quot;, however, still stands as vague, ill-defined and unrigorous as a description, as is often deliberately invoked for xkcd.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--375px--&amp;gt;  Planet whose atmosphere is confirmed to contain atoms&lt;br /&gt;
: With interstellar distances, it is inevitable that some planets will be hard to get a read on. Here, the astronomers can only confirm the planet has an atmosphere, not what it is made of, or perhaps even how extensive it is. If it has an atmosphere at all, there are very few options ''except'' for it to be composed of atoms.&lt;br /&gt;
:Possibly in reference to headlines about exoplanets whose atmospheres contain molecules that may indicate biological life, but extrapolated to comedic levels of vagueness. A similar 'too cautious' approach to the data can be seen in [[2359: Evidence of Alien Life]].&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--400px--&amp;gt;  Earthlike data artifact&lt;br /&gt;
: An {{w|Artifact (error)|artifact}} in this context is any error where it looks like something exists when it actually doesn't. This may be caused by faults in the equipment, or by other activity that looks similar to a planet signal. In this case the astronomers thought they detected an {{w|Earth-like planet}}, only to discover it was a data artifact. There have been several such cases already, for example {{w|Gliese 581g}}, which was considered to be the most Earthlike planet discovered at the time, before more detailed analysis concluded it didn't exist. Either that, or it has turned out that {{w|Simulation hypothesis|Earth itself is a data artifact}}, which would raise {{w|Epistemology|epistemological}} questions about the whole endeavour of studying the universe.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--455px--&amp;gt;  Cold Jupiter&lt;br /&gt;
: Implicitly the opposite of a &amp;quot;Hot Jupiter&amp;quot;, as described above. Used here as another extension of the &amp;quot;''&amp;lt;temperature&amp;gt;'' Jupiter&amp;quot; running gag, &amp;quot;Cold Jupiter&amp;quot; is occasionally used in real astronomy (usually to describe our own type of 'non-hot' Jupiter, rather than an explicitly colder-still version), but is fairly informal and used mainly to directly deliniate against the Hot variety. The French Wikipedia also has {{w|fr:Jupiter froid|an article on cold Jupiters}}.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--460px--&amp;gt;  Potentially habitable void&lt;br /&gt;
: It seems that the part of this system that would be ideal for habitable planetary conditions does not actually contain any planets. This would make it much harder to actually inhabit (the notional inhabitants would have to build a world to live on, and would have nowhere to easily locate themselves while the building was in progress), to the implied frustration of the astronomers. Confusingly, the illustration of the void is as a patch that crosses several of the planetary orbits. Since it cannot remain a void if a planet passes through it, this suggests it is an object (or rather a lack of objects) that orbits in its own right. This is not normally how habitable zones work — they are usually a span of potential orbits, forming a {{w|Annulus (mathematics)|ring}} (or {{w|Spherical shell|shell}}) around the star. Additionally, this region is positioned right between Cold Jupiter and Hot Mars, implying that it is in between hot and cold, and between gaseous and rocky, being closer to Earth conditions.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--485px--&amp;gt;  Hot Mars&lt;br /&gt;
: Continuing the joke regarding Hot Jupiters. This assumes that if there's hot Jupiters, there must be a &amp;quot;hot&amp;quot; variant of every planet, including {{w|Mars}}.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--510px--&amp;gt;  Faint dust cloud that will cause several papers to be retracted&lt;br /&gt;
: This is in reference to the {{w|astronomical transit}} method of discovering planets by measuring periodic dips in brightness of the central star, done by missions like the {{w|Kepler space telescope}}. It turns out that not all variations in brightness are caused by planets, much to the disappointment of overeager data analysts and science news reporters; see, for example, {{w|Fomalhaut b}}, a former proposed exoplanet that turned out to be a dust cloud, or {{w|Tabby's Star}}, a star with odd irregular dimming pattern likely due to a dust cloud which was briefly thought by some to be an alien megastructure.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--515px--&amp;gt;  Either a gas giant or a fist-sized rock, depending upon which calibration method you use&lt;br /&gt;
: Scientific instruments, including telescopes, must be calibrated in various ways, and different calibration methods can lead to different corrections applied to raw data and hence different values for calibrated data. This is exaggerated in the comic to make a raw observation emerge from the calibration correction process as two objects of vastly different size - a range of uncertainty between tens of thousands of kilometers and a few centimeters, perhaps nine orders of magnitude. This is not particularly precise, even for a [[2205: Types of Approximation|cosmologist]]. Also, a &amp;quot;fist-sized rock&amp;quot; would be impossible to detect around a distant star using current technology; it would be difficult to spot {{w|Russell's teapot|something of this size}} around {{w|Sun|''our own'' star}}. &lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--560px--&amp;gt;  Mini Pluto&lt;br /&gt;
: In line with the Mini Neptune, above. {{w|Pluto}} is already significantly smaller than all other acknowledged planets (and even seven moons). Thus, in part, its redesignation as a &amp;quot;{{w|dwarf planet}}&amp;quot; — of which, it is not even {{w|Eris (dwarf planet)|the most massive}} known. A &amp;quot;mini Pluto&amp;quot; suggests an exoplanet that shares most of Pluto's features, but is somehow ''even smaller''. But presumably bigger than the above &amp;quot;fist-sized rock&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--620px--&amp;gt;  Wet Saturn&lt;br /&gt;
: A further spin on the &amp;quot;''&amp;lt;adjective&amp;gt; &amp;lt;planet&amp;gt;''&amp;quot; theme. May be a reference to the 'fact' that &amp;quot;Saturn would float in water&amp;quot; {{w|Saturn#Physical characteristics|due to its overall density}}. The difficulty of finding a practical way to test this notwithstanding, perhaps someone managed it with this planet. Alternatively, this is a Saturn-like planet that somehow has liquid surface water rather than predominantly atmospheric, or features a higher than expected proportion of continually recondensing water vapour.&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--745px--&amp;gt;  Planet whose surface may host conditions suitable for rocks&lt;br /&gt;
: As with the above planet whose atmosphere &amp;quot;contains atoms,&amp;quot; this planet is too difficult to get a read on, and the measurements are still so vague that it's unknown whether this planet is a rocky planet or a gas/{{w|ice giant}}.  This is also a play on the holy grail of exo-planet research — finding a planet whose surface hosts conditions suitable for ''life''. It's not impossible that that would involve [https://memory-alpha.fandom.com/wiki/Horta living rocks], but that would impose a {{w|Hypothetical types of biochemistry#Silicon biochemistry|different set of environmental restrictions}} from those for the carbon-based life we're familiar with. Seven months after this comic was posted, The Onion published an article titled [https://theonion.com/nasa-discovers-distant-planet-with-conditions-that-could-sustain-rocks/ &amp;quot;NASA Discovers Distant Planet With Conditions That Could Sustain Rocks&amp;quot;].&lt;br /&gt;
&lt;br /&gt;
; &amp;lt;!--840px--&amp;gt;  Somehow this whole system is smaller than the orbit of Mercury?!&lt;br /&gt;
: No planet, or anything other than an orbital path, shown. But apparently an indicator that all the rest of the given orbits (for Jupiter-likes, Mars-likes, dust clouds, etc., and even semi-inconvenient pulsars) exist within a planetary system that is ''extremely'' compact, fitting into a volume of space the size of that between our Sun and the orbit of its nearest planet, {{w|Mercury}}.&lt;br /&gt;
: This is likely a reference to the fact that many exoplanets located so far have been in even tighter orbits around their star than Mercury is with the Sun. It is worth noting, however, that this is likely to be observational bias, as large and tightly orbiting planets have a significantly larger (and hence easier to identify) effect on their parent star. There are likely many small and more distantly orbiting exoplanets that we are simply unable to observe effectively at this time.&lt;br /&gt;
: This is also likely a reference to the fact that the majority of stars in our galaxy are red dwarf stars, which are much cooler and dimmer than our Sun. This means that the habitable zone, and a suitably wide range of solar irradiance, can be found within a smaller radius of the star, such as the {{w|TRAPPIST-1}} system.&lt;br /&gt;
: A popular subject of xkcd, the [[:Category:Firefly|Firefly]]/Serenity series has a [https://firefly.fandom.com/wiki/The_Verse fictional setting] that is ''also'' purportedly compact (by Earth's system's standards), featuring many worlds (and multiple stars, though none of them pulsars) within 'easy' in-system travelling distances for narrative purposes. Some minor inspiration may have been derived from this, though no overtly direct references appear.&lt;br /&gt;
&lt;br /&gt;
; Title text&lt;br /&gt;
: The title text mentions a planet within an {{w|accretion disk}}, which means that the planet is passing through material inspiraling into some significantly more massive object and is likely inspiraling itself from resistive effects of passing through said material. Nevertheless, the researcher speaking assures us that the planet is in the disk's habitable zone, implying it is a worthwhile option for colonization. This is despite the observed location being likely temporary as the planet's orbit inspirals closer and closer to the central object, to say nothing of the likely constant bombardment of debris and potential radiation depending on how massive the central object is and how dense the accretion disk is. &lt;br /&gt;
&lt;br /&gt;
:Alternatively, the accretion disk in question might be a very compact and hot one, such as those found around some {{w|black hole}}s, which glows brightly enough to illuminate its surroundings like a star and has a habitable zone safely outside the disk itself.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript | make little more descriptive}}&lt;br /&gt;
:[Title:]&lt;br /&gt;
&lt;br /&gt;
:Typical exoplanet system&lt;br /&gt;
&lt;br /&gt;
:[Central diagram showing a star with various planets and objects orbiting around it, with trajectories connected by dotted lines and labels and descriptions by solid lines:]&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a large planet with strips and a dot near the center close to the center:]&lt;br /&gt;
&lt;br /&gt;
:Giant planet orbiting so close that it's actually rolling on the star's surface&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a small object with several large bulged spots near the star:]&lt;br /&gt;
&lt;br /&gt;
:Hot Jupiter&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a small object with strips on side:]&lt;br /&gt;
&lt;br /&gt;
:Mini Neptune&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a featureless round planet in the middle distance:]&lt;br /&gt;
&lt;br /&gt;
:Planet that could be habitable, if there's a form of life that hates water but loves acid and being on fire&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another object with strips and a dot close to the center:]&lt;br /&gt;
&lt;br /&gt;
:Cold Jupiter&lt;br /&gt;
&lt;br /&gt;
:[Label inside a bounded curvy  area:]&lt;br /&gt;
&lt;br /&gt;
:Potentially habitable void&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another planet with dots:]&lt;br /&gt;
&lt;br /&gt;
:Hot Mars&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a featureless round planet:]&lt;br /&gt;
&lt;br /&gt;
:Planet that may actually be in the habitable zone, according to a very optimistic modeling paper by some desperate postdocs&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a medium-sized object with two sets of spreading out rays coming out. There is also an outline that is slightly dotted:]&lt;br /&gt;
&lt;br /&gt;
:There's a pulsar here but it's probably fine&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another small featureless round planet:]&lt;br /&gt;
&lt;br /&gt;
:A waterworld paradise with beautiful oceans and warm - wait, no, we just got new measurements, it's a hellish steam oven&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a tiny planet:]&lt;br /&gt;
&lt;br /&gt;
:Mini Pluto&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another object:]&lt;br /&gt;
&lt;br /&gt;
:Lukewarm Jupiter&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a planet with a line in the middle:]&lt;br /&gt;
&lt;br /&gt;
:Planet whose atmosphere is confirmed to contain atoms&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another object which is partly round but some parts are taken off and the parts are  shaped like rectangles:]&lt;br /&gt;
&lt;br /&gt;
:Earthlike data artifact&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another planet with rings and stripes, but has some small dots near the bottom of the planet and the rings:]&lt;br /&gt;
&lt;br /&gt;
:Wet Saturn&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another featureless round object:]&lt;br /&gt;
&lt;br /&gt;
:Either a gas giant or a fist-sized rock, depending which calibration method you use&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to a bounded area with dots inside:]&lt;br /&gt;
&lt;br /&gt;
:Faint dust cloud that will cause several papers to be retracted&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to the a dotted line, which is outside:]&lt;br /&gt;
&lt;br /&gt;
:Somehow this whole system is smaller than the orbit of Mercury?!&lt;br /&gt;
&lt;br /&gt;
:[Label pointing to another object:]&lt;br /&gt;
&lt;br /&gt;
:Planet whose surface may host conditions suitable for rocks&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Astronomy]]&lt;br /&gt;
[[Category:Exoplanets]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408868</id>
		<title>3223: Inflation Timeline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408868"/>
				<updated>2026-03-26T01:42:17Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3223&lt;br /&gt;
| date      = March 23, 2026&lt;br /&gt;
| title     = Inflation Timeline&lt;br /&gt;
| image     = inflation_timeline_2x.png&lt;br /&gt;
| imagesize = 423x213px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Depending what corners of the internet you hang out on, 'regular' may at times awkwardly coexist with 'sexy.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by an INFLATIONARY BOT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Cosmic inflation}} is the theory that the very early universe briefly expanded at an enormous rate. This explains the &amp;quot;clumpiness&amp;quot; of the early universe, which is necessary to explain the formation of large-scale structures (e.g., {{w|galaxies}}, {{w|galaxy clusters}}, {{w|galaxy filaments}}, etc.) as the universe evolved. &amp;quot;Regular&amp;quot; {{w|price inflation}} refers to the economic process in which the average price of goods and services increases over time. This is usually gradual, but can be very rapid during times of economic distress.&lt;br /&gt;
&lt;br /&gt;
The comic puts both of these on the same {{w|Chronology of the universe|timeline of the universe}}. Cosmic inflation occurred very shortly (~10&amp;lt;sup&amp;gt;-34&amp;lt;/sup&amp;gt; s) after the {{w|Big Bang}}. Regular inflation has only occurred during the time after money started being used, perhaps {{w|History of money|7,000 years ago}}. Because of the logarithmic scale of the graph, the cosmic inflation period, which is only a tiny fraction of a second, looks much larger than regular inflation, which has existed for at least a few thousand years. This misinterpretation is likely [[Randall]]'s intention in the comic, along with conflating two wildly different kinds of &amp;quot;inflation&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a third meaning, that of {{w|body inflation}} as a sexual fetish or kink, which has no direct relationship to cosmology or economics.{{Citation needed}} [[Randall]] points out that body inflation happens at the same time as economic inflation, presumably because both arise from human activities. The suggestion that this coexistence may be &amp;quot;awkward&amp;quot; perhaps implies that people are paying to indulge in the fetish, and that those prices are subject to economic inflation. The &amp;quot;inflation&amp;quot; might also refer to something akin to a {{w|Sex doll|blow-up doll}}.&lt;br /&gt;
&lt;br /&gt;
Another comic illustrating cosmic inflation is [[2240: Timeline of the Universe]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Assuming regular inflation started with the {{w|History of money|first use of money 7,000 years ago}}, the &amp;quot;regular&amp;quot; inflation bar, if accurately displayed, would go from 10&amp;lt;sup&amp;gt;17.63856460&amp;lt;/sup&amp;gt; to 10&amp;lt;sup&amp;gt;17.63856482&amp;lt;/sup&amp;gt; seconds, with a difference in the exponents of 0.00000022. Depending on your display resolution, this would make the graph's &amp;quot;regular&amp;quot; bar on the order of a millionth of a pixel wide.&lt;br /&gt;
&lt;br /&gt;
Given that there are only seven secondary tick marks between the primary (labeled) tick marks, these denote not increments of 1 order of magnitude but 1.125 orders of magnitude.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Label of timeline]: Timeline of Inflation&lt;br /&gt;
:[A log-scale timeline labeled &amp;quot;Age of the Universe (seconds)&amp;quot; ranging from 10&amp;lt;sup&amp;gt;-44&amp;lt;/sup&amp;gt; to about 10&amp;lt;sup&amp;gt;25&amp;lt;/sup&amp;gt;, with labeled tick marks at 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt;, 10&amp;lt;sup&amp;gt;-30&amp;lt;/sup&amp;gt;, and so on until 10&amp;lt;sup&amp;gt;20&amp;lt;/sup&amp;gt; s. An arrow points from the text &amp;quot;Cosmic&amp;quot; to a bar that begins off-panel to the left and continues up to roughly 10&amp;lt;sup&amp;gt;-33&amp;lt;/sup&amp;gt; seconds. Another arrow points from the text &amp;quot;Regular&amp;quot; to a second, much thinner bar that covers another period between roughly 10&amp;lt;sup&amp;gt;16.9&amp;lt;/sup&amp;gt; and 10&amp;lt;sup&amp;gt;17.3&amp;lt;/sup&amp;gt; seconds.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408867</id>
		<title>3223: Inflation Timeline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408867"/>
				<updated>2026-03-26T01:41:41Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3223&lt;br /&gt;
| date      = March 23, 2026&lt;br /&gt;
| title     = Inflation Timeline&lt;br /&gt;
| image     = inflation_timeline_2x.png&lt;br /&gt;
| imagesize = 423x213px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Depending what corners of the internet you hang out on, 'regular' may at times awkwardly coexist with 'sexy.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by an INFLATIONARY BOT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Cosmic inflation}} is the theory that the very early universe briefly expanded at an enormous rate. This explains the &amp;quot;clumpiness&amp;quot; of the early universe, which is necessary to explain the formation of large-scale structures (e.g., {{w|galaxies}}, {{w|galaxy clusters}}, {{w|galaxy filaments}}, etc.) as the universe evolved. &amp;quot;Regular&amp;quot; {{w|price inflation}} refers to the economic process in which the average price of goods and services increases over time. This is usually gradual, but can be very rapid during times of economic distress.&lt;br /&gt;
&lt;br /&gt;
The comic puts both of these on the same {{w|Chronology of the universe|timeline of the universe}}. Cosmic inflation occurred very shortly (~10&amp;lt;sup&amp;gt;-34&amp;lt;/sup&amp;gt; s) after the {{w|Big Bang}}. Regular inflation has only occurred during the time after money started being used, perhaps {{w|History of money|7,000 years ago}}. Because of the logarithmic scale of the graph, the cosmic inflation period, which is only a tiny fraction of a second, looks much larger than regular inflation, which has existed for at least a few thousand years. This misinterpretation is likely [[Randall]]'s intention in the comic, along with conflating two wildly different kinds of &amp;quot;inflation&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a third meaning, that of {{w|body inflation}} as a sexual fetish or kink, which has no direct relationship to cosmology or economics.{{Citation needed}} [[Randall]] points out that body inflation happens at the same time as economic inflation, presumably because both arise from human activities. The suggestion that this coexistence may be &amp;quot;awkward&amp;quot; perhaps implies that people are paying to indulge in the fetish, and that those prices are subject to economic inflation. The &amp;quot;inflation&amp;quot; might also refer to something akin to a {{w|Sex doll|blow-up doll}}.&lt;br /&gt;
&lt;br /&gt;
Another comic illustrating cosmic inflation is [[2240: Timeline of the Universe]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Assuming regular inflation started with the {{w|History of money|first use of money 7,000 years ago}}, the &amp;quot;regular&amp;quot; inflation bar, if accurately displayed, would go from 10&amp;lt;sup&amp;gt;17.63856460&amp;lt;/sup&amp;gt; to 10&amp;lt;sup&amp;gt;17.63856482&amp;lt;/sup&amp;gt; seconds, with a difference in the exponents of 0.00000022. Depending on your display resolution, this would make the graph's &amp;quot;regular&amp;quot; bar on the order of a millionth of a pixel wide.&lt;br /&gt;
&lt;br /&gt;
Given that there are only seven secondary tick marks between the primary (labeled) tick marks, these denote not increments of 1 order of magnitude but 1.125 orders of magnitude.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:Caption: Timeline of Inflation&lt;br /&gt;
:[A log-scale timeline labeled &amp;quot;Age of the Universe (seconds)&amp;quot; ranging from 10&amp;lt;sup&amp;gt;-44&amp;lt;/sup&amp;gt; to about 10&amp;lt;sup&amp;gt;25&amp;lt;/sup&amp;gt;, with labeled tick marks at 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt;, 10&amp;lt;sup&amp;gt;-30&amp;lt;/sup&amp;gt;, and so on until 10&amp;lt;sup&amp;gt;20&amp;lt;/sup&amp;gt; s. An arrow points from the text &amp;quot;Cosmic&amp;quot; to a bar that begins off-panel to the left and continues up to roughly 10&amp;lt;sup&amp;gt;-33&amp;lt;/sup&amp;gt; seconds. Another arrow points from the text &amp;quot;Regular&amp;quot; to a second, much thinner bar that covers another period between roughly 10&amp;lt;sup&amp;gt;16.9&amp;lt;/sup&amp;gt; and 10&amp;lt;sup&amp;gt;17.3&amp;lt;/sup&amp;gt; seconds.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408866</id>
		<title>3223: Inflation Timeline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408866"/>
				<updated>2026-03-26T01:40:41Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: omg im so blind&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3223&lt;br /&gt;
| date      = March 23, 2026&lt;br /&gt;
| title     = Inflation Timeline&lt;br /&gt;
| image     = inflation_timeline_2x.png&lt;br /&gt;
| imagesize = 423x213px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Depending what corners of the internet you hang out on, 'regular' may at times awkwardly coexist with 'sexy.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by an INFLATIONARY BOT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Cosmic inflation}} is the theory that the very early universe briefly expanded at an enormous rate. This explains the &amp;quot;clumpiness&amp;quot; of the early universe, which is necessary to explain the formation of large-scale structures (e.g., {{w|galaxies}}, {{w|galaxy clusters}}, {{w|galaxy filaments}}, etc.) as the universe evolved. &amp;quot;Regular&amp;quot; {{w|price inflation}} refers to the economic process in which the average price of goods and services increases over time. This is usually gradual, but can be very rapid during times of economic distress.&lt;br /&gt;
&lt;br /&gt;
The comic puts both of these on the same {{w|Chronology of the universe|timeline of the universe}}. Cosmic inflation occurred very shortly (~10&amp;lt;sup&amp;gt;-34&amp;lt;/sup&amp;gt; s) after the {{w|Big Bang}}. Regular inflation has only occurred during the time after money started being used, perhaps {{w|History of money|7,000 years ago}}. Because of the logarithmic scale of the graph, the cosmic inflation period, which is only a tiny fraction of a second, looks much larger than regular inflation, which has existed for at least a few thousand years. This misinterpretation is likely [[Randall]]'s intention in the comic, along with conflating two wildly different kinds of &amp;quot;inflation&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a third meaning, that of {{w|body inflation}} as a sexual fetish or kink, which has no direct relationship to cosmology or economics.{{Citation needed}} [[Randall]] points out that body inflation happens at the same time as economic inflation, presumably because both arise from human activities. The suggestion that this coexistence may be &amp;quot;awkward&amp;quot; perhaps implies that people are paying to indulge in the fetish, and that those prices are subject to economic inflation. The &amp;quot;inflation&amp;quot; might also refer to something akin to a {{w|Sex doll|blow-up doll}}.&lt;br /&gt;
&lt;br /&gt;
Another comic illustrating cosmic inflation is [[2240: Timeline of the Universe]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Assuming regular inflation started with the {{w|History of money|first use of money 7,000 years ago}}, the &amp;quot;regular&amp;quot; inflation bar, if accurately displayed, would go from 10&amp;lt;sup&amp;gt;17.63856460&amp;lt;/sup&amp;gt; to 10&amp;lt;sup&amp;gt;17.63856482&amp;lt;/sup&amp;gt; seconds, with a difference in the exponents of 0.00000022. Depending on your display resolution, this would make the graph's &amp;quot;regular&amp;quot; bar on the order of a millionth of a pixel wide.&lt;br /&gt;
&lt;br /&gt;
Given that there are only seven secondary tick marks between the primary (labeled) tick marks, these denote not increments of 1 order of magnitude but 1.125 orders of magnitude.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Caption:] Timeline of Inflation&lt;br /&gt;
:[A log-scale timeline labeled &amp;quot;Age of the Universe (seconds)&amp;quot; ranging from 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt; to about 10&amp;lt;sup&amp;gt;25&amp;lt;/sup&amp;gt;, with labeled tick marks at 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt;, 10&amp;lt;sup&amp;gt;-30&amp;lt;/sup&amp;gt;, and so on until 10&amp;lt;sup&amp;gt;20&amp;lt;/sup&amp;gt; s. An arrow points from the text &amp;quot;Cosmic&amp;quot; to a bar that begins off-panel to the left and continues up to roughly 10&amp;lt;sup&amp;gt;-33&amp;lt;/sup&amp;gt; seconds. Another arrow points from the text &amp;quot;Regular&amp;quot; to a second, much thinner bar that covers another period between roughly 10&amp;lt;sup&amp;gt;16.9&amp;lt;/sup&amp;gt; and 10&amp;lt;sup&amp;gt;17.3&amp;lt;/sup&amp;gt; seconds.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408865</id>
		<title>3223: Inflation Timeline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408865"/>
				<updated>2026-03-26T01:38:45Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3223&lt;br /&gt;
| date      = March 23, 2026&lt;br /&gt;
| title     = Inflation Timeline&lt;br /&gt;
| image     = inflation_timeline_2x.png&lt;br /&gt;
| imagesize = 423x213px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Depending what corners of the internet you hang out on, 'regular' may at times awkwardly coexist with 'sexy.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by an INFLATIONARY BOT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Cosmic inflation}} is the theory that the very early universe briefly expanded at an enormous rate. This explains the &amp;quot;clumpiness&amp;quot; of the early universe, which is necessary to explain the formation of large-scale structures (e.g., {{w|galaxies}}, {{w|galaxy clusters}}, {{w|galaxy filaments}}, etc.) as the universe evolved. &amp;quot;Regular&amp;quot; {{w|price inflation}} refers to the economic process in which the average price of goods and services increases over time. This is usually gradual, but can be very rapid during times of economic distress.&lt;br /&gt;
&lt;br /&gt;
The comic puts both of these on the same {{w|Chronology of the universe|timeline of the universe}}. Cosmic inflation occurred very shortly (~10&amp;lt;sup&amp;gt;-34&amp;lt;/sup&amp;gt; s) after the {{w|Big Bang}}. Regular inflation has only occurred during the time after money started being used, perhaps {{w|History of money|7,000 years ago}}. Because of the logarithmic scale of the graph, the cosmic inflation period, which is only a tiny fraction of a second, looks much larger than regular inflation, which has existed for at least a few thousand years. This misinterpretation is likely [[Randall]]'s intention in the comic, along with conflating two wildly different kinds of &amp;quot;inflation&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a third meaning, that of {{w|body inflation}} as a sexual fetish or kink, which has no direct relationship to cosmology or economics.{{Citation needed}} [[Randall]] points out that body inflation happens at the same time as economic inflation, presumably because both arise from human activities. The suggestion that this coexistence may be &amp;quot;awkward&amp;quot; perhaps implies that people are paying to indulge in the fetish, and that those prices are subject to economic inflation. The &amp;quot;inflation&amp;quot; might also refer to something akin to a {{w|Sex doll|blow-up doll}}.&lt;br /&gt;
&lt;br /&gt;
Another comic illustrating cosmic inflation is [[2240: Timeline of the Universe]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Assuming regular inflation started with the {{w|History of money|first use of money 7,000 years ago}}, the &amp;quot;regular&amp;quot; inflation bar, if accurately displayed, would go from 10&amp;lt;sup&amp;gt;17.63856460&amp;lt;/sup&amp;gt; to 10&amp;lt;sup&amp;gt;17.63856482&amp;lt;/sup&amp;gt; seconds, with a difference in the exponents of 0.00000022. Depending on your display resolution, this would make the graph's &amp;quot;regular&amp;quot; bar on the order of a millionth of a pixel wide.&lt;br /&gt;
&lt;br /&gt;
Given that there are only seven secondary tick marks between the primary (labeled) tick marks, these denote not increments of 1 order of magnitude but 1.125 orders of magnitude.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Caption:] Timeline of Inflation&lt;br /&gt;
:[A log-scale timeline labeled &amp;quot;Age of the Universe (seconds)&amp;quot; ranging from 10&amp;lt;sup&amp;gt;-43.5&amp;lt;/sup&amp;gt; to about 10&amp;lt;sup&amp;gt;24.3&amp;lt;/sup&amp;gt;, with labeled tick marks at 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt;, 10&amp;lt;sup&amp;gt;-30&amp;lt;/sup&amp;gt;, and so on until 10&amp;lt;sup&amp;gt;20&amp;lt;/sup&amp;gt; s. An arrow points from the text &amp;quot;Cosmic&amp;quot; to a bar that begins off-panel to the left and continues up to roughly 10&amp;lt;sup&amp;gt;-33&amp;lt;/sup&amp;gt; seconds. Another arrow points from the text &amp;quot;Regular&amp;quot; to a second, much thinner bar that covers another period between roughly 10&amp;lt;sup&amp;gt;16.9&amp;lt;/sup&amp;gt; and 10&amp;lt;sup&amp;gt;17.3&amp;lt;/sup&amp;gt; seconds.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408864</id>
		<title>3223: Inflation Timeline</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3223:_Inflation_Timeline&amp;diff=408864"/>
				<updated>2026-03-26T01:34:57Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3223&lt;br /&gt;
| date      = March 23, 2026&lt;br /&gt;
| title     = Inflation Timeline&lt;br /&gt;
| image     = inflation_timeline_2x.png&lt;br /&gt;
| imagesize = 423x213px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Depending what corners of the internet you hang out on, 'regular' may at times awkwardly coexist with 'sexy.'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by an INFLATIONARY BOT. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{w|Cosmic inflation}} is the theory that the very early universe briefly expanded at an enormous rate. This explains the &amp;quot;clumpiness&amp;quot; of the early universe, which is necessary to explain the formation of large-scale structures (e.g., {{w|galaxies}}, {{w|galaxy clusters}}, {{w|galaxy filaments}}, etc.) as the universe evolved. &amp;quot;Regular&amp;quot; {{w|price inflation}} refers to the economic process in which the average price of goods and services increases over time. This is usually gradual, but can be very rapid during times of economic distress.&lt;br /&gt;
&lt;br /&gt;
The comic puts both of these on the same {{w|Chronology of the universe|timeline of the universe}}. Cosmic inflation occurred very shortly (~10&amp;lt;sup&amp;gt;-34&amp;lt;/sup&amp;gt; s) after the {{w|Big Bang}}. Regular inflation has only occurred during the time after money started being used, perhaps {{w|History of money|7,000 years ago}}. Because of the logarithmic scale of the graph, the cosmic inflation period, which is only a tiny fraction of a second, looks much larger than regular inflation, which has existed for at least a few thousand years. This misinterpretation is likely [[Randall]]'s intention in the comic, along with conflating two wildly different kinds of &amp;quot;inflation&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text refers to a third meaning, that of {{w|body inflation}} as a sexual fetish or kink, which has no direct relationship to cosmology or economics.{{Citation needed}} [[Randall]] points out that body inflation happens at the same time as economic inflation, presumably because both arise from human activities. The suggestion that this coexistence may be &amp;quot;awkward&amp;quot; perhaps implies that people are paying to indulge in the fetish, and that those prices are subject to economic inflation. The &amp;quot;inflation&amp;quot; might also refer to something akin to a {{w|Sex doll|blow-up doll}}.&lt;br /&gt;
&lt;br /&gt;
Another comic illustrating cosmic inflation is [[2240: Timeline of the Universe]].&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
Assuming regular inflation started with the {{w|History of money|first use of money 7,000 years ago}}, the &amp;quot;regular&amp;quot; inflation bar, if accurately displayed, would go from 10&amp;lt;sup&amp;gt;17.63856460&amp;lt;/sup&amp;gt; to 10&amp;lt;sup&amp;gt;17.63856482&amp;lt;/sup&amp;gt; seconds, with a difference in the exponents of 0.00000022. Depending on your display resolution, this would make the graph's &amp;quot;regular&amp;quot; bar on the order of a millionth of a pixel wide.&lt;br /&gt;
&lt;br /&gt;
Given that there are only seven secondary tick marks between the primary (labeled) tick marks, these denote not increments of 1 order of magnitude but 1.125 orders of magnitude.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Caption:] Timeline of Inflation&lt;br /&gt;
:[A log-scale timeline labeled &amp;quot;Age of the Universe (seconds)&amp;quot; ranging from 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt; to about 10&amp;lt;sup&amp;gt;25&amp;lt;/sup&amp;gt;, with labeled tick marks at 10&amp;lt;sup&amp;gt;-40&amp;lt;/sup&amp;gt;, 10&amp;lt;sup&amp;gt;-30&amp;lt;/sup&amp;gt;, ..., 10&amp;lt;sup&amp;gt;20&amp;lt;/sup&amp;gt; s. A bar labeled &amp;quot;Cosmic&amp;quot; begins off-panel to the left and continues up to roughly 10&amp;lt;sup&amp;gt;-33&amp;lt;/sup&amp;gt; seconds. A second, much thinner bar labeled &amp;quot;Regular&amp;quot; covers another period between roughly 10&amp;lt;sup&amp;gt;16.9&amp;lt;/sup&amp;gt; and 10&amp;lt;sup&amp;gt;17.3&amp;lt;/sup&amp;gt; seconds.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Sex]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=408862</id>
		<title>1453: fMRI</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=408862"/>
				<updated>2026-03-26T01:28:22Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1453&lt;br /&gt;
| date      = November 28, 2014&lt;br /&gt;
| title     = fMRI&lt;br /&gt;
| image     = fmri.png&lt;br /&gt;
| titletext = They also showed activation in the parts of the brain associated with exposure to dubious study methodology, concern about unremoved piercings, and exasperation with fMRI techs who won't stop talking about Warped Tour.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Functional magnetic resonance imaging}} (fMRI), as the name suggests, is an offshoot of the MRI. It shows brain activity, typically while the subject is performing tasks or responding to stimuli. During the test, the subject is laid in a relatively small cylinder inside a big, very loud, machine which produces extremely strong magnetic fields. To prevent damage or injury, the subject must remove all metal objects from their body, including piercings, jewelry, watches, etc.&lt;br /&gt;
&lt;br /&gt;
In the tests shown, the brain activity detected is a direct result of the testing environment itself, and has nothing to do with the simple tasks being performed by the subject. During fMRI participants hear loud noises, are confined in a small space (thus the claustrophobia) and have removed their jewelry. The researcher has mistaken these associated brain activities as effects as being caused by ''performing simple memory tasks'' which the participants have been asked to do and not a direct result of the settings of the test. Thus, the brain areas described by Megan are those associated with taking a functional MRI scan, rather than those associated with the &amp;quot;test&amp;quot; supposedly being carried out. The results being shown are known as {{w|Artifact_(error)|artifacts}}, which are shown later in [[1781: Artifacts]].&lt;br /&gt;
&lt;br /&gt;
In real experiments, reported activity patterns are always a result of subtracting average brain activity from many samples gathered during task from so called ''resting-state'' activity - which is obtained while subjects are not engaged in any task, thus eliminating the effect the setting has on brain activity. Apparently, the researcher in the comic has failed to account for that in the analysis of the data.&lt;br /&gt;
&lt;br /&gt;
The title text raises the more difficult and controversial issues of methodology, saying that the subjects ''also showed activation in the parts of the brain associated with exposure to dubious study methodology''. Here [[Randall]] makes fun of the overly confident, sweeping statements made by some fMRI researchers, often in the press. Of course, fMRI technique requires that the researcher account for several possible sources of errors by, among others, performing proper statistical analyses, multiple comparisons and using proper control groups. These are usually the reasons for {{w|Functional magnetic resonance imaging#Criticism|fMRI criticism}}. See the link for further information, including a famous ironic study of a dead salmon which was shown various pictures of people while fMRI scans were made. The scans could be interpreted as showing meaningful brain activity, unless the {{w|multiple comparisons problem}} was properly addressed. Randall has previously made fun of geographic profiles falling to this trap in [[1138: Heatmap]].&lt;br /&gt;
&lt;br /&gt;
The title text then continues with the jewelry issue, now especially the ''concern about unremoved piercings''. In the worst case these could be ripped off by the strong magnetic field. So it could be of some concern - especially when you take into consideration some of the places people may have piercings that are not obvious to the MRI personnel! The final remark about activation regards ''exasperation with fMRI techs who won't stop talking about Warped Tour''. &amp;quot;{{w|Warped Tour}}&amp;quot; refers to a traveling music festival that has been going since 1995, originally as a punk rock festival, but now with a more diverse set of music. Due to the nature of {{w|Moshing|mosh pits}}, the loud, cacophonous music, the facial jewelry of concert-goers and the tight quarters of the pit make it similar in description to an MRI.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan talking to an unseen audience in front of an fMRI brain scan.]&lt;br /&gt;
:Megan: Our fMRI study found that subjects performing simple memory tasks showed activity in the parts of the brain associated with loud noises, claustrophobia, and the removal of jewelry.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Psychology]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Scientific research]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=408861</id>
		<title>1453: fMRI</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1453:_fMRI&amp;diff=408861"/>
				<updated>2026-03-26T01:27:52Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1453&lt;br /&gt;
| date      = November 28, 2014&lt;br /&gt;
| title     = fMRI&lt;br /&gt;
| image     = fmri.png&lt;br /&gt;
| titletext = They also showed activation in the parts of the brain associated with exposure to dubious study methodology, concern about unremoved piercings, and exasperation with fMRI techs who won't stop talking about Warped Tour.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{w|Functional magnetic resonance imaging}} (fMRI), as the name suggests, is an offshoot of the MRI. It shows brain activity, typically while the subject is performing tasks or responding to stimuli. During the test, the subject is laid in a relatively small cylinder inside a big, very loud, machine which produces extremely strong magnetic fields. To prevent damage or injury, the subject must remove all metal objects from their body, including piercings, jewelry, watches, etc.&lt;br /&gt;
&lt;br /&gt;
In the tests shown, the brain activity detected is a direct result of the testing environment itself, and has nothing to do with the simple tasks being performed by the subject. During fMRI participants hear loud noises, are confined in a small space (thus the claustrophobia) and have removed their jewelry. The researcher has mistaken these associated brain activities as effects as being caused by ''performing simple memory tasks'' which the participants have been asked to do and not a direct result of the settings of the test. Thus, the brain areas described by Megan are those associated with taking a functional MRI scan, rather than those associated with the &amp;quot;test&amp;quot; supposedly being carried out. The results being shown are known as {{w|Artifact_(error)|artifacts}}, which are shown later in [[1781: Artifacts]].&lt;br /&gt;
&lt;br /&gt;
In real experiments, reported activity patterns are always a result of subtracting average brain activity from many samples gathered during task from so called ''resting-state'' activity - which is obtained while subjects are not engaged in any task, thus eliminating the effect the setting has on brain activity. Apparently, the researcher in the comic has failed to account for that in the analysis of the data.&lt;br /&gt;
&lt;br /&gt;
The title text raises the more difficult and controversial issues of methodology, saying that the subjects ''also showed activation in the parts of the brain associated with exposure to dubious study methodology''. Here [[Randall]] makes fun of the overly confident, sweeping statements made by some fMRI researchers, often in the press. Of course, fMRI technique requires that the researcher account for several possible sources of errors by, among others, performing proper statistical analyses, multiple comparisons and using proper control groups. These are usually the reasons for {{w|Functional magnetic resonance imaging#Criticism|fMRI criticism}}. See the link for further information, including a famous ironic study of a dead salmon which was shown various pictures of people while fMRI scans were made. The scans could be interpreted as showing meaningful brain activity, unless the {{w|multiple comparisons problem}} was properly addressed. Randall has previously made fun of geographic profiles falling to this trap in [[1138: Heatmap]].&lt;br /&gt;
&lt;br /&gt;
The title text then continues with the jewelry issue, now especially the ''concern about unremoved piercings''. In the worst case these could be ripped off by the strong magnetic field. So it could be of some concern - especially when you take into consideration some of the places people may have piercings that are not obvious to the MRI personnel! The final remark about activation regards ''exasperation with fMRI techs who won't stop talking about Warped Tour''. &amp;quot;{{w|Warped Tour}}&amp;quot; refers to a traveling music festival that has been going since 1995, originally as a punk rock festival, but now with a more diverse set of music. Due to the nature of {{w|Moshing|Mosh Pits}}, the loud, cacophonous music, the facial jewelry of concert-goers and the tight quarters of the pit make it similar in description to an MRI.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Megan talking to an unseen audience in front of an fMRI brain scan.]&lt;br /&gt;
:Megan: Our fMRI study found that subjects performing simple memory tasks showed activity in the parts of the brain associated with loud noises, claustrophobia, and the removal of jewelry.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Psychology]]&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Scientific research]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=593:_Voynich_Manuscript&amp;diff=408849</id>
		<title>593: Voynich Manuscript</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=593:_Voynich_Manuscript&amp;diff=408849"/>
				<updated>2026-03-25T19:56:34Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 593&lt;br /&gt;
| date      = June 5, 2009&lt;br /&gt;
| title     = Voynich Manuscript&lt;br /&gt;
| image     = voynich_manuscript.png&lt;br /&gt;
| titletext = Wait, is that the ORIGINAL voynich manuscript? Where did you GET that? Wanna try playing a round of Druids and Dicotyledons?&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|Voynich manuscript}} is a very detailed book written in an unknown script, describing plants and recipes, most of which lack a real-world analogue. Over the past few decades, linguists and cryptographers have unsuccessfully attempted to decode the book. A cut out from the book is depicted in the first frame (real or similar). {{w|Tabletop role-playing game|Tabletop role-playing games}} (such as [[:Category:Dungeons &amp;amp; Dragons|Dungeons &amp;amp; Dragons]]) are fantasy games with extremely detailed descriptions of fantastical worlds. The invented language is probably a reference to {{w|The Lord of the Rings}} in which author {{w|J. R. R. Tolkien}} invented several languages of which {{w|Sindarin}} (Grey elvish), and {{w|Quenya}} (High elvish), are the most famous.&lt;br /&gt;
&lt;br /&gt;
After being shown the manuscript for the first time by [[Megan]], [[Cueball]] argues that it should be obvious that it's just an ancient role-playing-game rulebook, since the human tendency to invent fantastical worlds must have also existed in the past. That it is this obvious was again stated when the manuscript was referenced in [[1501: Mysteries]]. In the last panel the book is used, 500 years ago, to play a game  similar to Dungeons and Dragons. They speak in the garbled gobbledygook laypeople often produce when trying to imitate &amp;quot;Old English&amp;quot;. Which attempts to sound something like {{w|early Modern English}} — which was indeed spoken around 500 years ago. The reference to the real plant {{w|Aconitum|wolfsbane}} could also be a reference to another invented world, as it is memorably mentioned in the first book of the ''{{w|Harry Potter and the Philosopher's Stone|Harry Potter}}'' series.&lt;br /&gt;
&lt;br /&gt;
After concluding this, a shocked Cueball then asks in the title text how Megan got her hands on the original manuscript, which is in the Yale University's ''{{w|Beinecke Rare Book and Manuscript Library}}''. Rigorous security rules now only allow carefully controlled access to materials under video surveillance, thus Cueball's reaction upon realizing Megan has somehow gotten her hands on the original manuscript. He then unexpectedly goes on to suggest the prosaic activity of playing {{w|Druid|Druids}} and {{w|Dicotyledon|Dicotyledons}}, a made-up name (a spoof of the name of Dungeons &amp;amp; Dragons) for the imaginary, hypothetical “game” that the Voynich manuscript could have been the (or one of several) gameplay manual for.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Weird root vegetables surround a strange script.]&lt;br /&gt;
&lt;br /&gt;
:[Megan holding up book to Cueball.]&lt;br /&gt;
:Megan: This is the Voynich manuscript— a book, allegedly 500 years old, written in an unrecognized script. It's some kind of visual encyclopedia of imaginary plants and undeciphered &amp;quot;recipes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
:[Megan points while Cueball opens the book.]&lt;br /&gt;
:Megan: It could be a hoax, a lost language, a cipher, an alien text, glossolatia — no one knows.&lt;br /&gt;
:Cueball: No one? But it's obvious.&lt;br /&gt;
&lt;br /&gt;
:[Megan continues to talk. Cueball holds the now closed book.]&lt;br /&gt;
:Megan: ... Obvious? Linguists and cryptographers have been stumped for decades.&lt;br /&gt;
:Cueball: They forget. Human nature doesn't change.&lt;br /&gt;
&lt;br /&gt;
:[Close up of Megan and Cueball - the book is off panel.]&lt;br /&gt;
:Cueball: Just imagine someone found a book from &amp;lt;u&amp;gt;our&amp;lt;/u&amp;gt; time, full of lists, illustrations, tables, and long, dry descriptions of nonexistent worlds written in an invented language. What have they found?&lt;br /&gt;
:Megan: ...Dear Lord. It ''is'' obvious.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:[Three people are standing around pawns and a die. One (a Cueball) is holding a sheet of paper, another (another Cueball) is holding a book, the third (Megan) is holding a scythe. At the top of the panel there is a frame with the following text:]&lt;br /&gt;
:500 Years Earlier:&lt;br /&gt;
:Person #1: Forsooth! I concoct an elixer of courage.&lt;br /&gt;
:Person #2: Nae! The source booke sayeth that requires some wolfsbane!&lt;br /&gt;
:Person #3: Your druid doth lose two points.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
*In the third panel, [[Randall]] may have meant ''{{w|glossolalia}}'' rather than ''glossolatia''.&lt;br /&gt;
*The use of the pronoun &amp;quot;your&amp;quot; in the last frame is anachronistic, as in early modern English it was used as a plural pronoun, or as a singular pronoun only to a superior; the proper pronoun would be &amp;quot;thy&amp;quot;: &amp;quot;Thy Druid doth lose two points.&amp;quot;&lt;br /&gt;
*''Elixir'' is misspelled as ''elixer''.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Multiple Cueballs]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Dungeons &amp;amp; Dragons]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2240:_Timeline_of_the_Universe&amp;diff=408844</id>
		<title>2240: Timeline of the Universe</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2240:_Timeline_of_the_Universe&amp;diff=408844"/>
				<updated>2026-03-25T15:45:48Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2240&lt;br /&gt;
| date      = December 11, 2019&lt;br /&gt;
| title     = Timeline of the Universe&lt;br /&gt;
| image     = timeline_of_the_universe.png&lt;br /&gt;
| titletext = Not actual size, except technically at one spot near the left.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
This comic is about the size of the {{w|observable universe}}, presented as a timeline in a way typical of representations of the {{w|timeline of epochs in cosmology}}. &lt;br /&gt;
&lt;br /&gt;
Some events it describes, including the {{w|Big Bang}} and {{w|Inflation (cosmology)|Inflation}} are real, but others are jokes, including the ''Medium Bang'' and ''Settling''.  The size history of the visible universe is also embellished for the sake of jokes; the actual size history of the universe has one period referred to as Inflation, which occurred shortly after the Big Bang, followed by comparatively gentle but accelerating expansion.  This is artistically depicted in [https://map.gsfc.nasa.gov/media/060915/060915_CMB_Timeline150.jpg this image from NASA]. Part of the humor in this comic comes from the fact that the varied rate of change in expansion is not yet fully understood, with explanations of events leading to this change including theories such as &amp;quot;dark matter&amp;quot; and &amp;quot;dark energy&amp;quot; (this might therefore be construed as &amp;quot;dark humor&amp;quot;). At the end of the drawing four possible continuations of the timeline are suggested, with director J. J. Abrams listed as the deciding factor between them, stating that all future cosmological development has been handed over to him. Abrams directed the 2009 movie ''{{w|Star Trek (film)|Star Trek}}'', which established additional alternate timelines for the {{w|Star Trek|Star Trek franchise}}, so it may be implied that multiple timelines could result from direction by Abrams in the future. Notably, each Star Trek series has included multiple interacting timelines. For information about each of the events shown in this comic's ''Timeline of the Universe'', see detailed explanations in the section [[#Events on the Timeline of the Universe|Events on the Timeline of the Universe]] below.&lt;br /&gt;
&lt;br /&gt;
The title text is a variation of one of [[Randall|Randall's]] standard jokes that his drawings are ''Not actual size''; in the case of this comic there is technically one spot near the left where the drawing depicts the actual relative size of the universe at the time the drawing represents. Where his drawing begins, at the time when the universe began, per definition, our visible universe had no measurable size. Very soon (within a tiny fraction of an attosecond) after the universe as we know it began, the inflation period blew it up very very fast and then it continued to expand until present day. So at some &amp;quot;time&amp;quot; after the big bang, our visible universe would have had a size (i.e. diameter) that would be the same as any thickness of Randall's universe &amp;quot;line&amp;quot;. Since the universe as depicted in the comic goes from infinitesimal size at the moment of the Big Bang to the full size of the universe today, at some point near the left there will be a point where Randall's representation would have the same size as the universe at the correct &amp;quot;time period&amp;quot;. Of course a problem with this is that there was only a very very short time period after inflation where the diameter of the observable universe is on the same scale as this comic, and that point is neither indicated nor likely to be accurate in relation to the duration of time elapsed. According to an answer given [https://physics.stackexchange.com/questions/32917/size-of-universe-after-inflation here] regarding the size of the visible universe after inflation, there is reason to believe that the size was still less than 1 mm in diameter when the stage of expansion known as Inflation ended, which is less than the thickness of the line shown at the Big Bang (depending on the screen size the comic is viewed upon); So the point along the timeline where the size of our visible universe matched the line width appears after the Inflation period is thought to have ended. Since Randall includes the ''Medium Bang'' before Inflation on his drawing he has already inserted a mistake there, but as the next three epochs after Inflation are real epochs, it is likely somewhere in this part of the drawing that the visible universe would have had the same diameter as the thickness of the drawing at a relevant time epoch on the drawing. This will thus not be that far to the left but around the Quark epoch.&lt;br /&gt;
&lt;br /&gt;
===Events on the Timeline of the Universe===&lt;br /&gt;
The events presented in the timeline are:&lt;br /&gt;
&lt;br /&gt;
* '''??''' (more than 13.8 billion years ago ({{w|Billion years|Gya}})): the unknown state of the universe prior to the Big Bang, if such a statement is even sensible. There are theories that our Universe is a bubble where inflation stopped (13.8 billion years ago in this universe) in an infinite and {{w|Eternal inflation|eternally inflating}} larger universe, which would give rise to the possibility of a {{w|multiverse}} with many bubble universes like ours where inflation has stopped. See for instance this recent video on the subject: [https://www.youtube.com/watch?v=XglOw2_lozc How Many Universes Are There?] from PBS Space Time. If this is true, the universe did not start at the big bang, but our part of the infinite universe actually began when the inflation period stopped, and not at the Big Bang.&lt;br /&gt;
* '''{{w|Big Bang}}''' (13.8 Gya): The model of the origin of the universe which has achieved consensus among astronomers.  We have observed that all galaxies are receding away from Earth at rates that are roughly proportional to their distance, and the simplest explanation for this is that the universe is expanding.  If the universe is expanding, then (unless new physics are discovered) it must have at one time been very, very small and dense; that moment in time is called the Big Bang.&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Planck_epoch|Planck Epoch}}''': The time period starting from the Big Bang, the Planck epoch or Planck era is the earliest stage of expansion currently calculable, before the time passed was equal to the Planck time (tP, or approximately 10^-43 seconds). There is no currently available physical theory to describe such short times, and it is not clear in what sense the concept of time is meaningful for values smaller than the Planck time. &lt;br /&gt;
* '''Medium Bang''' (a joke): If there's a Big Bang, why not have a medium one?  There should probably also be a Little Bang, but maybe it's just too little to be featured on this chart.&lt;br /&gt;
* '''{{w|Inflation (cosmology)|Inflation}}''' (10^-36 to 10^-32 seconds after the Big Bang): A theory developed to explain the large-scale structure of the universe that postulates a period when the universe expanded very much faster than the speed of light. (The universe still expands faster than the speed of light, but only 2-3 times as fast. The limit of the speed c, is only valid for things moving in space time, not for the stretching of space itself!)&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Quarks_epoch|Quark Epoch}}''' (10^-12 seconds after the Big Bang): The universe is a quark-gluon plasma, up until 10^-6 seconds when it cools enough to coalesce into hadrons, including protons and neutrons.&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Lepton_epoch|Lepton Epoch}}''' (1 second after the Big Bang): Leptons, including electrons, and their associated neutrinos dominate.&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Photon_epoch|Photon Epoch}}''' (10 seconds after the Big Bang): The universe is dominated by photons.&lt;br /&gt;
* '''Cool Bug Epoch''' (a joke): There was a period around 10-17 million years after the Big Bang in which the cosmic background radiation was between 273 and 373 K, the temperature range for liquid water, but as oxygen had not yet been formed, as stars were not yet there to create it, there would have been no water. Cosmologists {{w|Avi_Loeb#Early_Universe|have speculated}} that primitive life could have arisen during this period and dubbed it the 'Habitable Epoch of the Early Universe', although it's unclear how this life would have formed since there was basically only hydrogen and helium atoms in the universe until the first supernovae some 100 million years later. Randall later added 'cool bugs' as fundamental particles in his revised standard model (see [[2351: Standard Model Changes]]) so this may have been a similar joke that cool bugs are like particles, and would get their own epoch similar to the real lepton epoch (see above).Possibly this is the epoch in which the &amp;quot;cool red beetle&amp;quot; which [[Beret Guy]] added to his company's bug tracker (see [[1493: Meeting]]), or the &amp;quot;friendly bug&amp;quot; he wanted to show to a conference speaker (see [[2191: Conference Question]]), evolved.&lt;br /&gt;
* '''Molded grip''' (a joke): Some tools (e.g. knives) have molded finger-wells so that the user's hand settles easily and securely into a comfortable position.  This epoch of the universe features repeated expansions and contractions so that this part of the timeline resembles a molded grip, at least in profile (it would be much too large to be held by any known animal's hands{{Citation needed}}, and the finger-wells are distributed over time as well as space).&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Cosmic_Dark_Age|Stars form}}''' (100 million years after the Big Bang): The universe cools enough to allow ordinary matter particles to group into stars.&lt;br /&gt;
* '''{{w|Stagflation}}''' (a joke): In addition to ''cosmic'' inflation, inflation can also refer to the economic phenomenon in which prices increase over time.  Stagflation is a combination of the terms &amp;quot;stagnation&amp;quot; and &amp;quot;inflation&amp;quot;, and refers to a situation in which monetary inflation is high, economic growth is slow, and job creation is low.  This epoch of the universe shows the universe beginning to contract in size, much as economists would talk about an economy contracting.&lt;br /&gt;
* '''Settling''' (a joke): Thanks to government intervention and quantitative easing of the {{w|cosmological constant}}, or perhaps the judicious use of the Universe Control Panel, the contraction of the universe has halted.  Alternately this may be a comparison to how in a package full of smaller items, the contents can &amp;quot;settle&amp;quot; over time so the empty space in between them is more filled in so it takes up less space overall leaving open space at the top (like how a cereal box may say &amp;quot;some settling may occur during shipment&amp;quot; to explain why the box doesn't seem completely full), and is thus claiming that somehow something similar to that decreased the size of the universe.&lt;br /&gt;
* '''Rebound''' (a joke): Consumer confidence has returned to the universe and it has begun expanding again.  Alternatively, Settling and Rebound could be a reference to crustal rebound as the mere Earth occasionally shrinks and re-expands its surface.  After all, Plate Tectonics games are fun when they are played in Real Time.&lt;br /&gt;
* '''Someone tripped and accidentally hit the &amp;quot;Inflation&amp;quot; switch again''' (a joke). This switch must be on the Universe Control panel referenced both in [[1620: Christmas Settings]] and in [[1763: Catcalling]].&lt;br /&gt;
* '''Emergency Stop triggered''' (a joke). Also on the Universe Control panel see previous entry.&lt;br /&gt;
* '''{{w|Timeline_of_epochs_in_cosmology#Galaxy_epoch|Galaxies form}}''' (12.8 Gya)&lt;br /&gt;
* '''{{w|Formation_and_evolution_of_the_Solar_System#Formation_of_the_planets|Earth forms}}''' (4.5 Gya)&lt;br /&gt;
* '''Present day'''&lt;br /&gt;
* '''Future cosmological development handed over to {{w|J.J. Abrams}}, outcome unknown''' (a joke): J.J. Abrams is a science-fiction writer and filmmaker. If he were in charge of the future development of the cosmos, he might decide to subject all of us to some strange plot twist.  Among many other movies, he has directed the 2009 reboot of ''{{w|Star Trek (film)|Star Trek}}'', in which the &amp;quot;future history&amp;quot; of ''Star Trek'' is altered from the timeline of the original series by Nero and Spock traveling backwards in time. He also has directed other &amp;quot;Star&amp;quot; films, including ''{{w|Star Wars: The Force Awakens}}'' and ''{{w|Star Wars: The Rise of Skywalker}}'' (released a few weeks after the publishing of this comic) which altered the direction of ''Star Wars'' canon away from the post-film future laid out in the Expanded Universe publications. He is also involved in the {{w|Mission: Impossible (film series)|Mission: Impossible}} films.&lt;br /&gt;
**The dashed lines coming off the end of the timeline represent the possible fates of the universe:&lt;br /&gt;
*** The one curving in represents that the universe could stop expanding and begin contracting, resulting in the {{w|Big Crunch}}.  In our universe, cosmological measurements have shown that the expansion of the universe is accelerating, so the Big Crunch is considered to be the least likely fate.&lt;br /&gt;
*** The second curve continuing the trend from before represents that the universe could settle into thermal equilibrium, which would leave no energy available for any interesting phenomena to occur.  This is called the {{w|heat death of the universe}} or &amp;quot;Big Freeze&amp;quot;.&lt;br /&gt;
*** The fourth curve represents that the universe's expansion will continue accelerating, eventually very rapidly, to the point that the accelerating expansion overcomes all forces between particles, turning the universe into a collection of particles isolated from each other by rapidly-expanding space.  This is called the {{w|Big Rip}}.&lt;br /&gt;
***In between the second and fourth curve there seems to be something in between where the universe expansion accelerates and then slows down again. We have so far seen the expansion rate decelerate in the early life of the universe where the gravity of the more compact universe slowed the expansion, but then this turned around to an {{w|Timeline_of_epochs_in_cosmology#Acceleration|acceleration}} after about 9 billion years as the distance between galaxy clusters became so large that dark energy became the dominant force, causing the universe expansion to accelerate. So who knows if this could change again... At present our understanding says that the universe expansion-rate will keep accelerating. But left to J. J. Abrams, then the outcome is unknown. These four options represents both what we have theories for and what J. J. might come up with.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[A large header is above the main drawing:]&lt;br /&gt;
:&amp;lt;big&amp;gt;'''Timeline of the Universe'''&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:[The drawing shows a diagram of the evolution of the universe from the Big Bang (left) to the present right with lines indicating possible futures continuing right of the main drawing. The drawing is that of a black horn of plenty, very thin to the left and then it becomes broader, mainly in steps but also slightly between each step. n a few places the diameter decreases a bit. Along the &amp;quot;tube&amp;quot; are segments divided with thin white lines, with about equal distance between them. The first 20 the tube is black, but then stars form, shown as many white dots, and finally in the last 3-4 segments galaxies are shown. At the top and bottom of the opening to the right there are four dashed lines which behaves the same way. Two points inward, two continue the trend from before they begin, two goes out fast again, and then falls back to slow increase, and two goes almost straight up and down. At the far left there is a line going in to a small dot. On the line before the dot are two questions mark. A line points to the dot which has a starburst around it. It represents the Big Bang. After this firs labeled point on the drawing there are mange other labeled sections with a line going from the label to a segment on the drawing. There are 9 above, 9 below and one at each end. The one at the right end pointing to the four dashed future lines at the top. From left to right in the order they are labeled on the timeline, the labels are:]&lt;br /&gt;
:??&lt;br /&gt;
:Big Bang&lt;br /&gt;
:[The Universe comes in as a circle with action lines around it. It stays the same size for a while.]&lt;br /&gt;
:Planck Epoch&lt;br /&gt;
:Medium Bang&lt;br /&gt;
:[The Universe starts inflating very slowly]&lt;br /&gt;
:Inflation&lt;br /&gt;
:[The Universe briefly inflates very rapidly, and returns to its normal rate of expansion.]&lt;br /&gt;
:Quark Epoch&lt;br /&gt;
:Lepton Epoch&lt;br /&gt;
:Photon Epoch&lt;br /&gt;
:Cool Bug Epoch&lt;br /&gt;
:[The Universe starts inflating and deflating rapidly, forming a series of bumps in the universe diagram like the grip on a hand tool.]&lt;br /&gt;
:Molded grip&lt;br /&gt;
:[Stars appear in the timeline. The Universe starts inflating slightly faster than before.]&lt;br /&gt;
:Stars form&lt;br /&gt;
:Stagflation&lt;br /&gt;
:[The Universe starts deflating slowly.]&lt;br /&gt;
:Settling&lt;br /&gt;
:Rebound&lt;br /&gt;
:[The Universe starts inflating slowly again.]&lt;br /&gt;
:Someone tripped and accidentally hit the &amp;quot;Inflation&amp;quot; switch again&lt;br /&gt;
:[The Universe starts inflating at the same rate as the Inflation section.]&lt;br /&gt;
:Emergency Stop triggered&lt;br /&gt;
:[The Universe abruptly stops inflating, and stays level.]&lt;br /&gt;
:[Galaxies appear in the timeline. The Universe starts inflating at a medium pace.]&lt;br /&gt;
:Galaxies form&lt;br /&gt;
:Earth forms&lt;br /&gt;
:Present day&lt;br /&gt;
:[We see the edge of the Universe, with a rounded shape. Various dotted line predictions are on the edges.]&lt;br /&gt;
:Future Cosmological development handed over to J.J. Abrams, outcome unknown&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Timelines]]&lt;br /&gt;
[[Category:Cosmology]]&lt;br /&gt;
[[Category:Astronomy]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Animals]] &amp;lt;!-- Bug --&amp;gt;&lt;br /&gt;
[[Category:Comics featuring real people]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2732:_Bursa_of_Fabricius&amp;diff=408510</id>
		<title>2732: Bursa of Fabricius</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2732:_Bursa_of_Fabricius&amp;diff=408510"/>
				<updated>2026-03-19T19:55:58Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2732&lt;br /&gt;
| date      = February 1, 2023&lt;br /&gt;
| title     = Bursa of Fabricius&lt;br /&gt;
| image     = bursa_of_fabricius_2x.png&lt;br /&gt;
| imagesize = 298x399px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = If an anatomical structure is named for a person, it means they were the only person to have it. Pierre Paul Broca had a special area of his brain that created powerful magnetic fields, enabling him to do 19th century fMRI research.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
The {{w|bursa of Fabricius}} is an organ found in birds that is necessary for the development of their immune systems. &lt;br /&gt;
&lt;br /&gt;
This comic claims that the 16th century anatomist {{w|Hieronymus Fabricius}} (for whom the organ was named) had that organ and therefore was able to fly like a bird. However, despite being found only in birds, this organ does not in fact contribute directly to flight. Also, given that it only exists in birds, it is doubtful that Fabricius also independently had this same anatomical feature.&lt;br /&gt;
&lt;br /&gt;
Many scientific and mathematical discoveries, including anatomical structures, are named after the people who discovered or described them. For example, the {{w|islets of Langerhans}} were discovered by Paul Langerhans. Likewise, rare diseases are often named for the doctor who first describes the disease to the medical community, or for a researcher who identifies the specifics involved. They may attempt to set their own name to it, for posterity, or they are later honored in this manner by those who recognize their vital contribution to the field, such as with {{w|Parkinson's disease#History|Parkinson's disease}}.&lt;br /&gt;
&lt;br /&gt;
In other cases, rare diseases are named for the first or most famous (possibly even the only) person known to have had the disease. For instance {{w|ALS}} is commonly known as Lou Gehrig's disease in the US because of baseball player {{w|Lou Gehrig}} having notably developed the condition. Outside of the US, it may be more known just as &amp;quot;amyotrophic lateral sclerosis&amp;quot; (alternatively &amp;quot;motor neurone disease&amp;quot;) or, for simplicity, the initials ALS (or MND). &lt;br /&gt;
&lt;br /&gt;
The title text continues with the idea from the comic claiming that anatomical structures are solely possessed by the human for which they are named, in another similar example. {{w|Pierre Paul Broca}}, a French physician, anatomist and anthropologist, was known for his research on what is now known as {{w|Broca's area}}, a region of the brain used for speech and language processing. The premise being that, having this feature, he was uniquely gifted with the special ability to created powerful magnetic fields, enabling him to do {{w|fMRI}} research in the 19th century. Later in the same year, Broca was again referenced in [[2780: Physical Quantities]].&lt;br /&gt;
&lt;br /&gt;
Broca did not do fMRI research, a powerful method of non-intrusively imaging and analyzing the internal structures of the living human body (amongst other things), as it was not invented in his lifetime. Nor is it likely that this ability could be 'naturally' possessed by any individual, such as he. He did, however, physically study brains of known speech-impaired patients who had then subsequently died, determining what damage (in the area of the brain which was then to be named for him) was directly related to their specific group of ailments. Today, we can safely view this area in living people, using fMRI, and directly connect what we see with the current condition of patients. This increases our knowledge of the brain, as with the mythical abilities Randall gave Broca, but also possibly even allows us to help those currently under the effects of any observed damage (not necessarily possible by any 19th century physician, even with this superpowered form of vision to assist them).&lt;br /&gt;
&lt;br /&gt;
In reality, if Broca was the only person to have ever possessed Broca's area then this might have meant that only he had ever had the power of speech (as we understand it), which would indeed give him a very special ability; but one begging a number of other vital questions, if only anybody else could have asked them...&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[An almost bald man with hair around the neck and a full beard, is shown flying in the top right part of the image, swooping down from the sky with arms outstretched in front of him while yelling. Three dotted lines behind him indicate his path. Two people look up at him from the bottom left corner, a man with a wide-brimmed hat and a black haired woman with a scarf over her hair, which is hanging down behind her. She is holding both her hands up to her mouth. At the top of the panel there is text:]&lt;br /&gt;
:The '''''bursa of Fabricius''''' is a lymphoid organ found only in birds and in 16&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; century anatomist Hieronymus Fabricius, to whom it conferred the power of flight.&lt;br /&gt;
:Hieronymus Fabricius: ''Wheee''&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring real people]]&lt;br /&gt;
[[Category:Characters with hats]]&lt;br /&gt;
[[Category:Biology]]&lt;br /&gt;
[[Category:Animals]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=spiral&amp;diff=407994</id>
		<title>spiral</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=spiral&amp;diff=407994"/>
				<updated>2026-03-12T03:30:31Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: horrible orthography&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| title     = spiral&lt;br /&gt;
[[File:spiral1.jpg]]&lt;br /&gt;
[[File:spiral2.jpg]]&lt;br /&gt;
[[File:spiral3.jpg]]&lt;br /&gt;
[[File:spiral4.jpg]]&lt;br /&gt;
[[File:spiral5.jpg]]&lt;br /&gt;
[[File:spiral6.jpg]]&lt;br /&gt;
[[File:spiral7.jpg]]&lt;br /&gt;
[[File:spiral8.jpg]]&lt;br /&gt;
[[File:spiral9.jpg]]&lt;br /&gt;
| lappend   = spiral&lt;br /&gt;
| extra     = no&lt;br /&gt;
| imagesize = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{misc page}}&lt;br /&gt;
&lt;br /&gt;
This page is linked from [[1488: Flowcharts]].&lt;br /&gt;
&lt;br /&gt;
This appears to be a selection of images with the {{w|golden ratio}} spiral superimposed to display hidden meaning in their appearance. These spirals originate from a specialised point of the subjects and continue along some meaningful lines of the subject. The humour here is that he is putting the golden ratio on these seemingly random images, to show how ridiculous it is, in many cases, when artists or others superimpose a golden spiral on some specific picture to try to prove something 'significant' about the composition.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Nine eclectically unrelated images are the only contents of this entire web-page, each overlaid with at least one golden spiral and the frame of squares that define its shape. All but one image are photos, and a number of them show subjects that might be considered quirky, or at least 'niche', even before the overlay is applied.]&lt;br /&gt;
&lt;br /&gt;
:[A photo Weird Al Yankovic, wearing an &amp;quot;LA Dodgers&amp;quot; baseball cap, and a sports jacket. His head and eyes are askew in a deliberate 'wacky' pose. The spiral begins in one of his eyes and a significant part of the other his face matches the curve, the spiral's framing lines are angled even more skewed than his head.]&lt;br /&gt;
&lt;br /&gt;
:[An old 1970s 'Batman'-themed water-pistol, shaped as Batman himself in a frankly disturbing pose. The spiral originates from the base of the 'crotch'-trigger, and the curve eventually closely matches the profile around the back of Batman, from the the thighs, over his cape-clad back and to his neck, the constructing grid being orthagonal to the image and the whole segmented spiral overlay sits neatly within the image edges.]&lt;br /&gt;
&lt;br /&gt;
:[A besuited and smiling young man, perhaps dressed for a wedding reception, is holding a small portable sewing machine and standing in front of a scene in which three policemen stand in attendance of an apparent accident. A standard UPS delivery van has apparently reversed off the road and down an embankment, which it is now angled up. The spiral starts on one of the van's headlights and sort of aligns with the top bottom and one side of the inclined van's front, as well as across the face of the young man. The grid is aligned to the highly rotated truck front, closely matching its upper and lower edges and the the central pillar between the two-part front windows.]&lt;br /&gt;
&lt;br /&gt;
:[A very limber cat, mostly white but patterned with light-gingerish splodges, is sprawled in a very relaxed-looking but typically feline spine-twisting pose, apparently on a leather sofa. The back of its head manages almost to rest its own groin, due to its apparently effortless contortions. Starting almost at the point of one of its eyes, the curve really only significantly matches the cat's back/side from its rear-legs/rump to its midriff, the constructive grid at a seemingly arbitrary angle.]&lt;br /&gt;
&lt;br /&gt;
:[A stock photo of a young Bill Gates casually on top of an office desk, smiling, leaning on a monochrome (white-on-blue) computer monitor displaying something with the Microsoft Logo (1982-1987). Various other computers and peripherals are on another desk in the background, in front of a window showing a likely third/fourth-storey view onto a possibly snow-dusted campus-like location with a pine forest stand visible in the near distance. Spiralling from the eye of Bill Gates, the curve toys with following some of his hair, but seems to mostly have been allowed to eventually align to the lower hem of the cream sweater he is wearing. The spiral's frame may have been rotated to intersect various edges of computer monitors, but is otherwise angled fairly arbitrary and not particularly precisely with the subjects head.]&lt;br /&gt;
&lt;br /&gt;
:[Vladimir Putin, posed barechested and holding a fishing rod in a forest/river setting, perhaps one of his (in)famous and (maybe) unintentionally homoerotic calendar shoots from the 2010s. The spiral starts on one of his nipples, with a few incidental contacts with his body (e.g. his man-cleavage and angled forearm), but the main congruence seeminly being the underside of the bush-hat he's wearing. The framework is orthogonal, with particular additional relationship to the underlying image.]&lt;br /&gt;
&lt;br /&gt;
:[A bright-eyed Joe Biden, toothily smiling into the camera in a likely publicity shot from his time as Vice-President. There are two counterrotating spirals, both originating from the same spot near the corner of one of his eyes, one of which tries to match the shape of his lower lip, the other seems to be keyed to the top of his thin but tidy grey-white head of hair. The framing scaffoldings are orthagonal but effectively perpendicular to each other, in an almost perfect 45° reflective relationship.]&lt;br /&gt;
&lt;br /&gt;
:[The only image that is not a photographic scene, it is a scan or screen-shot of a road-atlas style map, mostly of parts of Massachusetts. It primarily encompasses Cape Cod and Boston. The spiral originates in the rough centre of Cape Cod Bay (not labeled) then spirals round to follow the geographically-curved shape of Cape Cod itself past Provincetown and Orleans, before cutting out across both land and sea, via Falmouth, up through Taunton and almost straight through the centre of Boston, just barely skirting Massachusetts Bay itself on the landward side, before exiting back to sea heading out towards the Gulf Of Maine to the north-east at the extreme top of the image. The skewed grid, for the spiral is slightly off-orthagonal.]&lt;br /&gt;
&lt;br /&gt;
:[Another cat, with an orange-with-white mackeral coat, laid on a possibly wooden-effect laminate flooring, apparently at ease or (from the tail) pleasantly excited/playful. Its head is currently fully inserted (neck-to-neck) into a 'horse head' toy, possibly latex, with a fiberous mane and in a tanned/red hue that blends well with the cat's own fur. It is smaller than any actual horse-head would be, but still looks to be roughly the same volume as the uncovered part of the cat's body and has a mouth-open and visibly staring eye that gives the impression of the whole 'cat-horse' chimera-creature being startled. There are three different spirals superimposed. One starts on the floor below the outstretched rear legs to conform with the cat's belly and the back of its nearest foreleg. The second originates within its body, in order to follow the curve of its back and down behind the most outstretched rear paw. Its third spiral is set 'behind'/above its tail to somwhat follow the underside of its curved tail, to the back, in a curve that is a 180-degree rotation around its contact point with the second spiral, while the first 'fits' to the second at right-angles, and centre-to-edge (to within almost the width of the lines involved) as far as the alignment of the grids are concerned.]&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Extra pages]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1641:_Hot_Dogs&amp;diff=407991</id>
		<title>1641: Hot Dogs</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1641:_Hot_Dogs&amp;diff=407991"/>
				<updated>2026-03-12T02:46:05Z</updated>
		
		<summary type="html">&lt;p&gt;1234231587678: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1641&lt;br /&gt;
| date      = February 10, 2016&lt;br /&gt;
| title     = Hot Dogs&lt;br /&gt;
| image     = hot_dogs.png&lt;br /&gt;
| titletext = Okay, I'm just gonna order pizza, and let's never talk about this again.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
A common staple of trite comedy is &amp;quot;why do hot dogs come in packages of ten but hot dog ''buns'' in bags of eight?&amp;quot; The phenomenon is mildly frustrating for the consumer, as it often leaves leftover food. The most sinister result is the subsequent purchase of more buns, followed by more hot dogs, followed by more buns, over and over again until forty total hot dogs have been eaten (in a cycle similar to that shown in [[140: Delicious]]).&lt;br /&gt;
&lt;br /&gt;
The actual reason for the mismatch between hot dogs and buns, according to both [http://www.todayifoundout.com/index.php/2014/11/dont-hot-dogs-hot-dog-buns-come-packs-number-start/ Karl Smallwood] and [http://www.straightdope.com/columns/read/560/why-do-hot-dogs-come-10-to-a-pack-while-buns-are-8-to-a-pack Cecil Adams], is that meat packers like things that come in pounds and bakers hate things that come in tens. Nonetheless, some smaller companies are starting to offer bags of ten buns, and several brands of hot dogs sell in packages of eight.&lt;br /&gt;
&lt;br /&gt;
Here, [[Cueball]] attempts to raise the question as he is standing with a package of {{w|hot dogs}} in one hand and a bag of {{w|Hot dog bun|buns}} in the other hand (presumably for their dinner), but a person offscreen interrupts him mid sentence and mentions {{w|condoms}} instead of buns. Cueball mulls the subject over in his mind, and when he realizes his friend is putting hot dogs in condoms, he is promptly grossed out.&lt;br /&gt;
&lt;br /&gt;
The title text makes it clear that Cueball's new found association of [http://www.snopes.com/college/risque/hotdog.asp hot dogs with sexual activity], has put him totally off the idea of eating any of them this evening, and he suggests ordering {{w|pizza}}, which he then can hope will not be used for this similar ('''{{w|Not safe for work|NSFW}}''') [http://www.cosmopolitan.com/sex-love/advice/a5943/pizza-sex-tip/ comparisons]… Cueball also asks that he and his friend never discuss this conversation again, due to the situation's awkwardness and uncomfortable subject matter.&lt;br /&gt;
&lt;br /&gt;
The style of the conversation with Cueball asking, someone answering and Cueball saying ''Eww'' is similar to a situation in the game comic [[1608: Hoverboard]] where a [[Media:1608_1078x1095y_Ant_Queen_in_Destroyer.png|giant ant queen]] inside the Destroyer is provoking Cueball in the same way by talking about laying eggs like this:&lt;br /&gt;
:Cueball: What's up?&lt;br /&gt;
:Ant queen: The usual. Poopin' out ants.&lt;br /&gt;
:Cueball: Eww.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is standing in the frame holding a bag and a package of hot dogs.]&lt;br /&gt;
:Cueball: Hey, why do hot dogs come in packages of ten—&lt;br /&gt;
:Offscreen: —But condoms come in strips of six? I know, right?!&lt;br /&gt;
:Cueball: ...Eww.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Sex]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>1234231587678</name></author>	</entry>

	</feed>