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

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=340803</id>
		<title>571: Can't Sleep</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=340803"/>
				<updated>2024-04-29T16:14:04Z</updated>
		
		<summary type="html">&lt;p&gt;Fiss: better sentencing (have 16 bits to be 16-bit)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 571&lt;br /&gt;
| date      = April 20, 2009&lt;br /&gt;
| title     = Can't Sleep&lt;br /&gt;
| image     = cant sleep.png&lt;br /&gt;
| titletext = If androids someday DO dream of electric sheep, don't forget to declare sheepCount as a long int.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] is in bed and is having trouble sleeping. He tries the old standby of {{w|counting sheep}} as they jump over a fence, but upon reaching 32,767 sheep, 65535 sheep jump back over the fence and start counting up again from -32,768. This is a reference to an integer overflow, when an increasing amount (sheep in this case) suddenly overflows and shows up as a negative value. This is because when a whole number or integer is represented in a digital form, such as on a computer, the number's range is limited by the amount of space used to store it. When the greatest possible number given the storage space is exceeded, an arithmetic overflow occurs, which may result (depending on the used language among other things) in starting over at the least possible number given the storage space, similar to a car's odometer. Imagine an odometer with six digits reaching 999999. Upon driving one more mile or km, the digits will roll back over to 000000. Causing or failing to prevent integer overflow is a common mistake by programmers that may have software security consequences. Some languages like C/C++ even leaves the signed integer overflow ''undefined behavior'', it may or may not wrap to the beginning, the instruction can be ignored or may cause the software to crash.&lt;br /&gt;
&lt;br /&gt;
In this case, the least and greatest possible numbers are -32,768 and 32,767, which implies that Cueball's brain would only be 16-bit. In addition, it's clear that the number is designated as a signed number, meaning that it can be either positive or negative.&lt;br /&gt;
&lt;br /&gt;
However, even if Cueball had this limitation, it would never actually pose a problem. By 32,767 sheep, at a rate of one sheep per second, Cueball has been counting for 9.101 hours (or about 9 hours 6 minutes). This would signify that he has extreme insomnia and probably needs treatment, and also that he has spent the entire night counting, and therefore would just get up and start the day rather than count sheep all over again from -32,768.&lt;br /&gt;
&lt;br /&gt;
The title text refers to the 1968 Philip K. Dick science fiction novel ''{{w|Do Androids Dream of Electric Sheep?}}'', which was adapted into the perhaps more widely known Ridley Scott directed 1982 film ''Blade Runner''. The implication is that if we ever do create androids that dream of electric sheep, we should make sure to give them sufficient storage space to store numbers large enough such that an arithmetic overflow will be far less likely to occur, even if they count for a long time. A &amp;quot;long int&amp;quot; depends on machine architecture, but it typically consists of four bytes rather than two, so instead of being limited to a range from -32,768 to 32,767 the number will be capable of storing numbers from -2,147,483,648 to 2,147,483,647, which would take 68.1 years to exhaust (at the rate of 1 sheep/sec). &amp;quot;sheepCount&amp;quot; is a possible name for a variable to be used in a computer program. Declaring a variable tells the computer that it should allocate a portion of memory to be associated with the variable name given. No spaces are used because variables cannot contain spaces, for a reason that would take a little too long to properly explain here.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is in bed, presumably trying to sleep. The top of each panel is a thought bubble showing sheep leaping over a fence and Cueball's counting and the sheeps baaing is written above the sheeps. Two sheep are jumping from left to right in the first panel.]&lt;br /&gt;
:1... 2...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
:[Two sheep are jumping from left to right. Cueball is holding his pillow.]&lt;br /&gt;
:... 1,306... 1,307...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
:[A whole flock of sheep (nine visible) is jumping over the fence from right to left; the first and last sheep is cut off at the edge of the frame. Cueball is now sitting up looking up at his thought bubble.]&lt;br /&gt;
:... 32,767 ...-32,768...&lt;br /&gt;
:Sheep: Baaa baaa baaaa baaa ba&lt;br /&gt;
:Cueball: ?&lt;br /&gt;
&lt;br /&gt;
:[Two sheep are again jumping from left to right. Cueball is holding his pillow over his head.]&lt;br /&gt;
:...-32,767... -32,766...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Dreams]]&lt;/div&gt;</summary>
		<author><name>Fiss</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=340767</id>
		<title>571: Can't Sleep</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=571:_Can%27t_Sleep&amp;diff=340767"/>
				<updated>2024-04-28T15:45:08Z</updated>
		
		<summary type="html">&lt;p&gt;Fiss: clarified the text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 571&lt;br /&gt;
| date      = April 20, 2009&lt;br /&gt;
| title     = Can't Sleep&lt;br /&gt;
| image     = cant sleep.png&lt;br /&gt;
| titletext = If androids someday DO dream of electric sheep, don't forget to declare sheepCount as a long int.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Cueball]] is in bed and is having trouble sleeping. He tries the old standby of {{w|counting sheep}} as they jump over a fence, but upon reaching 32,767 sheep, 65535 sheep jump back over the fence and start counting up again from -32,768. This is a reference to an integer overflow, when an increasing amount (sheep in this case) suddenly overflows and shows up as a negative value. This is because when a whole number or integer is represented in a digital form, such as on a computer, the number's range is limited by the amount of space used to store it. When the greatest possible number given the storage space is exceeded, an arithmetic overflow occurs, which may result (depending on the used language among other things) in starting over at the least possible number given the storage space, similar to a car's odometer. Imagine an odometer with six digits reaching 999999. Upon driving one more mile or km, the digits will roll back over to 000000. Causing or failing to prevent integer overflow is a common mistake by programmers that may have software security consequences. Some languages like C/C++ even leaves the signed integer overflow ''undefined behavior'', it may or may not wrap to the beginning, the instruction can be ignored or may cause the software to crash.&lt;br /&gt;
&lt;br /&gt;
In this case, the least and greatest possible numbers are -32,768 and 32,767, which implies that Cueball's brain would only use 16 bits. In addition, it's clear that the number is designated as a signed number, meaning that it can be either positive or negative.&lt;br /&gt;
&lt;br /&gt;
However, even if Cueball had this limitation, it would never actually pose a problem. By 32,767 sheep, at a rate of one sheep per second, Cueball has been counting for 9.101 hours (or about 9 hours 6 minutes). This would signify that he has extreme insomnia and probably needs treatment, and also that he has spent the entire night counting, and therefore would just get up and start the day rather than count sheep all over again from -32,768.&lt;br /&gt;
&lt;br /&gt;
The title text refers to the 1968 Philip K. Dick science fiction novel ''{{w|Do Androids Dream of Electric Sheep?}}'', which was adapted into the perhaps more widely known Ridley Scott directed 1982 film ''Blade Runner''. The implication is that if we ever do create androids that dream of electric sheep, we should make sure to give them sufficient storage space to store numbers large enough such that an arithmetic overflow will be far less likely to occur, even if they count for a long time. A &amp;quot;long int&amp;quot; depends on machine architecture, but it typically consists of four bytes rather than two, so instead of being limited to a range from -32,768 to 32,767 the number will be capable of storing numbers from -2,147,483,648 to 2,147,483,647, which would take 68.1 years to exhaust (at the rate of 1 sheep/sec). &amp;quot;sheepCount&amp;quot; is a possible name for a variable to be used in a computer program. Declaring a variable tells the computer that it should allocate a portion of memory to be associated with the variable name given. No spaces are used because variables cannot contain spaces, for a reason that would take a little too long to properly explain here.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is in bed, presumably trying to sleep. The top of each panel is a thought bubble showing sheep leaping over a fence and Cueball's counting and the sheeps baaing is written above the sheeps. Two sheep are jumping from left to right in the first panel.]&lt;br /&gt;
:1... 2...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
:[Two sheep are jumping from left to right. Cueball is holding his pillow.]&lt;br /&gt;
:... 1,306... 1,307...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
:[A whole flock of sheep (nine visible) is jumping over the fence from right to left; the first and last sheep is cut off at the edge of the frame. Cueball is now sitting up looking up at his thought bubble.]&lt;br /&gt;
:... 32,767 ...-32,768...&lt;br /&gt;
:Sheep: Baaa baaa baaaa baaa ba&lt;br /&gt;
:Cueball: ?&lt;br /&gt;
&lt;br /&gt;
:[Two sheep are again jumping from left to right. Cueball is holding his pillow over his head.]&lt;br /&gt;
:...-32,767... -32,766...&lt;br /&gt;
:Sheep: Baaa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Dreams]]&lt;/div&gt;</summary>
		<author><name>Fiss</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2034:_Equations&amp;diff=340444</id>
		<title>2034: Equations</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2034:_Equations&amp;diff=340444"/>
				<updated>2024-04-23T17:36:41Z</updated>
		
		<summary type="html">&lt;p&gt;Fiss: typo correction, possably to possibly&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2034&lt;br /&gt;
| date      = August 17, 2018&lt;br /&gt;
| title     = Equations&lt;br /&gt;
| image     = equations.png&lt;br /&gt;
| titletext = All electromagnetic equations: The same as all fluid dynamics equations, but with the 8 and 23 replaced with the permittivity and permeability of free space, respectively.&lt;br /&gt;
}}&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
This comic gives a set of mock equations. To anyone not familiar with the field in question they look pretty similar to what you might find in research papers or on the relevant Wikipedia pages. Most of the jokes are related to the symbols or &amp;quot;look&amp;quot; of most equations in the given field.&lt;br /&gt;
&lt;br /&gt;
The comic makes jokes about the fields of kinematics, number theory, fluid dynamics, quantum mechanics, chemistry, quantum gravity, gauge theory, cosmology, and physics equations. Of course, all of the equations listed are not real equations (&amp;lt;math&amp;gt;\pi-\infty&amp;lt;/math&amp;gt; and H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;EAT are clearly jokes and making a mockery of the given field). As always, Randall is just having a laugh.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;E=K_{0}t+\frac{1}{2}\rho{}vt^2&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|kinematics}} equations&lt;br /&gt;
Most kinematics equations tend to make heavy use of constants, addition, powers, and multiplication. This specific equation resembles the actual kinematics equation d = vt + 1/2at^2, but replaces a (acceleration) with v (velocity) times &amp;lt;math&amp;gt;\rho{}&amp;lt;/math&amp;gt; (density) and replaces velocity with &amp;quot;K&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;&amp;quot;, which is not a term used in kinematics.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;K_{n}=\sum_{i=0}^{\infty}\sum_{\pi=0}^{\infty}(n-\pi)(i+e^{\pi-\infty})&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|number theory}} equations&lt;br /&gt;
Randall jokes about how number theory often involves the use of summations. The use of ''&amp;amp;pi;'' as an integer variable in the double summation is a joke, as ''&amp;amp;pi;'' is essentially always used for the well-known constant 3.14159..., not a variable. The use of ''i'' as a summation variable '''is''' common, though it can also be confused with the imaginary unit &amp;amp;radic;-1. The constants ''e'', ''i'', and ''&amp;amp;pi;'', as well as the theoretical upper bound &amp;lt;math&amp;gt;\infty&amp;lt;/math&amp;gt;, often appear in number theory equations.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;\frac{\partial}{\partial{t}}\nabla\!\cdot\!\rho=\frac{8}{23}\int\!\!\!\!\int\!\!\!\!\!\!\!\!\!\subset\!\!\supset\rho\,{ds}\,{dt}\cdot{}\rho\frac{\partial}{\partial\nabla}&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|fluid dynamics}} equations&lt;br /&gt;
Fluid dynamics equations often involve copious integrals, especially those over closed contours as done here, which are often the main telling factors of those equations to an outsider. The time derivative and gradient operator &amp;lt;math&amp;gt;\nabla&amp;lt;/math&amp;gt; are common in fluid dynamics, mostly via the Navier-Stokes equation, and the fluid density &amp;lt;math&amp;gt;\rho&amp;lt;/math&amp;gt; is one of the functions of central importance. The fraction 8/23 is a comically weird choice, but various unexpected fractions do pop up in fluid dynamics. The ds and dt go with the double contour integral (s is probably distance, t is time), but the derivative with respect to &amp;lt;math&amp;gt;\nabla&amp;lt;/math&amp;gt; at the end is very much not allowed.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;|\psi_{x,y}\rangle=A(\psi)A(|x\rangle\otimes|y\rangle)&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|quantum mechanics}} equations&lt;br /&gt;
Quantum mechanics often involves some of the foreign-looking symbols listed, including {{w|Bra–ket notation|bra-ket notation}}, the {{w|Tensor product|tensor product}}, and the Greek letter Psi for a quantum state. Specifically, the left side of the equation is a ket state labeled Psi that depends on x and y (probably positions), while the right-hand side may be an operator A that depends on the state Psi (it is very unusual to have such a dependence) acting on what looks like another copy of that operator which depends on the outer product of states labeled by x and y (again strange). A charitable interpretation could be that the second A is the eigenfunction A of the operator A. Normally this is clearly indicated by giving the operator a “hat” (^ symbol) or making the eigenfunction into a ket eigenstate, but since the equation is intentionally nonsense both A’s are left ambiguous. Also note that the bra-ket math is inconsistent here, as the left side is a ket, but the right side is just two A’s, which are either operators or functions but are definitely not kets.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;CH_4+OH+HEAT\rightarrow{}H_2O+CH_{2}+H_2EAT&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|chemistry}} equations&lt;br /&gt;
Chemistry equations use formulas of chemical compounds to describe a chemical reaction. Such equations show the starting chemicals on the left side and the resulting products on the right side, as displayed. Sometimes such an equation might optionally indicate that an {{w|activation energy}} is required, for the reaction to take place in a sensible timeframe, e.g. by heating. A reaction requiring heating is usually indicated by a Greek capital letter Delta (''&amp;amp;Delta;'') or a specified temperature above the reaction arrow, however this comic uses the &amp;quot;+ HEAT&amp;quot; term on the left side instead. The joke is that Randall interprets &amp;quot;HEAT&amp;quot; to be another chemical, possibly the nonsensical helium-monastatide, which reacts with Hydrogen (H) to H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;EAT, which is nonsensical, as heat is transferred energy here, not added matter. Regardless of this, Randall gets the {{w|stoichiometry}} of this equation correct, with the same number of all types of 'atoms' on each side of the equation.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;SU(2)U(1)\times{}SU(U(2))&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|quantum gravity}} equations&lt;br /&gt;
Quantum gravity uses mathematical {{w|Group (mathematics)|groups}} denoted by uppercase letters, as shown. {{w|Special unitary group|SU(2)}}, {{w|Unitary group|U(1)}}, and {{w|Unitary group|U(2)}} are all well-studied groups, though 'SU(U(2))' makes no sense.  The lack of relator means this expression isn't an equation.&lt;br /&gt;
&lt;br /&gt;
:[[File:All gauge theory equations.png]]&lt;br /&gt;
;All {{w|gauge theory}} equations&lt;br /&gt;
Gauge theory is a subset of field theory. Most gauge theory equations appear to have many strange-looking constants and variables with odd labels. However, almost none of the symbols used here are found or applicable to gauge theory.&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;H(t)+\Omega+G\!\cdot\!\Lambda...\begin{cases}...&amp;gt;0\mathrm{\ (Hubble\ model)}\\&lt;br /&gt;
...=0\mathrm{\ (Flat\ sphere\ model)}\\&lt;br /&gt;
...&amp;lt;0\mathrm{\ (Bright\ dark\ matter\ model)}&lt;br /&gt;
\end{cases}&amp;lt;/math&amp;gt;&lt;br /&gt;
;All {{w|cosmology}} equations&lt;br /&gt;
Cosmology is the science of the development and ultimate fate of the universe. The joke here may be pertaining to the different models accepted in the field of cosmology. H is the {{w|Hubble's law#Time-dependence of Hubble parameter|Hubble parameter}}, &amp;amp;Omega; is the universal {{w|Friedmann equations#Density parameter|density parameter}}, G is the {{w|gravitational constant}}, and &amp;amp;Lambda; is the {{w|cosmological constant}}.&lt;br /&gt;
&lt;br /&gt;
:[[File:All truly deep physics equations.png]]&lt;br /&gt;
;All truly deep {{w|physics}} equations&lt;br /&gt;
The joke about the &amp;quot;truly deep physics equations&amp;quot; is that most of the universal physics equations are simple, almost exceedingly so. In general, many of these equations are types of [https://en.wikipedia.org/wiki/Conservation_law conservation law] equations, which reflect some of the basic truths of the universe. A hallmark of conservation laws is that the total amount of some physical value does not change, and so one side of the equation is zero, as shown in the example. One example is Einstein's ''E = mc²'', which shows conservation of mass-energy. Noether's theorem shows that conservation laws have a one-to-one correspondence with a symmetry of nature, making these equations truly 'deep'. &lt;br /&gt;
&lt;br /&gt;
The title text is referencing the fact that the {{w|magnetic field|electric and magnetic fields}} are often explained to physics students using an analogy with fluid dynamics, as well as the fact that they do share some similarities (only in terms of mathematical description as three-dimensional vector fields) with fluids. The permittivity constant (represented with ''&amp;amp;epsilon;''&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;) and the permeability constant (represented with ''&amp;amp;mu;''&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;) are coefficients that relate the amount of charge required to cause a specific amount of electric flux in a vacuum and the ability of vacuum to support the formation of magnetic fields, respectively. They appear frequently in Maxwell's equations (the equations that define the electric and magnetic fields in classical mechanics), so Randall is making the joke that any surface integral with them in it automatically is an electromagnetism equation.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Nine equations are listed, three in the top row and two in each of the next three rows. Below each equation there are labels:]&lt;br /&gt;
&lt;br /&gt;
:E=K&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;t+1/2 &amp;amp;rho;vt&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;&lt;br /&gt;
:All kinematics equations&lt;br /&gt;
&lt;br /&gt;
:K&amp;lt;sub&amp;gt;n&amp;lt;/sub&amp;gt;=&amp;amp;sum;&amp;lt;sup&amp;gt;&amp;amp;infin;&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;i=0&amp;lt;/sub&amp;gt;&amp;amp;sum;&amp;lt;sup&amp;gt;&amp;amp;infin;&amp;lt;/sup&amp;gt;&amp;lt;sub&amp;gt;&amp;amp;pi;=0&amp;lt;/sub&amp;gt;(n-&amp;amp;pi;)(i-e&amp;lt;sup&amp;gt;&amp;amp;pi;-&amp;amp;infin;&amp;lt;/sup&amp;gt;) [K sub n = the summation from i = 0 to infinity of the sum from pi = 0 to infinity of (n - pi) * (i-e^(pi-infinity))]&lt;br /&gt;
:All number theory equations&lt;br /&gt;
&lt;br /&gt;
:&amp;amp;#x2202;/&amp;amp;#x2202;t &amp;amp;nabla;&amp;amp;sdot;&amp;amp;rho;=8/23 (&amp;amp;#x222F; &amp;amp;rho; ds dt &amp;amp;sdot; &amp;amp;rho; &amp;amp;#x2202;/&amp;amp;#x2202;&amp;amp;nabla;)&lt;br /&gt;
:All fluid dynamics equations&lt;br /&gt;
&lt;br /&gt;
:|&amp;amp;psi;&amp;lt;sub&amp;gt;x,y&amp;lt;/sub&amp;gt;&amp;amp;#x232a;=A(&amp;amp;psi;)A(|x&amp;amp;#x232a;&amp;amp;#x2297;|y&amp;amp;#x232a;)&lt;br /&gt;
:All quantum mechanics equations&lt;br /&gt;
&lt;br /&gt;
:CH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;+OH+HEAT&amp;amp;rarr;H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O+CH&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;+H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;EAT&lt;br /&gt;
:All chemistry equations&lt;br /&gt;
&lt;br /&gt;
:SU(2)U(1)&amp;amp;times;SU(U(2))&lt;br /&gt;
:All quantum gravity equations&lt;br /&gt;
&lt;br /&gt;
:S&amp;lt;sub&amp;gt;g&amp;lt;/sub&amp;gt;=(-1)/(2&amp;amp;epsilon;&amp;amp;#x0304;) i&amp;amp;eth;(&amp;amp;#x302; &amp;amp;xi;&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; &amp;amp;#x2a22; p&amp;lt;sub&amp;gt;&amp;amp;epsilon;&amp;lt;/sub&amp;gt; &amp;amp;rho;&amp;lt;sub&amp;gt;v&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;abc&amp;lt;/sup&amp;gt;&amp;amp;sdot;&amp;amp;eta;&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt;)&amp;amp;#x302; f&amp;amp;#x0335;&amp;lt;sub&amp;gt;a&amp;lt;/sub&amp;gt;&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt; &amp;amp;lambda;(&amp;lt;span style=&amp;quot;display:inline-block; -ms-transform:rotate(180deg); -webkit-transform:rotate(180deg); transform:rotate(180deg);&amp;quot;&amp;gt;&amp;amp;xi;&amp;lt;/span&amp;gt;) &amp;amp;psi;(0&amp;lt;sub&amp;gt;a&amp;lt;/sub&amp;gt;)&lt;br /&gt;
:All gauge theory equations&lt;br /&gt;
&lt;br /&gt;
:H(t)+&amp;amp;Omega;+G&amp;amp;sdot;&amp;amp;Lambda; ... &lt;br /&gt;
:[There is a brace linking the three cases together.]&lt;br /&gt;
:... &amp;gt; 0 (Hubble model)&lt;br /&gt;
:... = 0 (Flat sphere model)&lt;br /&gt;
:... &amp;lt; 0 (Bright dark matter model)&lt;br /&gt;
:All cosmology equations&lt;br /&gt;
&lt;br /&gt;
:&amp;amp;#x0124; - u&amp;amp;#x0327;&amp;lt;sub&amp;gt;0&amp;lt;/sub&amp;gt; = 0&lt;br /&gt;
:All truly deep physics equations&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Science]]&lt;br /&gt;
[[Category:Physics]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Chemistry]]&lt;br /&gt;
[[Category:Cosmology]]&lt;/div&gt;</summary>
		<author><name>Fiss</name></author>	</entry>

	</feed>