<?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=Smylers</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=Smylers"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Smylers"/>
		<updated>2026-04-10T23:55:56Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2435:_Geothmetic_Meandian&amp;diff=207522</id>
		<title>Talk:2435: Geothmetic Meandian</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2435:_Geothmetic_Meandian&amp;diff=207522"/>
				<updated>2021-03-11T07:29:16Z</updated>
		
		<summary type="html">&lt;p&gt;Smylers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Oh, this one's good. Just checked in (no, I wasn't hovering over the refresh button, my first visit today!) and one glance had me in paroxysms of laughter. But how to explain it? Gonna have to think about that. [[Special:Contributions/141.101.98.96|141.101.98.96]] 01:12, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
I made a really bad spreadsheet to understand better how it works: https://docs.google.com/spreadsheets/d/1fqmHwDmirJrsKPdf94PutFDw31DMAYxNeR7jef1jneE/edit?usp=sharing&lt;br /&gt;
&lt;br /&gt;
Someone fix my ''awful''  transcript edits please. --[[User:Char Latte49|Char Latte49]] ([[User talk:Char Latte49|talk]]) 02:31, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing the Python added to the Explanation, try this Perl (typed straight here, so not tested)... &lt;br /&gt;
 ## Your prefered variations of &amp;quot;#!/usr/bin/perl&amp;quot;, &amp;quot;use strict;&amp;quot; and &amp;quot;use warnings;&amp;quot; here! ##&lt;br /&gt;
 sub F { my (@vals)=@_; my $invVals=1/int(@vals);&lt;br /&gt;
  my ($geo,$arith,$med)=(1); # Only defining $geo, so first *= works correctly!&lt;br /&gt;
  while (@vals) { my($lo,$hi)=(shift @vals,pop @vals); # $hi may be undef - this is intended!&lt;br /&gt;
   $arith+=$lo; $geo*=$lo; unless (defined $hi) {  $med =  $lo;     last }&lt;br /&gt;
   $arith+=$hi; $geo*=$hi; unless (@vals)       { ($med)=F($lo,$hi)      }&lt;br /&gt;
  }&lt;br /&gt;
  return ($arith*$invVals, $geo**$invVals, $med);&lt;br /&gt;
 }&lt;br /&gt;
 sub GMDN { my (@vals)=sort @_; my $lim=10**(-5); # Adjust $lim to taste...&lt;br /&gt;
   return &amp;quot;Error: No vals!&amp;quot; unless  @vals; # Catch!&lt;br /&gt;
   return $vals[0]          unless ($vals[$#vals]-$vals[0]) &amp;gt; $lim;&lt;br /&gt;
   return GMDM(F(@vals));&lt;br /&gt;
 }&lt;br /&gt;
 my @test=(1,1,2,3,5);&lt;br /&gt;
 print &amp;quot;Values:              @test\nGeothmetic Meandian: &amp;quot;.GMDN(@test).&amp;quot;\n&amp;quot;;&lt;br /&gt;
...debugged in my head, so probably fatally flawed but easily fixed/adapted anyway. [[Special:Contributions/141.101.99.109|141.101.99.109]] 03:04, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why so complicated?&lt;br /&gt;
 perl -e 'use strict; use warnings; sub F { my ($s,$p) = (0,1); my @srt = sort {$a&amp;lt;=&amp;gt;$b} @_; for (@_) { $s += $_; $p *= $_; } return ($s/@_,$p**(1/@_),$srt[$#_/2]); } sub Gmdn { print join(&amp;quot;, &amp;quot;,@_=F(@_)),&amp;quot;\n&amp;quot; for 0..20; return @_; } print join(&amp;quot;, &amp;quot;,Gmdn(1,1,2,3,5)),&amp;quot;\n&amp;quot;;'&lt;br /&gt;
(With interim results) SCNR -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 03:18, 11 March 2021 (UTC)&lt;br /&gt;
:''I'' can read your version (and I see you do explicit {$a&amp;lt;=&amp;gt;$b}, which indeed ''may'' be necessary in mine for real use, along with additional sanity checks, I will check later) but I wanted to make mine neat, and ''slightly'' tricksy in implementation, but still not quite so entirely obfuscated to the more uninitiated. TIMTOWTDI, etc, so I like your (almost) bare-bones version too. ;)&lt;br /&gt;
:(Is 20 cycles enough to converge in sufficiently extreme cases? Won't give &amp;quot;Too deep&amp;quot; error, though, even  if it takes at least that long. There's a definite risk that mine might, as written.) [[Special:Contributions/141.101.99.229|141.101.99.229]] 03:45, 11 March 2021 (UTC)&lt;br /&gt;
::Given the lack of precision in Randall's example usage, I think 20 cycles ought to be enough for everyone ;-P. I'm trying to prove that the interval's size has to shrink by somewhat close to a factor of 1/2 every cycle, but it's tricky and it's late. If I can assume a factor of 1/2 in the long run, 64 iterations should pin down a 64-bit float.&lt;br /&gt;
::I actually didn't try to obfuscate, I was just too lazy to type more ;-). Otherwise I might have left out the &amp;quot;return&amp;quot;s and passing parameters at all. -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 04:21, 11 March 2021 (UTC)&lt;br /&gt;
:::I find the one-liner more readable: it's straightforward and pretty minimal. For what its worth, here's my version: &amp;lt;pre&amp;gt;perl -MList::Util=sum,product -E 'sub F { (sum @_)/@_, (product @_)**(1/@_), (sort { $a &amp;lt;=&amp;gt; $b } @_)[$#_/2] } $, = &amp;quot; &amp;quot;; say @v = @ARGV; say @v = F(@v) for 1..30' 1 1 2 3 5&amp;lt;/pre&amp;gt; 30 iterations is enough for the numbers to display identically on this system (to 14 decimal places). I think it's even cleaner in Raku (formerly Perl 6): &amp;lt;pre&amp;gt;raku -e 'sub F(@d) { @d.sum/@d, [*](@d)**(1/@d), @d.sort[@d/2] }; say my @v = +«@*ARGS; say @v = F(@v) for 1..33' 1 1 2 3 5&amp;lt;/pre&amp;gt; On this system, Rakudo yields an additional decimal place, which takes another 3 iterations to converge.  [[User:Smylers|Smylers]] ([[User talk:Smylers|talk]]) 06:53, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Side-thought: is GMDN (nowhere near as logical an ETLA contraction of the title term as, say, 'GMMD' or 'GTMD') actually an oblique reference to the GNDNs as popularised/coined by Trek canon? Worth a citation/Trivia? [[Special:Contributions/162.158.158.97|162.158.158.97]] 04:12, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Proof of convergence ==&lt;br /&gt;
&lt;br /&gt;
Can any of you come up with a mathematical proof that repeated application of F on a set of (say) positive real numbers is guaranteed to converge toward a single real number, i.e. that the GMDN of a set of positive real numbers is well-defined? &lt;br /&gt;
&lt;br /&gt;
One observation I've made is that if you consider that maximum and minimum numbers in the original set to be x1 and xn (without loss of generality), something we know for sure is that AM(x1, ..., xn), GM(x1, ..., xn) and Median(x1, ..., xn) are all at least x1 and at most xn that is to say...&lt;br /&gt;
&lt;br /&gt;
x1 &amp;lt;= AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn) &amp;lt;= xn&lt;br /&gt;
&lt;br /&gt;
So range(AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn)) is necessarily &amp;lt;= range(x1, ..., xn). &lt;br /&gt;
&lt;br /&gt;
And given that we know that unless x1, ..., xn are all equal, that x1 &amp;lt; AM(x1, ..., xn) &amp;lt; xn, we have an even stricter result (unless x1, ..., xn are all equal) that is &lt;br /&gt;
range(AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn)) &amp;lt; range(x1, ..., xn). &lt;br /&gt;
&lt;br /&gt;
So, it's clear that range(x1, ..., xn) &amp;gt; range(F(x1, ..., xn)) &amp;gt; range(F(F(x1, ..., xn))) &amp;gt; range(F(F(F(x1, ..., xn)))) &amp;gt; ... and it's also clear that all of these ranges are &amp;gt;= 0. There is a result in number theory that says that any infinite sequence of real numbers which monotonically decreases and is bounded from below converges.&lt;br /&gt;
&lt;br /&gt;
So we know for sure that range(F(F(...F(x1, ..., xn)...))) converges but we still have to show that it converges to 0 to show that the GMDN converges to a single real number.&lt;br /&gt;
&lt;br /&gt;
I'm not sure how to proceed. Does anyone have any ideas?&lt;br /&gt;
&lt;br /&gt;
EDIT:&lt;br /&gt;
I just noticed that unless x1, ..., xn are all equal, AM(x1, ..., xn) is at least ((n-1)/n) * range(x1, ..., xn) away from both x1 and xn. So not only do we have that range(x1, ..., xn) &amp;gt; range(F(x1, ..., xn)) from before, but we also have that ((n-1)/n) * range(x1, ..., xn) &amp;gt;= range(F(x1, ..., xn)). This guarantees that that the range falls exponentially on repeated applications of F. So it's certain that the the range ultimately converges to 0, and hence that the GMDN is well-defined.&lt;br /&gt;
&lt;br /&gt;
It might be a good idea for someone to concretely present this idea as a proof on Page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/172.69.135.44|172.69.135.44]] 05:07, 11 March 2021 (UTC) Anirudh Ajith&lt;/div&gt;</summary>
		<author><name>Smylers</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2435:_Geothmetic_Meandian&amp;diff=207521</id>
		<title>Talk:2435: Geothmetic Meandian</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2435:_Geothmetic_Meandian&amp;diff=207521"/>
				<updated>2021-03-11T06:53:35Z</updated>
		
		<summary type="html">&lt;p&gt;Smylers: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Oh, this one's good. Just checked in (no, I wasn't hovering over the refresh button, my first visit today!) and one glance had me in paroxysms of laughter. But how to explain it? Gonna have to think about that. [[Special:Contributions/141.101.98.96|141.101.98.96]] 01:12, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
I made a really bad spreadsheet to understand better how it works: https://docs.google.com/spreadsheets/d/1fqmHwDmirJrsKPdf94PutFDw31DMAYxNeR7jef1jneE/edit?usp=sharing&lt;br /&gt;
&lt;br /&gt;
Someone fix my ''awful''  transcript edits please. --[[User:Char Latte49|Char Latte49]] ([[User talk:Char Latte49|talk]]) 02:31, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Seeing the Python added to the Explanation, try this Perl (typed straight here, so not tested)... &lt;br /&gt;
 ## Your prefered variations of &amp;quot;#!/usr/bin/perl&amp;quot;, &amp;quot;use strict;&amp;quot; and &amp;quot;use warnings;&amp;quot; here! ##&lt;br /&gt;
 sub F { my (@vals)=@_; my $invVals=1/int(@vals);&lt;br /&gt;
  my ($geo,$arith,$med)=(1); # Only defining $geo, so first *= works correctly!&lt;br /&gt;
  while (@vals) { my($lo,$hi)=(shift @vals,pop @vals); # $hi may be undef - this is intended!&lt;br /&gt;
   $arith+=$lo; $geo*=$lo; unless (defined $hi) {  $med =  $lo;     last }&lt;br /&gt;
   $arith+=$hi; $geo*=$hi; unless (@vals)       { ($med)=F($lo,$hi)      }&lt;br /&gt;
  }&lt;br /&gt;
  return ($arith*$invVals, $geo**$invVals, $med);&lt;br /&gt;
 }&lt;br /&gt;
 sub GMDN { my (@vals)=sort @_; my $lim=10**(-5); # Adjust $lim to taste...&lt;br /&gt;
   return &amp;quot;Error: No vals!&amp;quot; unless  @vals; # Catch!&lt;br /&gt;
   return $vals[0]          unless ($vals[$#vals]-$vals[0]) &amp;gt; $lim;&lt;br /&gt;
   return GMDM(F(@vals));&lt;br /&gt;
 }&lt;br /&gt;
 my @test=(1,1,2,3,5);&lt;br /&gt;
 print &amp;quot;Values:              @test\nGeothmetic Meandian: &amp;quot;.GMDN(@test).&amp;quot;\n&amp;quot;;&lt;br /&gt;
...debugged in my head, so probably fatally flawed but easily fixed/adapted anyway. [[Special:Contributions/141.101.99.109|141.101.99.109]] 03:04, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why so complicated?&lt;br /&gt;
 perl -e 'use strict; use warnings; sub F { my ($s,$p) = (0,1); my @srt = sort {$a&amp;lt;=&amp;gt;$b} @_; for (@_) { $s += $_; $p *= $_; } return ($s/@_,$p**(1/@_),$srt[$#_/2]); } sub Gmdn { print join(&amp;quot;, &amp;quot;,@_=F(@_)),&amp;quot;\n&amp;quot; for 0..20; return @_; } print join(&amp;quot;, &amp;quot;,Gmdn(1,1,2,3,5)),&amp;quot;\n&amp;quot;;'&lt;br /&gt;
(With interim results) SCNR -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 03:18, 11 March 2021 (UTC)&lt;br /&gt;
:''I'' can read your version (and I see you do explicit {$a&amp;lt;=&amp;gt;$b}, which indeed ''may'' be necessary in mine for real use, along with additional sanity checks, I will check later) but I wanted to make mine neat, and ''slightly'' tricksy in implementation, but still not quite so entirely obfuscated to the more uninitiated. TIMTOWTDI, etc, so I like your (almost) bare-bones version too. ;)&lt;br /&gt;
:(Is 20 cycles enough to converge in sufficiently extreme cases? Won't give &amp;quot;Too deep&amp;quot; error, though, even  if it takes at least that long. There's a definite risk that mine might, as written.) [[Special:Contributions/141.101.99.229|141.101.99.229]] 03:45, 11 March 2021 (UTC)&lt;br /&gt;
::Given the lack of precision in Randall's example usage, I think 20 cycles ought to be enough for everyone ;-P. I'm trying to prove that the interval's size has to shrink by somewhat close to a factor of 1/2 every cycle, but it's tricky and it's late. If I can assume a factor of 1/2 in the long run, 64 iterations should pin down a 64-bit float.&lt;br /&gt;
::I actually didn't try to obfuscate, I was just too lazy to type more ;-). Otherwise I might have left out the &amp;quot;return&amp;quot;s and passing parameters at all. -- [[User:Xorg|Xorg]] ([[User talk:Xorg|talk]]) 04:21, 11 March 2021 (UTC)&lt;br /&gt;
:::I find the one-liner more readable: it's straightforward and pretty minimal. For what its worth, here's my version: &amp;lt;pre&amp;gt;perl -MList::Util=sum,product -E 'sub F { (sum @_)/@_, (product @_)**(1/@_), (sort { $a &amp;lt;=&amp;gt; $b } @_)[$#_/2] } $, = &amp;quot; &amp;quot;; say @v = @ARGV; say @v = F(@v) for 1..30' 1 1 2 3 5&amp;lt;/pre&amp;gt; 30 iterations is enough for the numbers to display identically on this system (to 14 decimal places). I think it's even cleaner in Raku (formerly Perl 6): &amp;lt;pre&amp;gt;raku -e 'sub F(@d) { @d.sum/@d, [*](@d)**(1/@d), @d.sort[@d/2] }; my @v = +«@*ARGS; say @v = F(@v) for 1..33' 1 1 2 3 5&amp;lt;/pre&amp;gt; On this system, Rakudo yields an additional decimal place, which takes another 3 iterations to converge.  [[User:Smylers|Smylers]] ([[User talk:Smylers|talk]]) 06:53, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Side-thought: is GMDN (nowhere near as logical an ETLA contraction of the title term as, say, 'GMMD' or 'GTMD') actually an oblique reference to the GNDNs as popularised/coined by Trek canon? Worth a citation/Trivia? [[Special:Contributions/162.158.158.97|162.158.158.97]] 04:12, 11 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Proof of convergence ==&lt;br /&gt;
&lt;br /&gt;
Can any of you come up with a mathematical proof that repeated application of F on a set of (say) positive real numbers is guaranteed to converge toward a single real number, i.e. that the GMDN of a set of positive real numbers is well-defined? &lt;br /&gt;
&lt;br /&gt;
One observation I've made is that if you consider that maximum and minimum numbers in the original set to be x1 and xn (without loss of generality), something we know for sure is that AM(x1, ..., xn), GM(x1, ..., xn) and Median(x1, ..., xn) are all at least x1 and at most xn that is to say...&lt;br /&gt;
&lt;br /&gt;
x1 &amp;lt;= AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn) &amp;lt;= xn&lt;br /&gt;
&lt;br /&gt;
So range(AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn)) is necessarily &amp;lt;= range(x1, ..., xn). &lt;br /&gt;
&lt;br /&gt;
And given that we know that unless x1, ..., xn are all equal, that x1 &amp;lt; AM(x1, ..., xn) &amp;lt; xn, we have an even stricter result (unless x1, ..., xn are all equal) that is &lt;br /&gt;
range(AM(x1, ..., xn), GM(x1, ..., xn), Median(x1, ..., xn)) &amp;lt; range(x1, ..., xn). &lt;br /&gt;
&lt;br /&gt;
So, it's clear that range(x1, ..., xn) &amp;gt; range(F(x1, ..., xn)) &amp;gt; range(F(F(x1, ..., xn))) &amp;gt; range(F(F(F(x1, ..., xn)))) &amp;gt; ... and it's also clear that all of these ranges are &amp;gt;= 0. There is a result in number theory that says that any infinite sequence of real numbers which monotonically decreases and is bounded from below converges.&lt;br /&gt;
&lt;br /&gt;
So we know for sure that range(F(F(...F(x1, ..., xn)...))) converges but we still have to show that it converges to 0 to show that the GMDN converges to a single real number.&lt;br /&gt;
&lt;br /&gt;
I'm not sure how to proceed. Does anyone have any ideas?&lt;br /&gt;
&lt;br /&gt;
EDIT:&lt;br /&gt;
I just noticed that unless x1, ..., xn are all equal, AM(x1, ..., xn) is at least ((n-1)/n) * range(x1, ..., xn) away from both x1 and xn. So not only do we have that range(x1, ..., xn) &amp;gt; range(F(x1, ..., xn)) from before, but we also have that ((n-1)/n) * range(x1, ..., xn) &amp;gt;= range(F(x1, ..., xn)). This guarantees that that the range falls exponentially on repeated applications of F. So it's certain that the the range ultimately converges to 0, and hence that the GMDN is well-defined.&lt;br /&gt;
&lt;br /&gt;
It might be a good idea for someone to concretely present this idea as a proof on Page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/172.69.135.44|172.69.135.44]] 05:07, 11 March 2021 (UTC) Anirudh Ajith&lt;/div&gt;</summary>
		<author><name>Smylers</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2003:_Presidential_Succession&amp;diff=158387</id>
		<title>2003: Presidential Succession</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2003:_Presidential_Succession&amp;diff=158387"/>
				<updated>2018-06-06T10:08:17Z</updated>
		
		<summary type="html">&lt;p&gt;Smylers: Add link to LIne of Succession site&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2003&lt;br /&gt;
| date      = June 6, 2018&lt;br /&gt;
| title     = Presidential Succession&lt;br /&gt;
| image     = presidential_succession.png&lt;br /&gt;
| titletext = Ties are broken by whoever was closest to the surface of Europa when they were born.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a BOT - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
The {{w|United States presidential line of succession}} is the order of people who serve as president if the current incumbent President is incapacitated, dies, resigns, or is removed from office.  &lt;br /&gt;
&lt;br /&gt;
The {{w|Presidential_Succession_Act#Presidential_Succession_Act_of_1947|Presidential Succession Act of 1947}} was an act by the U.S. Congress that revised the presidential order of succession to its current order. This act, though never challenged in the courts, may not be constitutional for two reasons. First, it is unclear whether members of Congress can be designated in the line of succession. Secondly, the act allows for a cabinet officer to be &amp;quot;replaced&amp;quot; as acting President by a new Speaker of the House or a new President Pro Tempore of the Senate.&lt;br /&gt;
&lt;br /&gt;
The full text of the Second Report of the Continuity of Government Commission can be found here: https://www.brookings.edu/wp-content/uploads/2016/06/06_continuity_of_government.pdf&lt;br /&gt;
&lt;br /&gt;
The first 6 members of Randall's list are included in the current line of succession. After the top 6, his list ranges from politicians, to actors who have played Presidents, to athletes. &lt;br /&gt;
&lt;br /&gt;
Randall's list omits the Speaker of the House and the President Pro Tempore of the Senate, as well as many other cabinet positions. Perhaps he does not find those people qualified to become President of the United States, or is concerned about the constitutionality of lawmakers becoming President.&lt;br /&gt;
&lt;br /&gt;
This is another comic in the continuing line of comics about American politics, especially after the election of Donald Trump as President in 2016.&lt;br /&gt;
&lt;br /&gt;
==Order of succession==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
!#&lt;br /&gt;
!Randall's order&lt;br /&gt;
!Current order by the 1947 Act&lt;br /&gt;
!Notes&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|President&lt;br /&gt;
|President&lt;br /&gt;
|Not generally considered part of the line of succession, as incumbents cannot &amp;quot;succeed&amp;quot; to their own post.&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
| Vice president&lt;br /&gt;
| Vice president&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|Secretary of State&lt;br /&gt;
|Speaker of the House of Representatives&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|Secretary of Defense&lt;br /&gt;
|President pro tempore of the Senate&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|Secretary of Homeland Security&lt;br /&gt;
|Secretary of State&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|Attorney General&lt;br /&gt;
|Secretary of the Treasury	&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|Five people who do not live in Washington DC, nominated at the start of the President's term and confirmed by the Senate&lt;br /&gt;
|Secretary of Defense&lt;br /&gt;
|{{w|Washington, D.C.}} is the capital of the United States, and is where the {{w|White House}}, the President's residence, is located. Presumably this provision covers the case where much of the government, including positions 1–6 here, are killed by a natural disaster or attack in Washington, D.C.&lt;br /&gt;
&lt;br /&gt;
It is unclear if these 5 people have to have any qualifications whatsoever.&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|{{w|Tom Hanks}}&lt;br /&gt;
|Attorney General&lt;br /&gt;
|Academy Award-winning American actor&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|State Governors, in descending order of state population at last census&lt;br /&gt;
|Secretary of the Interior&lt;br /&gt;
|At the time of publishing, the last {{w|United States Census}} was the 2010 Census. {{w|2010_United_States_Census#State_rankings|Link}} to state populations.&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|Anyone who won an Oscar for playing a governor&lt;br /&gt;
|Secretary of Agriculture&lt;br /&gt;
|Oscars, or {{w|Academy Awards}}, are annual film awards awarded by the Academy of Motion Picture Arts and Sciences.&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|Anyone who won a Governor's award for playing someone named Oscar&lt;br /&gt;
|Secretary of Commerce	&lt;br /&gt;
|The {{w|Governors Awards}} are an annual award ceremony hosted by the Academy of Motion Picture Arts and Sciences to present lifetime achievement awards within the film industry. As this award is a lifetime achievement award, it does not seem possible that an actor could win this award for simply playing someone named Oscar.&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|{{w|Kate McKinnon}}, if available&lt;br /&gt;
|Secretary of Labor&lt;br /&gt;
|Comedic actress famous for being a cast member on {{w|Saturday Night Live}}. She is known for her character work and celebrity impressions.&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|Billboard Year-End Hot 100 Singles artists #1 through #10 (for groups, whoever is credited first in name, liner notes, etc)&lt;br /&gt;
|Secretary of Health and Human Services	&lt;br /&gt;
|The {{w|Billboard Hot 100}} is the music industry standard record chart in the United States for singles, published weekly by Billboard magazine. &lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|The top 5 US astronauts in descending order of total spaceflight time&lt;br /&gt;
|Secretary of Housing and Urban Development	&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|{{w|Serena Williams}} (or, if she lost her most recent match, whoever beat her)&lt;br /&gt;
|Secretary of Transportation&lt;br /&gt;
|As of the time of publishing, Serena Williams was the top female tennis player (though not the world #1 ranking, because she took time off for pregnancy). She is arguably the greatest female tennis player of all-time, winning 39 {{w|Grand Slam (tennis)|Grand Slam}} titles, including 23 women's singles titles. &lt;br /&gt;
&lt;br /&gt;
If her most recent defeat was to a non-US player, it is unclear whether that person would still qualify for President.&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
|The most recent season NBA, NFL, MLB, and NHL MVPs&lt;br /&gt;
|Secretary of Energy&lt;br /&gt;
|MVP stands for {{w|Most Valuable Player}}. The 4 listed leagues are the major sports leagues in the United States, the {{w|National Basketball Association}} (NBA), the {{w|National Football League}} (NFL), {{w|Major League Baseball}} (MLB), and the {{w|National Hockey League}} (NHL).&lt;br /&gt;
&lt;br /&gt;
As of the time of publishing, the most recent MVPs for the listed sports are {{w|Russell Westbrook}} (NBA), {{w|Tom Brady}} (NFL), {{w|José Altuve}} and {{w|Giancarlo Stanton}} (MLB has two, one for the American League and one for the National League), and {{w|Connor McDavid}} (NHL).&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|{{w|Bill Pullman}} and his descendants by absolute primogeniture&lt;br /&gt;
|Secretary of Education	&lt;br /&gt;
|American actor, known for playing President Thomas J. Whitmore in the 1996 film ''{{w|Independence Day (1996 film)|Independence Day}}''. &lt;br /&gt;
&lt;br /&gt;
Absolute primogeniture is a form of succession where the oldest direct descendant receives the title. This is contrasted to {{w|Male-preference primogeniture}}, in which males come before females in the order of the throne, whether the males were born first or not. This may be a reference to the British law {{w|Succession to the Crown Act 2013}}, which changed the order of the throne from male-preference primogeniture to absolute primogeniture. This act allows {{w|Princess Charlotte of Cambridge|Princess Charlotte}} to retain her place in line before {{w|Prince Louis of Cambridge|Prince Louis}}.&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|The entire line of succession to the British throne&lt;br /&gt;
|Secretary of Veterans Affairs	&lt;br /&gt;
|Unsure if this is constitutional, or what the Founding Fathers would have wanted (a Brit sitting as U.S. President!). The first 57 names on the list are {{w|Succession_to_the_British_throne#Current_line_of_succession|here}}, as of the time of publishing. [https://lineofsuccession.co.uk/?date=2018-06-06 British Line of Succession on 6 June 2018] shows the list as it was at the comic's publication. In theory this entry includes several thousand people.&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|The current champion of the Nathan's Hot Dog Eating contest&lt;br /&gt;
|Secretary of Homeland Security&lt;br /&gt;
|The {{w|Nathan's Hot Dog Eating Contest}} is an annual American hot dog competitive eating competition sponsored by {{w|Nathan's Famous}} held on July 4th. As of the time of publishing, the most recent men's winner is {{w|Joey Chestnut}} and the women's winner is {{w|Miki Sudo}}.&lt;br /&gt;
|-&lt;br /&gt;
|20&lt;br /&gt;
|All other US citizens, chosen by a 29-round single-elimination Jousting tournament&lt;br /&gt;
|''None''&lt;br /&gt;
|Effective for a population up to 536,870,912 individuals (2^29), although additional rounds can be added should the population grow further.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The title text mentions whoever was closest to the surface of Europa when they were born. {{w|Europa}} is a moon of Jupiter, so most people would be very far from its surface when they were born. Alternatively, Randall could be playing on how Europa sounds like Europe.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
: A proposal for a new presidential line of succession&lt;br /&gt;
: Current politics aside, most experts agree the existing process is flawed. The presidential succession act of 1947 is probably unconstitutional on several counts, and there are many practical issues with the system as well.&lt;br /&gt;
: (for more, see the surprisingly gripping [https://www.brookings.edu/research/the-continuity-of-the-presidency-the-second-report-of-the-continuity-of-government-commission/ ''Second Report of the Continuity of Government Commission'', June 2009]).&lt;br /&gt;
: Proposed line of succession:&lt;br /&gt;
:# President&lt;br /&gt;
:# Vice president&lt;br /&gt;
:# Secretary of State&lt;br /&gt;
:# Secretary of Defense&lt;br /&gt;
:# Secretary of Homeland Security&lt;br /&gt;
:# Attorney General&lt;br /&gt;
:# Five people who do not live in Washington DC, Nominated at the start of the president's term and confirmed by the Senate&lt;br /&gt;
:# Tom Hanks&lt;br /&gt;
:# State Governors, in descending order of state population at last census&lt;br /&gt;
:# Anyone who won an Oscar for playing a governor&lt;br /&gt;
:# Anyone who won a Governor's award for playing someone named Oscar&lt;br /&gt;
:# Kate McKinnon, if available&lt;br /&gt;
:# Billboard year-end hot 100 singles artists #1 through #10 (for groups, whoever is credited first in name, liner notes, etc)&lt;br /&gt;
:# The top 5 US astronauts in descending order of total spaceflight time&lt;br /&gt;
:# Serena Williams (or, if she lost her most recent match, whoever beat her)&lt;br /&gt;
:# The most recent season NBA, NFL, MLB, and NHL MVPs&lt;br /&gt;
:# Bull Pullman and his descendants by absolute primogeniture&lt;br /&gt;
:# The entire line of succession to the British throne&lt;br /&gt;
:# The current champion of the Nathan's Hot Dog Eating contest&lt;br /&gt;
:# All other US citizens, chosen by a 29-round single-elimination Jousting tournament.&lt;br /&gt;
&lt;br /&gt;
: Title text: Ties are broken by whoever was closest to the surface of Europa when they were born.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>Smylers</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1962:_Generations&amp;diff=153717</id>
		<title>Talk:1962: Generations</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1962:_Generations&amp;diff=153717"/>
				<updated>2018-03-05T09:50:20Z</updated>
		
		<summary type="html">&lt;p&gt;Smylers: Italic f suggestion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and do not delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Table guy! Maybe this could be a table with &amp;quot;Year&amp;quot;, &amp;quot;Generation Name&amp;quot;, &amp;quot;References&amp;quot; and &amp;quot;Speculation&amp;quot;. Or something. [[Special:Contributions/198.41.230.172|198.41.230.172]] 17:31, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
The highlighted generations are clearly the ones Pew Research named, but I can't figure out why Randall's numbers don't seem to match Pew's here: http://www.pewresearch.org/fact-tank/2015/05/11/millennials-surpass-gen-xers-as-the-largest-generation-in-u-s-labor-force/ft_15-05-11_millennialsdefined/ [[User:TheAnvil|TheAnvil]] ([[User talk:TheAnvil|talk]]) 17:37, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
—••— means X in Morse code [[User:Inexorably advancing wall of ice|Inexorably advancing wall of ice]] ([[User talk:Inexorably advancing wall of ice|talk]]) 18:21, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
But seriously, it was funny the first time. I'm sorry for the above incomplete tag in the comments{{Citation needed}},but it feels like most comics since maybe #1900 ([[1914: Twitter Verification]] comes to mind...) have this kind of thing for their incomplete tag. Maybe if it's spaced out more, instead of put into nearly every comic nowadays, it won't be so much of a problem. --[[Special:Contributions/162.158.75.184|162.158.75.184]] 18:02, 2 March 2018 (UTC)&lt;br /&gt;
: If you can address this problem, please edit the user. [[Special:Contributions/162.158.155.26|162.158.155.26]] 23:04, 2 March 2018 (UTC)&lt;br /&gt;
::Removed the incomplete tag, changed the citation needed tag into the correct one. Dude, please don't do that again, it's not funny, just seriously annoying. The incomplete tag is not there for you to abuse. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 12:07, 3 March 2018 (UTC)&lt;br /&gt;
:::Oh, and now that I've finally caught up to you, 162.158.155.26, please check your talk page. [[User:Herobrine|Herobrine]] ([[User talk:Herobrine|talk]]) 12:07, 3 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Can someone help me? [[User:Halo422|Halo422]] ([[User talk:Halo422|talk]]) 20:20, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
What's the emoji 2000-2017? [[Special:Contributions/172.68.141.214|172.68.141.214]] 21:05, 2 March 2018 (UTC)&lt;br /&gt;
:I think I found it: 💅  [https://emojipedia.org/nail-polish/ &amp;quot;nail-polish&amp;quot;] (Comes up very different on different systems) [[Special:Contributions/162.158.79.233|162.158.79.233]] 21:20, 2 March 2018 (UTC)&lt;br /&gt;
:Couldn't this emoji, and hence the title &amp;quot;Generation 💅&amp;quot;, refer to the rise of nail care salons or manicure salons during the recent years? I don't know about other countries, but at least in certain parts of Europe, Germany in particular, there seems to be such a boom of this kind of establishments that I often wonder how they survive and open even more such businesses, even though it appears there's more nail salons than (manicured) nails in town. [[User:Passerby|Passerby]] ([[User talk:Passerby|talk]]) 20:56, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have to believe the 1748 - 1765  generation is some form of &amp;quot;Long s&amp;quot; such as U+1E9C or U+1E9D [[Special:Contributions/162.158.79.233|162.158.79.233]] 21:12, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
: It looks more like a forte ([https://www.fileformat.info/info/unicode/char/1d191/index.htm U+1D191]). I'm not sure why that would be funny—maybe because of [[Wikipedia:fortepiano|fortepiano]]s? [[Special:Contributions/172.69.69.214|172.69.69.214]] 21:43, 2 March 2018 (UTC)&lt;br /&gt;
::My position comes from the fact that documents written by this generation (i.e. [https://en.wikipedia.org/wiki/Long_s#/media/File:Long-s-US-Bill-of-Rights.jpg Declaration of Independance] and the US Constitution) are noted for having this letter form. The script form of the long s looks like what Randall has written, which, to your point, looks like a &amp;quot;forte&amp;quot; [[Special:Contributions/162.158.79.233|162.158.79.233]] 22:51, 2 March 2018 (UTC)&lt;br /&gt;
::: Actually, it quite clearly is '''not''' long s.  Long s only has the tic on the left side of the main stroke, not on both sides as is the case here. [[Special:Contributions/162.158.78.118|162.158.78.118]] 22:24, 3 March 2018 (UTC)&lt;br /&gt;
:::: I read it as an italic lower-case F, ''f'', as used to denote [https://www.wikiwand.com/en/Function_(mathematics) mathematical functions]. I think it looks more like one of those than a [https://www.wikiwand.com/en/Long_s long s], ſ, though I don't have an explanation for why that would be used to name a generation. [[User:Smylers|Smylers]] ([[User talk:Smylers|talk]]) 09:50, 5 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hitler was born in 1889, about three years before the &amp;quot;Oops, one of us is Hitler&amp;quot; generation ... --[[Special:Contributions/141.101.105.240|141.101.105.240]] 21:37, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Can someone who's a big Trekkie than I am help explain the dates for ''Star Trek: The Next Generation''? If we're going off of the events of the show + movies, it seems to start well before the events of the show and end before the last of the movies. [[User:PvOberstein|PvOberstein]] ([[User talk:PvOberstein|talk]]) 21:49, 2 March 2018 (UTC)&lt;br /&gt;
:Year 2378 may be explained by last episode of Voyager happening that year, but no idea about year 2360. -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 00:59, 3 March 2018 (UTC)&lt;br /&gt;
::Year 2360 is when the humans who became adults (18) in 2378 were born. This time-span is probably when the majority of human TNG characters would have been born (not necessarily notable ones). This is similar to how people born in 1982 became the first new adults in the new millenium. [[Special:Contributions/172.68.46.143|172.68.46.143]] 05:02, 3 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Filled in most of the table with explanations (I'm pretty sure most of the latter generation names are references to potential transhumanist futures), but I'm not sure what &amp;quot;Second-Greatest&amp;quot; Generation refers to unless it's about the Civil War.  Also, I'm not entirely certain whether the generation before the gilded one was cut a lot of slack.  And I'll let someone more versed in standard sociological history fill in the common reasons for the core 20th century generations.[[User:WingedCat|WingedCat]] ([[User talk:WingedCat|talk]]) 22:49, 2 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
;Paperclip machine&lt;br /&gt;
I think the paperclip machines refer to the browser game &amp;quot;Universal Paperclips&amp;quot;, where paperclip machines take over the universe. [http://www.decisionproblem.com/paperclips/index2.html]. Best regards, [[Special:Contributions/172.68.110.10|172.68.110.10]] 11:55, 3 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
 The incomplete explination tag seemed to be a useless joke, so I deleted it.&lt;br /&gt;
&lt;br /&gt;
;Ω&lt;br /&gt;
Wow that’s a lot of speculation on the Ω generation! 177 words of it! Who knew people could imagine so much inspired by a single character (and no historical context to extrapolate from). Personally, I tend to think of it as the “resistance generation” given my electronic background 😜. [[User:PotatoGod|PotatoGod]] ([[User talk:PotatoGod|talk]]) 15:11, 4 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why is there an incomplete tag in the transcript? What's wrong with it? [[Special:Contributions/108.162.216.148|108.162.216.148]] 22:49, 4 March 2018 (UTC)&lt;/div&gt;</summary>
		<author><name>Smylers</name></author>	</entry>

	</feed>