diff --git a/Chapter_8/statistical-physics.ipynb b/Chapter_8/statistical-physics.ipynb index 41ef520..0f86f4a 100644 --- a/Chapter_8/statistical-physics.ipynb +++ b/Chapter_8/statistical-physics.ipynb @@ -420,9 +420,10 @@ "**Maxwell speed distribution**\n", "```\n", "\n", - "\\begin{align}\n", + "```{math}\n", + ":label: Maxwell_speed\n", "F(v)\\ dv = 4\\pi Ce^{-\\frac{1}{2}\\beta m v^2}v^2\\ dv.\n", - "\\end{align}\n", + "```\n", "\n", "The Maxwell speed distribution as derived from purely classical considerations, where it gives a nonzero probability of finding a particle with a speed greater than $c$. Therefore, it is only valid in the classical limit.\n", "\n", @@ -699,10 +700,217 @@ "metadata": {}, "source": [ "## Classical and Quantum Statistics\n", + "The Maxwell speed distribution is only valid in the classical limit, which prohibits its use at exceptionally high temperatures (i.e., gas particle velocities near $c$). An ideal gas is dilute, which means that the gas molecules rarely interact or collide with one another due to their large (relative) separations. When collisions occur, they can be treated as totally elastic, and have no effect on the distributions and mean values.\n", + "\n", + "When the density of matter is higher (i.e., solid or liquids), the assumption of noninteracting particles may no longer be valid. If molecules, atoms, or subatomic particles are closely packed together, the Pauli exclusion principle prevents two particles in identical quantum states from sharing the same s=pace. This limits the allowed energy states of any particle (fermion), which affects the distribution of energies for a system of particles.\n", "\n", "### Classical Distributions\n", + "Because energy levels are fundamental in quantum theory, we rewrite the Maxwell speed distribution in terms of energy rather than velcocity. For a monatomic gas, the energy is all translational kinetic energy. We can use the following relations\n", + "\n", + "\\begin{align}\n", + "E &= \\frac{1}{2}mv^2, \\\\\n", + "dE &= mv dv, \\\\\n", + "dv &= \\frac{dE}{\\sqrt{2mE}}.\n", + "\\end{align}\n", + "\n", + "Similar to our derivation of the Maxwell speed distribution (see Eq.{eq}`Maxwell_speed`), we can transform $F(v) \\rightarrow F(E)$,\n", + "\n", + "```{margin}\n", + "**Maxwell-Boltzmann energy distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "F(v)\\ dv &= 4\\pi C e^{-\\frac{1}{2}\\beta mv^2}v^2\\ dv, \\\\\n", + "&= 4\\pi C e^{-\\beta E}\\left( \\frac{2E}{m}\\right) \\frac{dE}{\\sqrt{2mE}}, \\\\\n", + "&= \\frac{8\\pi C}{\\sqrt{2m^3}} e^{-\\beta E}\\sqrt{E}\\ dE.\n", + "\\end{align}\n", + "\n", + "to get the **Maxwell-Boltzmann energy distribution**. The factor $e^{-\\beta E}$ is important because Boltzmann showed that this factor is a characteristic of any classical system, regardless of how quantities other than molecular speeds may affect the energy of a given state. We define the **Maxwell-Boltzmann factor** for classical systems as\n", + "\n", + "```{margin}\n", + "**Maxwell-Boltzmann factor**\n", + "```\n", + "\n", + "\\begin{align}\n", + "F_{\\rm MB} = Ae^{-\\beta E},\n", + "\\end{align}\n", + "\n", + "where $A$ is a normalization constant. The energy distribution for a classical system will then have the form\n", + "\n", + "\\begin{align}\n", + "n(E) = g(E)F_{\\rm MB},\n", + "\\end{align}\n", + "\n", + "where $n(E)$ is a distribution that represents the number of particles within a bin of energy from $E$ to $E+dE$.\n", + "\n", + "The function $g(E)$ is known as the **density of states**, or the number of states available per unit energy range. The density of states is an essential element in al distributions. The factor $F_{\\rm MB}$ is the relative probability that an energy state is occupied at a given temperature.\n", + "\n", + "### Quantum Distributions\n", + "In quantum theory, particles are described by wave functions. Indentical particles cannot be distinguished from one another if there is a significant overlap of their wave functions. It is this characteristic that makes quantum statistics different from classical stastics.\n", + "\n", + "**Suppose that we have a system of just two particles.** Each particle has an equal probability (0.5) of existing in either of two energy states. If the particles are distinguishable (e.g., labeled A and B), then the possible configurations are\n", + "\n", + "1. Both in state 1,\n", + "2. Either A or B in each state, but not together, or\n", + "3. Both in state 2.\n", + "\n", + "These configurations can be illustrated using a probability table:\n", + "\n", + "```{table} Probability Table of Two Particles (A & B)\n", + ":width: 250px\n", + ":align: center\n", + "\n", + "| **State 1** \t| **State 2** \t|\n", + "|-------------\t|-------------\t|\n", + "| AB \t| \t|\n", + "| A \t| B \t|\n", + "| B \t| A \t|\n", + "| \t| AB \t|\n", + "\n", + "```\n", + "\n", + "Each of the four configurations are equally likely, where the probability of each is one-fourth (0.25). If the two particles are indistinguishable, then our probability table changes:\n", + "\n", + "```{table} Probability Table of Two Indistinguishable Particles\n", + ":width: 250px\n", + ":align: center\n", + "\n", + "| **State 1** \t| **State 2** \t|\n", + "|-------------\t|-------------\t|\n", + "| XX \t| \t|\n", + "| X \t| X \t|\n", + "| \t| XX \t|\n", + "\n", + "```\n", + "\n", + "Now there are only three equally likely configurations, where each have a probability of one-third (${\\sim}0.33$).\n", + "\n", + "Two kinds of quantum distributions are needed because some particles obey the Pauli exclusion principle and others do not. \n", + "\n", + "- Particles that obey the Pauli exclusion princple have half-integers spins and are called **fermions**. Protons, neutrons, and electrons are examples of fermions. \n", + "- Particles with zero or integer spins do not obey the Pauli exclusion principle and are known as **bosons**. Photons and pions are examples of bosons.\n", + "\n", + "```{note}\n", + "Atoms and molecules consisting of an even number of fermions must be bosons when considered as a whole, because their total spin will be zero or an integer. Conversely, atoms and molecules with an odd number of fermions are fermions.\n", + "```\n", + "\n", + "The probability distribution of fermions are given by the **Fermi-Dirac distribution**:\n", + "\n", + "```{margin}\n", + "**Fermi-Dirac distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "n(E) &= g(E)F_{\\rm FD},\\ \\qquad \\text{where } \\\\\n", + "F_{\\rm FD} &= \\frac{1}{B_{\\rm FD}\\ e^{\\beta E}+1}.\n", + "\\end{align}\n", + "\n", + "Similarly the **Bose-Einstein distribution** is valid for bosons and is\n", + "\n", + "```{margin}\n", + "**Bose-Einstein distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "n(E) &= g(E)F_{\\rm BE},\\ \\qquad \\text{where } \\\\\n", + "F_{\\rm BE} &= \\frac{1}{B_{\\rm BE}\\ e^{\\beta E}-1}.\n", + "\\end{align}\n", + "\n", + "In each case $B_i$ ($B_{\\rm FD}$ or $B_{\\rm BE}$) represents a normalization factor, and $g(E)$ is the density of states appropriate for a particular situation.\n", + "\n", + "```{note}\n", + "The Fermi-Dirac and Bose-Einstein distributions look very similar, where they differ only by the normalization constant and by the sign attached to the $1$ in the denominator.\n", + "```\n", + "\n", + "Both the Fermi-Dirac and Bose-Einstein distributions reduce to the classical Maxwell-Boltzmann distribution when $B_ie^{\\beta E} \\gg 1$ $(\\text{recall }x\\pm 1 \\approx x$ for $x\\gg 1)$ and $A = 1/B_i$. This means that the Maxwell-Boltzmann factor is much less than 1 (i.e., the probability that a particular energy state will be occupied is much less than 1).\n", + "\n", + "```{table} Classical and Quantum Distributions\n", + ":width: 600px\n", + ":align: center\n", + "\n", + "| Distributions \t| Properties \t| Examples \t| Function \t|\n", + "|-------------------\t|--------------------------------------------------------\t|-------------------------------\t|--------------------------------------------------\t|\n", + "| Maxwell-Boltzmann \t| Identical,
distinguishable \t| Ideal gases \t| $F_{\\rm MB} = Ae^{-\\beta E}$ \t|\n", + "| Bose-Einstein \t| Identical, indistinguishable
with integer spin \t| Liquid $\\rm ^4He$,
photons \t| $F_{\\rm BE} = \\frac{1}{B_{\\rm BE}\\ e^{\\beta E}-1}$ \t|\n", + "| Fermi-Dirac \t| Identical, indistinguishable
with half-integer spin \t| Electron gas \t| $F_{\\rm FD} = \\frac{1}{B_{\\rm FD}\\ e^{\\beta E}+1}$ \t|\n", + "```\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```{exercise}\n", + ":class: orange\n", + "\n", + "**Assume that the Maxwell-Boltmann distribution is valid in a gas of atomic hydrogen. What is the relative number of atoms in the ground state and first excited state at: $293\\ {\\rm K}$, $5000\\ {\\rm K}$, and $10^6\\ {\\rm K}$?**\n", + "\n", + "The relative number of atoms between the ground and first excited states can be determined by using the ratio of $n(E_2)$ to $n(E_1)$. Mathematically this is given as\n", + "\n", + "\\begin{align}\n", + "\\frac{n(E_2)}{n(E_1)} &= \\frac{g(E_2)}{g(E_1)} e^{-\\beta(E_2-E1)},\n", + "\\end{align}\n", + "\n", + "where the density of states $g(E_1) = 2$ for the ground state (spin up or down) and $g(E_2) = 8$ for the first excited state (see [Electron shells](https://en.wikipedia.org/wiki/Electron_shell)). For atomic hydrogen, $E_2-E_1 = 10.2\\ {\\rm eV}$. Putting this together we can write\n", + "\n", + "\\begin{align*}\n", + "\\frac{n(E_2)}{n(E_1)} &= \\frac{8}{2} e^{-\\frac{10.2\\ {\\rm eV}}{kT}} = 4e^{-\\frac{10.2\\ {\\rm eV}}{kT}},\n", + "\\end{align*}\n", + "\n", + "for a given temperature $T$. Using the Boltzmann constant in $\\rm eV/K$, we can easily calculate the relative numbers as\n", + "\n", + "\\begin{align*}\n", + "\\frac{n(E_2)}{n(E_1)} &=& 4e^{-404} &\\approx& 10^{-175}, \\quad & \\text{for }T = 293\\ {\\rm K}, \\\\\n", + "&=& 4e^{-23.7}\\quad &\\approx& 2\\times 10^{-10}, \\quad & \\text{for }T = 5000\\ {\\rm K}, \\\\\n", + "&=& 4e^{-0.118} &\\approx& 3.55, \\quad & \\text{for }T = 10^6\\ {\\rm K}.\n", + "\\end{align*}\n", + "\n", + "At very high temperatures, the exponential factor approaches 1, so the result simply approaches the ratio of the density of states.\n", + "```\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-404.14892253761053\n", + "The relative number of atoms at 293 K is 1.21e-175.\n", + "-23.683126860703975\n", + "The relative number of atoms at 293 K is 2.07e-10.\n", + "-0.11841563430351988\n", + "The relative number of atoms at 293 K is 3.55.\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "from scipy.constants import physical_constants \n", + "\n", + "##For atomic hydrogen only\n", + "\n", + "def energy(n):\n", + " #n = energy level\n", + " return -E_o/n**2 #energy in eV\n", + "\n", + "def relative_states(n1,n2,T):\n", + " #n2 = energy level 2; n2 > n1\n", + " #n1 = energy level 1\n", + " #T = temperature in K\n", + " g2, g1 = 2*n2**2, 2*n1**2\n", + " E2,E1 = energy(n2),energy(n1)\n", + " return (g2/g1)*np.exp(-(E2-E1)/(k_eV*T))\n", + "\n", + "k_eV = physical_constants['Boltzmann constant in eV/K'][0]\n", + "E_o = physical_constants['Rydberg constant times hc in eV'][0]\n", "\n", - "### Quantum Distributions" + "print(\"The relative number of atoms at 293 K is %1.2e.\" % relative_states(1,2,293))\n", + "print(\"The relative number of atoms at 293 K is %1.2e.\" % relative_states(1,2,5000))\n", + "print(\"The relative number of atoms at 293 K is %1.2f.\" % relative_states(1,2,1e6))" ] }, { diff --git a/docs/Chapter_8/statistical-physics.html b/docs/Chapter_8/statistical-physics.html index dbcc7b2..acf4b2a 100644 --- a/docs/Chapter_8/statistical-physics.html +++ b/docs/Chapter_8/statistical-physics.html @@ -537,18 +537,18 @@

8.2. Maxwell Velocity Distribution

where \(d^3\vec{v} = dv_x\ dv_y\ dv_z\), or a volume element in the phase space. The product of a velocity distribution funciton with a phase space volume plays a role analogous to the probability density \(\Psi^*\Psi\) in quantum theory.

Maxwell proved that the probability distribution funciton is proportional to \(e^{-mv^2/(2kT)}\), where \(m\) is the molecular mass, \(v\) is the molecular speed, \(k\) is Boltzmann’s constant, and \(T\) is the absolute temperature. Then, we may write

-
-(8.1)#\[\begin{align} +
+(8.1)#\[\begin{align} f(\vec{v})\ d^3\vec{v} = Ce^{-\frac{1}{2}\beta mv^2}\ d^3\vec{v}, \end{align}\]

where \(C\) is aproportionality factor and \(\beta \equiv (kT)^{-1}\); not to be confused with \(\beta = v/c\) from relativity. We can expand the above expression as

-
-(8.2)#\[\begin{align} +
+(8.2)#\[\begin{align} f(\vec{v})\ d^3\vec{v} = Ce^{-\frac{1}{2}\beta m(v_x^2+v_y^2+v_z^2)}\ d^3\vec{v}, \end{align}\]

and use the properties of exponents to rewrite as three factors that each contain one of the three velocity components. They are defined as

-
-(8.3)#\[\begin{align} +
+(8.3)#\[\begin{align} g(v_x)\ dv_x &\equiv C^\prime e^{-\frac{1}{2}\beta mv_x^2}\ dv_x, \\ g(v_y)\ dv_y &\equiv C^\prime e^{-\frac{1}{2}\beta mv_y^2}\ dv_y, \\ g(v_z)\ dv_z &\equiv C^\prime e^{-\frac{1}{2}\beta mv_z^2}\ dv_z, @@ -595,24 +595,24 @@

8.2. Maxwell Velocity Distribution

Recalling that \(a=\beta m/2\), we have

-
-(8.6)#\[\begin{align} +
+(8.6)#\[\begin{align} C^\prime &= \frac{1}{2}\sqrt{\frac{4a}{\pi}}, \\ &= \frac{1}{2}\sqrt{\frac{2\beta m}{\pi}} = \sqrt{\frac{\beta m}{2\pi}}, \end{align}\]

and

-
-(8.7)#\[\begin{align} +
+(8.7)#\[\begin{align} g(v_x)\ dv_x = \sqrt{\frac{\beta m}{2\pi}} e^{-\frac{1}{2}\beta mv_x^2}\ dv_x. \end{align}\]

With this distribution we can calculate \(\bar{v}_x\) (mean value of \(v_x\)) as

-
-(8.8)#\[\begin{align} +
+(8.8)#\[\begin{align} \bar{v}_x = \int_{-\infty}^\infty v_x\ g(v_x)\ dv_x = C^\prime \int_{-\infty}^\infty v_x e^{-\frac{1}{2}\beta mv_x^2}\ dv_x = 0 \end{align}\]

because \(v_x\) is an odd function. The result makes sense because in a random distribution of velocities one woul expect the velocity components to be evenly distributed about \(v_x = 0\). The mean value of \(v_x^2\) is

-
-(8.9)#\[\begin{align} +
+(8.9)#\[\begin{align} \bar{v}_x^2 &= \int_{-\infty}^\infty v_x^2\ g(v_x)\ dv_x, \\ &= 2C^\prime \int_{0}^\infty v_x^2 e^{-\frac{1}{2}\beta mv_x^2}\ dv_x. \end{align}\]
@@ -627,14 +627,14 @@

8.2. Maxwell Velocity Distribution

Alternatively, one could use an integral table with exponential functions. The final result via substitution is

-
-(8.10)#\[\begin{align} +
+(8.10)#\[\begin{align} \bar{v}_x^2 &= 2C^\prime I_2 = 2 \left(\frac{\beta m}{2\pi}\right)^{1/2} \frac{\sqrt{\pi}}{4}\left(\frac{2}{\beta m}\right)^{3/2}, \\ &= \frac{1}{\beta m} = \frac{kT}{m}. \end{align}\]

There’s nothing special about the \(x\)-direction, so the results for the \(x\)-, \(y\)-, and \(z\)-velocity components are identical. The three components can be summed to find the mean translational kinetic energy \(\overline{K}\) of a molecule:

-
-(8.11)#\[\begin{align} +
+(8.11)#\[\begin{align} \overline{K} = \frac{1}{2}m \left(\bar{v}_x^2 + \bar{v}_y^2 + \bar{v}_z^2\right) = \frac{1}{2}m \left(\frac{3kT}{m}\right) = \frac{3}{2}kT. \end{align}\]

This is one of the principal results of kinetic theory.

@@ -853,8 +853,8 @@

8.4. Maxwell Speed Distribution

The space between \(r\) and \(r+dr\) is a spherical shell, and thus, we must integrate over that volume to transform to the radial distribution. These two distributions are related by the volume of spherical shell, or \(4\pi r^2\). We may write

-
-(8.12)#\[\begin{align} +
+(8.12)#\[\begin{align} F(r)dr = f(x,\ y,\ z) 4\pi r^2\ dr. \end{align}\]

Returning to the problem of the speed distribution \(F(v)\) from the velocity distribution \(f(\vec{v})\). We need to integrate over a spherical shell in the velocity phase space, where we replace \(r\rightarrow v\) from the previous example. The desired speed distribution is

@@ -862,18 +862,16 @@

8.4. Maxwell Speed Distribution

Maxwell speed distribution

-
-(8.13)#\[\begin{align} -F(v)\ dv = 4\pi Ce^{-\frac{1}{2}\beta m v^2}v^2\ dv. -\end{align}\]
+
+(8.13)#\[F(v)\ dv = 4\pi Ce^{-\frac{1}{2}\beta m v^2}v^2\ dv.\]

The Maxwell speed distribution as derived from purely classical considerations, where it gives a nonzero probability of finding a particle with a speed greater than \(c\). Therefore, it is only valid in the classical limit.

The assymetry of the distribution curve leads to an interesting result:

the most probable speed \(v_{\rm mp}\), the mean speed \(\bar{v}\), and the root-mean-square speed \(v_{\rm rms}\) are all slightly different from each other.

To find the most probable speed, we simply find maximum speed in the probabilty curve, or

-
-(8.14)#\[\begin{align} +
+(8.14)#\[\begin{align} \frac{dF}{dv} &= 4\pi C \frac{d}{dv}\left[e^{-\frac{1}{2}\beta m v^2}v^2 \right], \\ &= 2ve^{-\frac{1}{2}\beta m v^2} - \left(\beta m v\right)v^2 e^{-\frac{1}{2}\beta m v^2}. \end{align}\]
@@ -882,8 +880,8 @@

8.4. Maxwell Speed Distribution

Most probable speed \(v_{\rm mp}\)

-
-(8.15)#\[\begin{align} +
+(8.15)#\[\begin{align} 2v_{\rm mp}e^{-\frac{1}{2}\beta m v_{\rm mp}^2} &= \left(\beta m v_{\rm mp}\right)v_{\rm mp}^2 e^{-\frac{1}{2}\beta m v_{\rm mp}^2}, \\ v_{\rm mp} &= \sqrt{\frac{2}{\beta m}} = \sqrt{\frac{2kT}{m}}. \end{align}\]
@@ -910,8 +908,8 @@

8.4. Maxwell Speed Distribution

See a list of integrals containing exponential functions and using \((k=2,\ n=4,\ a=\beta m/2)\) to find

-
-(8.16)#\[\begin{align} +
+(8.16)#\[\begin{align} \overline{v^2} &= 4\pi C \int_0^\infty v^4e^{-\frac{1}{2}\beta m v^2}dv = 4\pi C \left(\frac{3!!}{8a^2}\sqrt{\frac{\pi}{a}}\right), \\ &= 4\pi \left(\frac{\beta m}{2\pi}\right)^{3/2} \frac{3}{2(\beta m)^2} \sqrt{\frac{2\pi}{\beta m}}, \\ &= \frac{3(\beta m)^{3/2}}{(\beta m)^{5/2} } = \frac{3}{\beta m}, \\ @@ -922,8 +920,8 @@

8.4. Maxwell Speed Distribution

Root-mean-square speed \(v_{\rm rms}\)

-
-(8.17)#\[\begin{align} +
+(8.17)#\[\begin{align} v_{\rm rms} = \left(\overline{v^2}\right)^{1/2} = \sqrt{\frac{3kT}{m}} = \sqrt{\frac{3}{2}}v_{\rm mp}. \end{align}\]

A particle moving with the mean squared speed has a kinetic energy

@@ -931,8 +929,8 @@

8.4. Maxwell Speed Distribution

in keeping with our basic law of kinetic theory.

The standard deviation of the molecular speeds \(\sigma_v\) is

-
-(8.18)#\[\begin{align} +
+(8.18)#\[\begin{align} \sigma_v &= \left(\overline{v^2} - \bar{v}^2\right)^{1/2} = \left(\frac{3kT}{m} - \frac{8kT}{m\pi}\right)^{1/2}, \\ &= \left[\frac{(3\pi-8)kT}{m\pi}\right]^{1/2},\\ &= \left[3-\left(\frac{8}{\pi}\right)\right]^{1/2} \sqrt{\frac{kT}{m}}, \\ @@ -947,8 +945,8 @@

8.4. Maxwell Speed Distribution \[ \bar{v} = \frac{2}{\sqrt{\pi}} \sqrt{\frac{2kT}{m}}, \]

which can be applied to each type of gas. The only difference between results will be due to the molar mass \(m\). The molar mass of \(\rm H_2\) is \(2.01568\ {\rm u}\), which is found by multiplying the mass of hydrogen by two. The conversion from atomic mass units \({\rm u}\) to \(\rm kg\) is \(1.660539 \times 10^{-27}\ {\rm kg/u}\). Let’s re-write the mean molecular speed so that all the physical constants are combined and so that we can use atomic mass units directly. This gives

-
-(8.19)#\[\begin{align} +
+(8.19)#\[\begin{align} \bar{v} = \left(2\sqrt{\frac{2k}{\pi u}}\right)\sqrt{\frac{T\ \text{(in K)}}{m\ \text{(in u)}}} = 145.5081\sqrt{\frac{T}{m}}. \end{align}\]

Then, we compute the mean molecular speed for molecular hydrogen \(\rm H_2\) as

@@ -1010,8 +1008,8 @@

8.4. Maxwell Speed Distribution

What fraction of the molecules in an ideal gas in equilibrium has speeds with \(\pm1\%\) of the most probable speed \(v_{\rm mp}\)?

The Maxwell speed distribution function provides the probability of finding a particle within an interval of speeds. The fraction of molecules within the a given speed interval is equal to the integrated probability over the interval. Mathematically, this is expressed by the number of molecules at a particular speed \(N(v)\):

-
-(8.20)#\[\begin{align} +
+(8.20)#\[\begin{align} P(\pm1\%) = \frac{N(1.01v_{\rm mp})-N(0.99v_{\rm mp})}{N} = \int_{0.99v_{\rm mp}}^{1.01v_{\rm mp}} F(v)dv. \end{align}\]

The indefinite integral introduces the error function, which is beyond the scope of this course. However, we can obtain an approximate solution by calculating \(F(v_{\rm mp})\) and multiplying by \(dv \approx \Delta v = 0.02v_{\rm mp}\). This solution works for a small window, where wider intervals are easily evaluated using numerical methods (e.g., Simpson’s rule).

@@ -1085,11 +1083,221 @@

8.4. Maxwell Speed Distribution

8.5. Classical and Quantum Statistics#

+

The Maxwell speed distribution is only valid in the classical limit, which prohibits its use at exceptionally high temperatures (i.e., gas particle velocities near \(c\)). An ideal gas is dilute, which means that the gas molecules rarely interact or collide with one another due to their large (relative) separations. When collisions occur, they can be treated as totally elastic, and have no effect on the distributions and mean values.

+

When the density of matter is higher (i.e., solid or liquids), the assumption of noninteracting particles may no longer be valid. If molecules, atoms, or subatomic particles are closely packed together, the Pauli exclusion principle prevents two particles in identical quantum states from sharing the same s=pace. This limits the allowed energy states of any particle (fermion), which affects the distribution of energies for a system of particles.

8.5.1. Classical Distributions#

+

Because energy levels are fundamental in quantum theory, we rewrite the Maxwell speed distribution in terms of energy rather than velcocity. For a monatomic gas, the energy is all translational kinetic energy. We can use the following relations

+
+(8.21)#\[\begin{align} +E &= \frac{1}{2}mv^2, \\ +dE &= mv dv, \\ +dv &= \frac{dE}{\sqrt{2mE}}. +\end{align}\]
+

Similar to our derivation of the Maxwell speed distribution (see Eq.(8.13)), we can transform \(F(v) \rightarrow F(E)\),

+ +
+(8.22)#\[\begin{align} +F(v)\ dv &= 4\pi C e^{-\frac{1}{2}\beta mv^2}v^2\ dv, \\ +&= 4\pi C e^{-\beta E}\left( \frac{2E}{m}\right) \frac{dE}{\sqrt{2mE}}, \\ +&= \frac{8\pi C}{\sqrt{2m^3}} e^{-\beta E}\sqrt{E}\ dE. +\end{align}\]
+

to get the Maxwell-Boltzmann energy distribution. The factor \(e^{-\beta E}\) is important because Boltzmann showed that this factor is a characteristic of any classical system, regardless of how quantities other than molecular speeds may affect the energy of a given state. We define the Maxwell-Boltzmann factor for classical systems as

+ +
+(8.23)#\[\begin{align} +F_{\rm MB} = Ae^{-\beta E}, +\end{align}\]
+

where \(A\) is a normalization constant. The energy distribution for a classical system will then have the form

+
+(8.24)#\[\begin{align} +n(E) = g(E)F_{\rm MB}, +\end{align}\]
+

where \(n(E)\) is a distribution that represents the number of particles within a bin of energy from \(E\) to \(E+dE\).

+

The function \(g(E)\) is known as the density of states, or the number of states available per unit energy range. The density of states is an essential element in al distributions. The factor \(F_{\rm MB}\) is the relative probability that an energy state is occupied at a given temperature.

8.5.2. Quantum Distributions#

+

In quantum theory, particles are described by wave functions. Indentical particles cannot be distinguished from one another if there is a significant overlap of their wave functions. It is this characteristic that makes quantum statistics different from classical stastics.

+

Suppose that we have a system of just two particles. Each particle has an equal probability (0.5) of existing in either of two energy states. If the particles are distinguishable (e.g., labeled A and B), then the possible configurations are

+
    +
  1. Both in state 1,

  2. +
  3. Either A or B in each state, but not together, or

  4. +
  5. Both in state 2.

  6. +
+

These configurations can be illustrated using a probability table:

+ + + + + + + + + + + + + + + + + + + + + +
Table 8.2 Probability Table of Two Particles (A & B)#

State 1

State 2

AB

A

B

B

A

AB

+

Each of the four configurations are equally likely, where the probability of each is one-fourth (0.25). If the two particles are indistinguishable, then our probability table changes:

+ + + + + + + + + + + + + + + + + + +
Table 8.3 Probability Table of Two Indistinguishable Particles#

State 1

State 2

XX

X

X

XX

+

Now there are only three equally likely configurations, where each have a probability of one-third (\({\sim}0.33\)).

+

Two kinds of quantum distributions are needed because some particles obey the Pauli exclusion principle and others do not.

+
    +
  • Particles that obey the Pauli exclusion princple have half-integers spins and are called fermions. Protons, neutrons, and electrons are examples of fermions.

  • +
  • Particles with zero or integer spins do not obey the Pauli exclusion principle and are known as bosons. Photons and pions are examples of bosons.

  • +
+
+

Note

+

Atoms and molecules consisting of an even number of fermions must be bosons when considered as a whole, because their total spin will be zero or an integer. Conversely, atoms and molecules with an odd number of fermions are fermions.

+
+

The probability distribution of fermions are given by the Fermi-Dirac distribution:

+ +
+(8.25)#\[\begin{align} +n(E) &= g(E)F_{\rm FD},\ \qquad \text{where } \\ +F_{\rm FD} &= \frac{1}{B_{\rm FD}\ e^{\beta E}+1}. +\end{align}\]
+

Similarly the Bose-Einstein distribution is valid for bosons and is

+ +
+(8.26)#\[\begin{align} +n(E) &= g(E)F_{\rm BE},\ \qquad \text{where } \\ +F_{\rm BE} &= \frac{1}{B_{\rm BE}\ e^{\beta E}-1}. +\end{align}\]
+

In each case \(B_i\) (\(B_{\rm FD}\) or \(B_{\rm BE}\)) represents a normalization factor, and \(g(E)\) is the density of states appropriate for a particular situation.

+
+

Note

+

The Fermi-Dirac and Bose-Einstein distributions look very similar, where they differ only by the normalization constant and by the sign attached to the \(1\) in the denominator.

+
+

Both the Fermi-Dirac and Bose-Einstein distributions reduce to the classical Maxwell-Boltzmann distribution when \(B_ie^{\beta E} \gg 1\) \((\text{recall }x\pm 1 \approx x\) for \(x\gg 1)\) and \(A = 1/B_i\). This means that the Maxwell-Boltzmann factor is much less than 1 (i.e., the probability that a particular energy state will be occupied is much less than 1).

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 8.4 Classical and Quantum Distributions#

Distributions

Properties

Examples

Function

Maxwell-Boltzmann

Identical,
distinguishable

Ideal gases

\(F_{\rm MB} = Ae^{-\beta E}\)

Bose-Einstein

Identical, indistinguishable
with integer spin

Liquid \(\rm ^4He\),
photons

\(F_{\rm BE} = \frac{1}{B_{\rm BE}\ e^{\beta E}-1}\)

Fermi-Dirac

Identical, indistinguishable
with half-integer spin

Electron gas

\(F_{\rm FD} = \frac{1}{B_{\rm FD}\ e^{\beta E}+1}\)

+
+ +

Exercise 8.5

+
+

Assume that the Maxwell-Boltmann distribution is valid in a gas of atomic hydrogen. What is the relative number of atoms in the ground state and first excited state at: \(293\ {\rm K}\), \(5000\ {\rm K}\), and \(10^6\ {\rm K}\)?

+

The relative number of atoms between the ground and first excited states can be determined by using the ratio of \(n(E_2)\) to \(n(E_1)\). Mathematically this is given as

+
+(8.27)#\[\begin{align} +\frac{n(E_2)}{n(E_1)} &= \frac{g(E_2)}{g(E_1)} e^{-\beta(E_2-E1)}, +\end{align}\]
+

where the density of states \(g(E_1) = 2\) for the ground state (spin up or down) and \(g(E_2) = 8\) for the first excited state (see Electron shells). For atomic hydrogen, \(E_2-E_1 = 10.2\ {\rm eV}\). Putting this together we can write

+
+\[\begin{align*} +\frac{n(E_2)}{n(E_1)} &= \frac{8}{2} e^{-\frac{10.2\ {\rm eV}}{kT}} = 4e^{-\frac{10.2\ {\rm eV}}{kT}}, +\end{align*}\]
+

for a given temperature \(T\). Using the Boltzmann constant in \(\rm eV/K\), we can easily calculate the relative numbers as

+
+\[\begin{align*} +\frac{n(E_2)}{n(E_1)} &=& 4e^{-404} &\approx& 10^{-175}, \quad & \text{for }T = 293\ {\rm K}, \\ +&=& 4e^{-23.7}\quad &\approx& 2\times 10^{-10}, \quad & \text{for }T = 5000\ {\rm K}, \\ +&=& 4e^{-0.118} &\approx& 3.55, \quad & \text{for }T = 10^6\ {\rm K}. +\end{align*}\]
+

At very high temperatures, the exponential factor approaches 1, so the result simply approaches the ratio of the density of states.

+
+
+
+
+
import numpy as np
+from scipy.constants import physical_constants 
+
+##For atomic hydrogen only
+
+def energy(n):
+    #n = energy level
+    return -E_o/n**2 #energy in eV
+
+def relative_states(n1,n2,T):
+    #n2 = energy level 2; n2 > n1
+    #n1 = energy level 1
+    #T = temperature in K
+    g2, g1 = 2*n2**2, 2*n1**2
+    E2,E1 = energy(n2),energy(n1)
+    return (g2/g1)*np.exp(-(E2-E1)/(k_eV*T))
+
+k_eV = physical_constants['Boltzmann constant in eV/K'][0]
+E_o = physical_constants['Rydberg constant times hc in eV'][0]
+
+print("The relative number of atoms at 293 K is %1.2e." % relative_states(1,2,293))
+print("The relative number of atoms at 293 K is %1.2e." % relative_states(1,2,5000))
+print("The relative number of atoms at 293 K is %1.2f." % relative_states(1,2,1e6))
+
+
+
+
+
The relative number of atoms at 293 K is 1.21e-175.
+The relative number of atoms at 293 K is 2.07e-10.
+The relative number of atoms at 293 K is 3.55.
+
+
+
+
diff --git a/docs/_sources/Chapter_8/statistical-physics.ipynb b/docs/_sources/Chapter_8/statistical-physics.ipynb index 41ef520..0f86f4a 100644 --- a/docs/_sources/Chapter_8/statistical-physics.ipynb +++ b/docs/_sources/Chapter_8/statistical-physics.ipynb @@ -420,9 +420,10 @@ "**Maxwell speed distribution**\n", "```\n", "\n", - "\\begin{align}\n", + "```{math}\n", + ":label: Maxwell_speed\n", "F(v)\\ dv = 4\\pi Ce^{-\\frac{1}{2}\\beta m v^2}v^2\\ dv.\n", - "\\end{align}\n", + "```\n", "\n", "The Maxwell speed distribution as derived from purely classical considerations, where it gives a nonzero probability of finding a particle with a speed greater than $c$. Therefore, it is only valid in the classical limit.\n", "\n", @@ -699,10 +700,217 @@ "metadata": {}, "source": [ "## Classical and Quantum Statistics\n", + "The Maxwell speed distribution is only valid in the classical limit, which prohibits its use at exceptionally high temperatures (i.e., gas particle velocities near $c$). An ideal gas is dilute, which means that the gas molecules rarely interact or collide with one another due to their large (relative) separations. When collisions occur, they can be treated as totally elastic, and have no effect on the distributions and mean values.\n", + "\n", + "When the density of matter is higher (i.e., solid or liquids), the assumption of noninteracting particles may no longer be valid. If molecules, atoms, or subatomic particles are closely packed together, the Pauli exclusion principle prevents two particles in identical quantum states from sharing the same s=pace. This limits the allowed energy states of any particle (fermion), which affects the distribution of energies for a system of particles.\n", "\n", "### Classical Distributions\n", + "Because energy levels are fundamental in quantum theory, we rewrite the Maxwell speed distribution in terms of energy rather than velcocity. For a monatomic gas, the energy is all translational kinetic energy. We can use the following relations\n", + "\n", + "\\begin{align}\n", + "E &= \\frac{1}{2}mv^2, \\\\\n", + "dE &= mv dv, \\\\\n", + "dv &= \\frac{dE}{\\sqrt{2mE}}.\n", + "\\end{align}\n", + "\n", + "Similar to our derivation of the Maxwell speed distribution (see Eq.{eq}`Maxwell_speed`), we can transform $F(v) \\rightarrow F(E)$,\n", + "\n", + "```{margin}\n", + "**Maxwell-Boltzmann energy distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "F(v)\\ dv &= 4\\pi C e^{-\\frac{1}{2}\\beta mv^2}v^2\\ dv, \\\\\n", + "&= 4\\pi C e^{-\\beta E}\\left( \\frac{2E}{m}\\right) \\frac{dE}{\\sqrt{2mE}}, \\\\\n", + "&= \\frac{8\\pi C}{\\sqrt{2m^3}} e^{-\\beta E}\\sqrt{E}\\ dE.\n", + "\\end{align}\n", + "\n", + "to get the **Maxwell-Boltzmann energy distribution**. The factor $e^{-\\beta E}$ is important because Boltzmann showed that this factor is a characteristic of any classical system, regardless of how quantities other than molecular speeds may affect the energy of a given state. We define the **Maxwell-Boltzmann factor** for classical systems as\n", + "\n", + "```{margin}\n", + "**Maxwell-Boltzmann factor**\n", + "```\n", + "\n", + "\\begin{align}\n", + "F_{\\rm MB} = Ae^{-\\beta E},\n", + "\\end{align}\n", + "\n", + "where $A$ is a normalization constant. The energy distribution for a classical system will then have the form\n", + "\n", + "\\begin{align}\n", + "n(E) = g(E)F_{\\rm MB},\n", + "\\end{align}\n", + "\n", + "where $n(E)$ is a distribution that represents the number of particles within a bin of energy from $E$ to $E+dE$.\n", + "\n", + "The function $g(E)$ is known as the **density of states**, or the number of states available per unit energy range. The density of states is an essential element in al distributions. The factor $F_{\\rm MB}$ is the relative probability that an energy state is occupied at a given temperature.\n", + "\n", + "### Quantum Distributions\n", + "In quantum theory, particles are described by wave functions. Indentical particles cannot be distinguished from one another if there is a significant overlap of their wave functions. It is this characteristic that makes quantum statistics different from classical stastics.\n", + "\n", + "**Suppose that we have a system of just two particles.** Each particle has an equal probability (0.5) of existing in either of two energy states. If the particles are distinguishable (e.g., labeled A and B), then the possible configurations are\n", + "\n", + "1. Both in state 1,\n", + "2. Either A or B in each state, but not together, or\n", + "3. Both in state 2.\n", + "\n", + "These configurations can be illustrated using a probability table:\n", + "\n", + "```{table} Probability Table of Two Particles (A & B)\n", + ":width: 250px\n", + ":align: center\n", + "\n", + "| **State 1** \t| **State 2** \t|\n", + "|-------------\t|-------------\t|\n", + "| AB \t| \t|\n", + "| A \t| B \t|\n", + "| B \t| A \t|\n", + "| \t| AB \t|\n", + "\n", + "```\n", + "\n", + "Each of the four configurations are equally likely, where the probability of each is one-fourth (0.25). If the two particles are indistinguishable, then our probability table changes:\n", + "\n", + "```{table} Probability Table of Two Indistinguishable Particles\n", + ":width: 250px\n", + ":align: center\n", + "\n", + "| **State 1** \t| **State 2** \t|\n", + "|-------------\t|-------------\t|\n", + "| XX \t| \t|\n", + "| X \t| X \t|\n", + "| \t| XX \t|\n", + "\n", + "```\n", + "\n", + "Now there are only three equally likely configurations, where each have a probability of one-third (${\\sim}0.33$).\n", + "\n", + "Two kinds of quantum distributions are needed because some particles obey the Pauli exclusion principle and others do not. \n", + "\n", + "- Particles that obey the Pauli exclusion princple have half-integers spins and are called **fermions**. Protons, neutrons, and electrons are examples of fermions. \n", + "- Particles with zero or integer spins do not obey the Pauli exclusion principle and are known as **bosons**. Photons and pions are examples of bosons.\n", + "\n", + "```{note}\n", + "Atoms and molecules consisting of an even number of fermions must be bosons when considered as a whole, because their total spin will be zero or an integer. Conversely, atoms and molecules with an odd number of fermions are fermions.\n", + "```\n", + "\n", + "The probability distribution of fermions are given by the **Fermi-Dirac distribution**:\n", + "\n", + "```{margin}\n", + "**Fermi-Dirac distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "n(E) &= g(E)F_{\\rm FD},\\ \\qquad \\text{where } \\\\\n", + "F_{\\rm FD} &= \\frac{1}{B_{\\rm FD}\\ e^{\\beta E}+1}.\n", + "\\end{align}\n", + "\n", + "Similarly the **Bose-Einstein distribution** is valid for bosons and is\n", + "\n", + "```{margin}\n", + "**Bose-Einstein distribution**\n", + "```\n", + "\n", + "\\begin{align}\n", + "n(E) &= g(E)F_{\\rm BE},\\ \\qquad \\text{where } \\\\\n", + "F_{\\rm BE} &= \\frac{1}{B_{\\rm BE}\\ e^{\\beta E}-1}.\n", + "\\end{align}\n", + "\n", + "In each case $B_i$ ($B_{\\rm FD}$ or $B_{\\rm BE}$) represents a normalization factor, and $g(E)$ is the density of states appropriate for a particular situation.\n", + "\n", + "```{note}\n", + "The Fermi-Dirac and Bose-Einstein distributions look very similar, where they differ only by the normalization constant and by the sign attached to the $1$ in the denominator.\n", + "```\n", + "\n", + "Both the Fermi-Dirac and Bose-Einstein distributions reduce to the classical Maxwell-Boltzmann distribution when $B_ie^{\\beta E} \\gg 1$ $(\\text{recall }x\\pm 1 \\approx x$ for $x\\gg 1)$ and $A = 1/B_i$. This means that the Maxwell-Boltzmann factor is much less than 1 (i.e., the probability that a particular energy state will be occupied is much less than 1).\n", + "\n", + "```{table} Classical and Quantum Distributions\n", + ":width: 600px\n", + ":align: center\n", + "\n", + "| Distributions \t| Properties \t| Examples \t| Function \t|\n", + "|-------------------\t|--------------------------------------------------------\t|-------------------------------\t|--------------------------------------------------\t|\n", + "| Maxwell-Boltzmann \t| Identical,
distinguishable \t| Ideal gases \t| $F_{\\rm MB} = Ae^{-\\beta E}$ \t|\n", + "| Bose-Einstein \t| Identical, indistinguishable
with integer spin \t| Liquid $\\rm ^4He$,
photons \t| $F_{\\rm BE} = \\frac{1}{B_{\\rm BE}\\ e^{\\beta E}-1}$ \t|\n", + "| Fermi-Dirac \t| Identical, indistinguishable
with half-integer spin \t| Electron gas \t| $F_{\\rm FD} = \\frac{1}{B_{\\rm FD}\\ e^{\\beta E}+1}$ \t|\n", + "```\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```{exercise}\n", + ":class: orange\n", + "\n", + "**Assume that the Maxwell-Boltmann distribution is valid in a gas of atomic hydrogen. What is the relative number of atoms in the ground state and first excited state at: $293\\ {\\rm K}$, $5000\\ {\\rm K}$, and $10^6\\ {\\rm K}$?**\n", + "\n", + "The relative number of atoms between the ground and first excited states can be determined by using the ratio of $n(E_2)$ to $n(E_1)$. Mathematically this is given as\n", + "\n", + "\\begin{align}\n", + "\\frac{n(E_2)}{n(E_1)} &= \\frac{g(E_2)}{g(E_1)} e^{-\\beta(E_2-E1)},\n", + "\\end{align}\n", + "\n", + "where the density of states $g(E_1) = 2$ for the ground state (spin up or down) and $g(E_2) = 8$ for the first excited state (see [Electron shells](https://en.wikipedia.org/wiki/Electron_shell)). For atomic hydrogen, $E_2-E_1 = 10.2\\ {\\rm eV}$. Putting this together we can write\n", + "\n", + "\\begin{align*}\n", + "\\frac{n(E_2)}{n(E_1)} &= \\frac{8}{2} e^{-\\frac{10.2\\ {\\rm eV}}{kT}} = 4e^{-\\frac{10.2\\ {\\rm eV}}{kT}},\n", + "\\end{align*}\n", + "\n", + "for a given temperature $T$. Using the Boltzmann constant in $\\rm eV/K$, we can easily calculate the relative numbers as\n", + "\n", + "\\begin{align*}\n", + "\\frac{n(E_2)}{n(E_1)} &=& 4e^{-404} &\\approx& 10^{-175}, \\quad & \\text{for }T = 293\\ {\\rm K}, \\\\\n", + "&=& 4e^{-23.7}\\quad &\\approx& 2\\times 10^{-10}, \\quad & \\text{for }T = 5000\\ {\\rm K}, \\\\\n", + "&=& 4e^{-0.118} &\\approx& 3.55, \\quad & \\text{for }T = 10^6\\ {\\rm K}.\n", + "\\end{align*}\n", + "\n", + "At very high temperatures, the exponential factor approaches 1, so the result simply approaches the ratio of the density of states.\n", + "```\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-404.14892253761053\n", + "The relative number of atoms at 293 K is 1.21e-175.\n", + "-23.683126860703975\n", + "The relative number of atoms at 293 K is 2.07e-10.\n", + "-0.11841563430351988\n", + "The relative number of atoms at 293 K is 3.55.\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "from scipy.constants import physical_constants \n", + "\n", + "##For atomic hydrogen only\n", + "\n", + "def energy(n):\n", + " #n = energy level\n", + " return -E_o/n**2 #energy in eV\n", + "\n", + "def relative_states(n1,n2,T):\n", + " #n2 = energy level 2; n2 > n1\n", + " #n1 = energy level 1\n", + " #T = temperature in K\n", + " g2, g1 = 2*n2**2, 2*n1**2\n", + " E2,E1 = energy(n2),energy(n1)\n", + " return (g2/g1)*np.exp(-(E2-E1)/(k_eV*T))\n", + "\n", + "k_eV = physical_constants['Boltzmann constant in eV/K'][0]\n", + "E_o = physical_constants['Rydberg constant times hc in eV'][0]\n", "\n", - "### Quantum Distributions" + "print(\"The relative number of atoms at 293 K is %1.2e.\" % relative_states(1,2,293))\n", + "print(\"The relative number of atoms at 293 K is %1.2e.\" % relative_states(1,2,5000))\n", + "print(\"The relative number of atoms at 293 K is %1.2f.\" % relative_states(1,2,1e6))" ] }, { diff --git a/docs/objects.inv b/docs/objects.inv index 6098214..e4ada17 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/searchindex.js b/docs/searchindex.js index 3275897..3fd7586 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["Chapter_1/birth-of-modern-physics", "Chapter_10/semiconductors", "Chapter_11/nuclear-physics", "Chapter_12/particle-physics", "Chapter_2/special-theory-of-relativity", "Chapter_3/experimental-quantum-physics", "Chapter_4/structure-of-the-atom", "Chapter_5/quantum-mechanics-part1", "Chapter_6/quantum-mechanics-part2", "Chapter_7/hydrogen-atom", "Chapter_8/statistical-physics", "Chapter_9/molecules-and-lasers", "LICENSE", "Preamble/HW_template", "Preamble/Markdown-basics", "Preamble/Python-basics", "Preamble/who-for", "README", "home"], "filenames": ["Chapter_1/birth-of-modern-physics.ipynb", "Chapter_10/semiconductors.ipynb", "Chapter_11/nuclear-physics.ipynb", "Chapter_12/particle-physics.ipynb", "Chapter_2/special-theory-of-relativity.ipynb", "Chapter_3/experimental-quantum-physics.ipynb", "Chapter_4/structure-of-the-atom.ipynb", "Chapter_5/quantum-mechanics-part1.ipynb", "Chapter_6/quantum-mechanics-part2.ipynb", "Chapter_7/hydrogen-atom.ipynb", "Chapter_8/statistical-physics.ipynb", "Chapter_9/molecules-and-lasers.ipynb", "LICENSE.md", "Preamble/HW_template.ipynb", "Preamble/Markdown-basics.ipynb", "Preamble/Python-basics.ipynb", "Preamble/who-for.ipynb", "README.md", "home.md"], "titles": ["1. Birth of Modern Physics", "10. Semiconductors", "11. Nuclear Physics", "12. Particle Physics", "2. Special Theory of Relativity", "3. Experimental Quantum Physics", "4. Structure of the Atom", "5. Quantum Mechanics: Part I", "6. Quantum Mechanics: Part II", "7. The Hydrogen Atom and Atomic Physics", "8. Statistical Physics", "9. Molecules and Lasers", "<no title>", "Homework Assignments", "Introduction to Markdown", "Introduction to Python", "Who are these notes for?", "PHYS2700: Modern Physics", "PHYS2700: Modern Physics"], "terms": {"The": [0, 4, 5, 10, 12, 13, 14, 15, 16, 17, 18], "renaiss": 0, "brought": [0, 10], "greek": [0, 5, 6], "scholar": 0, "e": [0, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16], "g": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "aristotl": 0, "eratosthen": 0, "pythagora": 0, "etc": [0, 8, 14, 15, 16], "back": [0, 4, 5, 6, 8, 15], "forefront": 0, "knowledg": [0, 7, 8, 9, 10], "scientif": [0, 5, 13, 15, 16], "progress": [0, 5, 6, 7], "dure": [0, 4, 5, 9, 15], "ag": [0, 4, 5], "enlighten": 0, "idea": [0, 4, 5, 6, 7, 8, 10], "from": [0, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "antiqu": 0, "further": [0, 5, 6, 9], "result": [0, 4, 6, 7, 8, 9, 10, 12, 13, 15], "print": [0, 4, 5, 6, 7, 8, 9, 10, 15], "competit": 0, "investig": [0, 5, 6, 7], "natur": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "world": [0, 4, 7, 12], "within": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "mathemat": [0, 4, 5, 7, 8, 9, 10, 13, 14], "framework": [0, 7], "characterist": [0, 4, 5, 7, 8, 9], "we": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "would": [0, 4, 5, 6, 7, 8, 9, 10, 15], "call": [0, 4, 5, 6, 7, 8, 9, 10, 15], "todai": [0, 5, 7], "practic": [0, 4, 5, 6, 10, 12, 15], "wa": [0, 4, 5, 6, 7, 8, 9, 10, 15], "us": [0, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16, 17, 18], "euclidean": [0, 4], "geometri": [0, 4], "calculu": [0, 4, 5, 8], "newton": [0, 4, 5, 6, 7, 8, 10, 13], "leibniz": 0, "For": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "physicist": [0, 4, 5, 6, 7, 9, 10], "refin": 0, "subject": [0, 4, 6, 9, 10, 12], "appear": [0, 4, 5, 6, 7, 8, 9], "reliabl": 0, "despit": [0, 6, 10], "consider": [0, 4, 5, 6, 7, 10, 12], "chang": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "occur": [0, 4, 5, 6, 7, 8, 9, 15], "social": 0, "polit": 0, "intellectu": 0, "realm": [0, 7], "western": 0, "europ": [0, 4], "There": [0, 4, 6, 7, 8, 9, 10, 13, 14, 15, 16], "noth": [0, 4, 5, 9, 10, 12, 15], "new": [0, 4, 5, 6, 7, 10, 15], "discov": [0, 4, 5, 6, 7], "now": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "all": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "remain": [0, 4, 5, 6, 7, 10, 12], "more": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "precis": [0, 4, 5, 6, 7, 8, 9, 10, 15], "measur": [0, 5, 6, 7, 8, 9, 10, 12], "william": [0, 7], "thomson": [0, 5, 7], "lord": [0, 5], "kelvin": [0, 5, 7], "scientist": [0, 4, 5, 6, 8, 10, 16, 17, 18], "engin": [0, 5, 16, 17, 18], "late": [0, 4, 6], "19th": [0, 4, 5, 6, 8, 10], "centuri": [0, 4, 5, 6, 8, 10], "believ": [0, 4, 5, 6, 10], "thei": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "had": [0, 4, 5, 6, 7, 9, 10], "everyth": [0, 5, 7, 10, 14, 15], "under": [0, 4, 5, 8, 9, 12, 13, 15, 16, 17, 18], "control": 0, "where": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "best": [0, 4, 5, 6, 7, 8, 9, 10, 15], "dai": [0, 4, 5, 12], "were": [0, 4, 5, 6, 7, 8, 9, 10, 15], "highli": [0, 4, 10], "recogn": [0, 5], "reward": 0, "basic": [0, 4, 5, 6, 7, 10, 15], "research": [0, 4, 5, 6], "import": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "becaus": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "commerci": [0, 4], "militari": 0, "applic": [0, 4, 5, 6, 7, 8, 12, 14, 17, 18], "those": [0, 4, 5, 6, 7, 8, 9, 12, 15], "visionari": 0, "nikola": 0, "tesla": [0, 5], "caus": [0, 5, 7, 9, 15], "mani": [0, 4, 5, 6, 7, 8, 10, 15, 16], "take": [0, 4, 5, 6, 7, 8, 9, 15], "note": [0, 4, 5, 7, 8, 9, 14, 15, 17, 18], "busi": [0, 15], "opportun": 0, "peopl": [0, 5, 10, 15], "began": [0, 5, 6], "travel": [0, 4, 5, 6, 7, 8], "quickli": [0, 4, 5, 8, 15], "one": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "countri": 0, "anoth": [0, 4, 5, 6, 8, 9, 10, 14, 15], "journal": 0, "becom": [0, 4, 5, 6, 7, 8, 9, 10, 15], "access": [0, 12], "some": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16], "most": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "principl": [0, 4, 5, 8, 9, 10], "still": [0, 4, 5, 6, 7, 8, 9, 10, 12], "form": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "describ": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "properti": [0, 4, 5, 6, 7, 9, 10], "initi": [0, 4, 5, 6, 7, 15], "final": [0, 4, 5, 6, 7, 9, 10, 13, 14, 15], "quantiti": [0, 4, 5, 7, 8, 9], "must": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "equal": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "total": [0, 5, 6, 7, 8, 10, 15], "volum": [0, 5, 6, 7, 9, 10], "water": [0, 5, 6, 7, 10], "gallon": 0, "independ": [0, 4, 5, 6, 7, 9, 10, 12, 14], "how": [0, 4, 5, 6, 7, 8, 10, 12, 14, 15], "contain": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "fill": [0, 6, 9, 15], "x": [0, 4, 8, 9, 10, 13, 14, 15], "held": [0, 4, 10, 12], "j": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "sum_j": 0, "x_": [0, 8], "i": [0, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15], "f_": [0, 5, 6], "superscript": [0, 4], "f": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "repres": [0, 4, 5, 6, 7, 8, 9, 13], "state": [0, 6, 7, 8, 10, 12, 17, 18], "respect": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14], "four": [0, 4, 5, 6, 8, 9, 14, 15], "main": [0, 5, 6, 15], "ar": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "sum": [0, 4, 5, 7, 8, 9, 10], "its": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "interact": [0, 4, 5, 6, 7, 9], "linear": [0, 4, 5, 6, 8, 9], "momentum": [0, 5, 6, 7, 8], "In": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "absenc": [0, 9, 12], "extern": [0, 4, 5, 6, 8, 9], "angular": [0, 4, 5, 6, 7, 8, 10], "torqu": [0, 9], "charg": [0, 4, 6, 9], "electr": [0, 4, 5, 6, 7, 8], "A": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "might": [0, 4, 5, 6, 7, 8, 9, 14, 15], "have": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "ad": [0, 4, 5, 6, 7, 10, 15], "mass": [0, 5, 7, 8, 9, 10, 13], "list": [0, 5, 9, 10, 15], "einstein": [0, 6, 7], "s": [0, 6, 8, 9, 10, 12, 13, 14, 15], "special": [0, 5, 6, 7, 8, 9, 10, 12, 15], "rel": [0, 5, 6, 7, 9, 10, 15], "show": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "intim": [0, 6], "connect": [0, 4, 6, 10, 12], "few": [0, 5, 6, 7, 8, 9, 15], "dualiti": [0, 7], "codifi": 0, "famous": 0, "isaac": 0, "postul": [0, 8], "associ": [0, 4, 5, 6, 7, 8, 9, 10], "deriv": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "other": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15], "over": [0, 4, 5, 6, 7, 8, 10, 14, 15], "galileo": 0, "great": [0, 5, 6], "experiment": [0, 6, 7, 9, 10], "he": [0, 4, 5, 6, 7, 8, 9, 10], "concept": [0, 4, 5, 6, 7, 10], "inertia": [0, 10], "galilean": [0, 4, 13], "built": [0, 4, 15], "first": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "telescop": [0, 4], "base": [0, 4, 5, 6, 7, 8, 9, 12], "onli": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "see": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16], "design": [0, 4, 7, 9, 12, 15, 17, 18], "spyglass": 0, "han": [0, 6], "lipperhei": 0, "also": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "pendulum": [0, 8], "least": [0, 4, 5, 6, 9, 10, 15], "small": [0, 4, 5, 6, 7, 8, 9, 10], "amplitud": [0, 7], "relationship": [0, 6, 7, 9, 12, 15], "fall": [0, 5, 6, 7, 10, 15], "object": [0, 4, 5, 7, 8, 9, 13, 15], "hammer": 0, "feather": 0, "though": [0, 5, 6, 7, 8], "experi": [0, 5, 6, 8, 9, 10, 15], "expand": [0, 4, 10, 15], "our": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "present": [0, 4, 5, 7, 8, 10], "understand": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "astronomi": [0, 9, 16], "field": [0, 4, 5, 6, 7, 8], "motion": [0, 4, 5, 6, 8, 9, 10], "gravit": [0, 4, 5, 6, 9], "optic": [0, 4, 5, 6, 7, 8, 9], "understood": [0, 4, 5, 8], "between": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "posit": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "displac": [0, 5, 7, 9], "veloc": [0, 5, 6, 7, 8, 9, 13], "rate": [0, 5, 8], "time": [0, 5, 6, 9, 10, 12, 13, 14, 15], "which": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "could": [0, 4, 5, 6, 7, 8, 10, 12, 15], "appli": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "determin": [0, 4, 6, 7, 8, 9, 10, 15], "bodi": [0, 4, 5, 6, 9, 10], "acceler": [0, 4, 5, 6, 8, 13], "simpli": [0, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15], "being": [0, 6, 7, 8, 9, 15], "rest": [0, 5, 6, 7, 8, 9, 15], "case": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "move": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "constant": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "univers": [0, 4, 5, 6, 7, 9, 10, 17, 18], "huge": 0, "hi": [0, 4, 5, 6, 7, 9, 10], "heaven": 0, "obei": [0, 4, 9], "same": [0, 4, 5, 6, 7, 8, 9, 10, 15], "rule": [0, 4, 5, 6, 7, 8, 10], "mortal": 0, "appl": 0, "earth": [0, 4, 5, 6, 8, 9], "net": [0, 4, 7, 8, 9, 10], "three": [0, 4, 5, 6, 7, 9, 10, 15, 17, 18], "bear": [0, 6, 10], "name": [0, 5, 6, 9, 15], "an": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "continu": [0, 5, 6, 7, 8, 15, 16], "unless": [0, 4, 5, 9, 12], "act": [0, 4, 5, 6, 7, 9, 15], "upon": [0, 4, 5, 6, 7, 12, 15], "thi": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18], "restat": 0, "inclin": 0, "plane": [0, 5, 6, 7, 9], "inerti": [0, 4], "refer": [0, 4, 6, 9, 12, 13, 14, 15], "frame": [0, 4, 5, 6, 9, 13], "second": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15], "vec": [0, 4, 5, 6, 7, 8, 10, 13], "proport": [0, 5, 6, 7, 9, 10], "invers": [0, 4, 5, 6, 9], "m": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14], "begin": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "align": [0, 4, 5, 6, 7, 8, 9, 10, 14], "frac": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14], "d": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "p": [0, 4, 5, 6, 7, 8, 9, 10, 14], "dt": [0, 4, 6, 8, 9, 10, 13, 14], "end": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "third": [0, 7, 14, 15], "exert": 0, "magnitud": [0, 4, 5, 6, 7, 9], "direct": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "let": [0, 4, 5, 6, 7, 8, 9, 10, 15], "defin": [0, 4, 5, 6, 7, 8, 9, 10, 12], "_": [0, 6, 8, 9, 10], "21": [0, 4, 5, 6, 7, 9, 10, 15], "written": [0, 4, 5, 7, 8, 9, 10, 12, 13, 16], "12": [0, 4, 5, 6, 7, 8, 9, 10, 15], "often": [0, 4, 7, 8, 9, 10, 15], "action": [0, 15], "reaction": [0, 4, 5], "requir": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "alter": [0, 12], "v": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "can": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "rotat": [0, 4, 7, 9, 10], "get": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "omega": [0, 6, 7, 8], "alpha": [0, 4, 6, 7, 9, 15], "l": [0, 4, 5, 6, 7, 8, 9, 15], "magnet": [0, 4, 5, 6, 7, 8], "long": [0, 4, 5, 6, 7, 8, 9, 15], "period": [0, 4, 5, 6, 7, 9, 14], "contribut": [0, 10, 12], "charl": [0, 7], "coulomb": [0, 4, 6, 8, 9], "christian": 0, "\u00f8erst": 0, "thoma": [0, 4], "young": [0, 4, 6, 7], "andr": 0, "amp\u00e9r": 0, "michael": [0, 14], "faradai": 0, "joseph": [0, 4, 10], "henri": [0, 5, 6, 7], "jame": [0, 4, 5, 6, 10], "clerk": [0, 10], "heinrich": 0, "hertz": [0, 5, 6], "each": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16, 17, 18], "separ": [0, 4, 5, 7, 8, 10, 12, 14, 15], "until": [0, 5, 6, 8, 15], "relat": [0, 4, 5, 6, 7, 8, 9, 10, 12], "through": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16], "work": [0, 4, 6, 7, 9, 10, 12, 15, 17, 18], "led": [0, 4, 7, 10], "behavior": [0, 6, 7, 8, 10, 15], "light": [0, 4, 5, 6, 8, 9], "combin": [0, 4, 6, 7, 8, 9, 10], "equat": [0, 4, 5, 6, 7, 10, 13, 14], "text": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "gauss": 0, "quad": [0, 4, 5, 7, 8, 9], "oint": 0, "cdot": [0, 4, 5, 6, 7, 8, 9], "q": [0, 4, 5, 8, 9], "epsilon_o": [0, 4, 6, 7, 9], "b": [0, 4, 5, 6, 7, 8, 10, 12, 14, 15], "0": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18], "induct": 0, "phi_b": 0, "gener": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "amper": 0, "mu_o": [0, 4], "phi_e": 0, "1865": 0, "hurai": 0, "2010": 0, "yaghjian": 0, "2019": 0, "treatis": [0, 10], "hendrik": 0, "lorentz": 0, "arriv": [0, 5, 7, 13], "complet": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "1895": [0, 5], "symmetri": [0, 4, 7, 8], "current": [0, 4, 5, 6, 9], "creat": [0, 4, 5, 7, 10, 12, 13, 14, 15], "turn": [0, 4, 5, 7, 10], "deal": [0, 8, 12], "flow": [0, 5, 10, 15], "temperatur": [0, 5, 7, 9, 10], "t": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "heat": [0, 4, 5, 6, 7], "w": [0, 4, 5], "intern": [0, 4, 6, 7, 9, 10, 12, 16, 17, 18], "system": [0, 4, 5, 6, 7, 8, 9, 10], "u": [0, 4, 6, 7, 8, 10], "These": [0, 4, 5, 6, 7, 8, 9, 10, 15], "come": [0, 4, 5, 6, 7, 8, 9, 15], "togeth": [0, 4, 5, 6, 9, 15], "pressur": [0, 5, 10], "entropi": 0, "made": [0, 5, 6, 7, 8, 12], "benjamin": [0, 10], "thompson": [0, 10], "count": [0, 4, 5, 7, 10, 15], "rumford": 0, "sadi": 0, "carnot": 0, "joul": [0, 4, 10], "rudolf": 0, "clausiu": 0, "primari": [0, 5], "two": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "delta": [0, 4, 5, 6, 7, 8, 9, 10], "plu": [0, 9], "done": [0, 4, 7, 10, 15], "includ": [0, 4, 5, 7, 8, 9, 12, 14, 15, 17, 18], "It": [0, 4, 5, 6, 7, 8, 9, 10, 15], "possibl": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "convert": [0, 4, 5, 6, 7, 8, 10, 14, 15], "without": [0, 4, 5, 6, 9, 12, 15], "place": [0, 4, 5, 6, 9, 12, 13, 15], "word": [0, 5, 14, 15], "thing": [0, 4, 9, 15], "free": [0, 4, 5, 6, 8, 10, 12, 16], "lunch": [0, 15], "doe": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "spontan": 0, "colder": 0, "hotter": 0, "addit": [0, 5, 6, 7, 8, 9, 10, 12, 15], "sometim": [0, 4, 5, 7, 8, 10, 14, 15], "express": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "zeroth": 0, "If": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "thermal": [0, 5, 7, 10], "equilibrium": [0, 5, 6, 7, 8, 10], "achiev": [0, 5], "absolut": [0, 4, 8, 9, 10, 12], "zero": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "compos": [0, 5, 15], "molecul": [0, 5, 6, 7, 8, 10], "rapid": 0, "bounc": [0, 7], "off": [0, 4, 5, 6, 7], "wall": [0, 5, 7, 8], "just": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15], "gain": [0, 4, 5, 6, 8, 9], "accept": [0, 4, 5, 6, 7, 8, 9, 10, 12], "realiz": [0, 4, 5, 6, 8], "came": [0, 7], "robert": [0, 5], "boyl": 0, "1862": 0, "product": [0, 7, 9, 10, 15], "pv": 0, "later": [0, 4, 5, 6, 10, 15], "jacqu": 0, "found": [0, 4, 5, 6, 7, 8, 9, 10, 13], "ratio": [0, 4, 5, 6, 7, 8, 9, 10], "loui": [0, 7], "gai": 0, "lussac": 0, "produc": [0, 4, 5, 6, 7, 8, 9, 10, 12], "around": [0, 4, 5, 6, 7, 9, 15], "obtain": [0, 4, 5, 6, 7, 8, 9, 10, 15], "nrt": 0, "depend": [0, 4, 5, 6, 7, 8, 9, 10, 15], "number": [0, 4, 5, 7, 8, 10, 13, 14, 15], "mole": [0, 10], "n": [0, 4, 5, 6, 7, 8, 10, 15], "r": [0, 4, 5, 6, 7, 8, 9, 10], "8": [0, 8, 9, 10, 12, 15], "31": [0, 4, 5, 6, 7, 8, 10, 15], "rm": [0, 4, 5, 6, 7, 8, 9], "mol": [0, 4, 5, 6, 7], "k": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "amedeo": 0, "avogadro": [0, 4, 5, 6, 7, 10], "propos": [0, 4, 5, 6, 7, 9], "daniel": 0, "bernoulli": 0, "origin": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "1738": 0, "ignor": [0, 4, 5, 8, 15], "howev": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "wide": [0, 7, 8], "interpret": [0, 4, 6, 9, 12, 15], "maxel": 0, "ludwig": 0, "josiah": 0, "willard": 0, "gibb": 0, "simpl": [0, 4, 5, 6, 9, 14], "averag": [0, 5, 6, 7, 8, 9, 10], "collis": [0, 4, 5, 6, 7, 9], "reveal": [0, 5, 16], "langl": [0, 6, 7, 8, 9], "rangl": [0, 6, 7, 8, 9], "linearli": [0, 5], "nn_a": 0, "avagadro": 0, "n_a": [0, 5, 6, 7], "02214076": [0, 10], "10": [0, 6, 7, 8, 9, 10, 15], "23": [0, 4, 5, 6, 7, 9, 10, 15], "vibrat": [0, 4, 6, 8, 10], "molecular": [0, 5, 6, 10], "translat": [0, 4, 5, 10, 12, 13], "becam": [0, 4, 7], "clear": [0, 4, 5, 6, 7, 9, 15], "degre": [0, 5, 10], "freedom": [0, 10, 15], "capabl": [0, 7], "carri": [0, 4, 5, 7, 9, 15], "equipartit": 0, "theorem": [0, 4, 5, 7, 8], "ha": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "kt": [0, 5, 7, 10], "3d": [0, 4, 9], "space": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "introduc": [0, 5, 6, 7, 8, 9, 10, 15], "mode": [0, 4, 5, 10, 13], "higher": [0, 4, 5, 6, 8, 9, 10, 15], "therefor": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "eqn": [0, 4, 5, 6, 7, 8], "7": [0, 9, 10, 12, 15], "molar": [0, 4, 5, 6, 7], "capac": 0, "c_v": 0, "du": [0, 8, 10], "specif": [0, 6, 10, 15], "function": [0, 4, 6], "hydrogen": [0, 4, 5, 7, 10], "h_2": [0, 10], "shown": [0, 4, 5, 7, 8, 9, 16], "below": [0, 4, 5, 6, 7, 12, 16], "lowest": [0, 5, 6, 7, 8, 9], "level": [0, 4, 6, 7, 8, 13, 14, 15], "correspond": [0, 4, 5, 7, 8, 9, 10, 12, 14], "At": [0, 4, 5, 7, 10, 15], "200": 0, "rise": [0, 5, 8, 9], "Near": 0, "3200": 0, "bring": 0, "befor": [0, 4, 5, 6, 7, 8, 9, 12, 14, 15], "dissoci": [0, 6], "imag": [0, 4, 5, 6, 7, 8, 9, 12], "credit": [0, 4, 5, 6, 7, 8, 9, 13, 16], "hyperphys": [0, 5, 6, 7, 8], "section": [0, 4, 6, 7, 8, 9, 10, 12, 13, 17, 18], "1850": 0, "speed": [0, 4, 5, 6, 7, 8, 9, 15], "given": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "4": [0, 10, 12, 14, 15, 16, 17, 18], "pi": [0, 4, 5, 6, 7, 8, 9, 10, 15], "left": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "right": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "mv": [0, 4, 5, 7, 10], "2kt": [0, 10], "python": [0, 4, 5, 7, 8, 10, 13, 14, 16], "code": [0, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 18], "comput": [0, 6, 8, 9, 10, 15], "n_2": [0, 8, 10], "300": [0, 5, 7, 8, 10], "1000": [0, 4, 5], "4000": 0, "peak": [0, 5, 7], "probabl": [0, 5, 6], "confirm": [0, 4, 5, 6, 10], "1921": 0, "nitrogen": [0, 7], "numpi": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "np": [0, 4, 5, 6, 7, 8, 9, 10, 15], "http": [0, 5, 14], "org": [0, 5, 12], "doc": 0, "stabl": [0, 6, 7], "user": [0, 14, 15], "whatisnumpi": 0, "html": [0, 14], "scipi": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "physical_const": [0, 4, 6, 7, 9, 10], "matplotlib": [0, 4, 5, 7, 8, 9, 10, 15], "pyplot": [0, 4, 5, 7, 8, 9, 10, 15], "plt": [0, 4, 5, 7, 8, 9, 10, 15], "def": [0, 4, 5, 6, 7, 8, 10, 15], "f_v": 0, "kg": [0, 4, 5, 6, 7, 8, 10], "return": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "exp": [0, 4, 5, 7, 8, 10], "amu": [0, 4], "m_n2": 0, "28": [0, 4, 5, 6, 7, 9, 10, 15], "t_low": 0, "t_mid": 0, "t_hi": 0, "v_n2": 0, "arang": [0, 4, 5, 7, 8, 9, 10, 15], "rang": [0, 5, 6, 7, 8, 9, 10, 15], "fs": [0, 4, 5, 7, 8, 9], "larg": [0, 4, 5, 6, 7, 8, 9, 10, 15], "fig": [0, 4, 5, 6, 7, 8, 9, 10, 15], "figur": [0, 4, 5, 6, 7, 8, 9, 10, 15], "figsiz": [0, 4, 5, 7, 8, 9, 10], "dpi": [0, 4, 5, 7, 8, 9, 10], "150": [0, 4, 5, 7, 8, 9, 10], "ax": [0, 4, 5, 7, 8, 9, 10, 15], "add_subplot": [0, 4, 5, 7, 8, 9, 10, 15], "111": [0, 4, 5, 7, 8, 9, 15], "plot": [0, 4, 5, 7, 8, 10, 15], "lw": [0, 4, 5, 7, 8, 9, 10, 15], "label": [0, 4, 7, 8, 9, 10, 12, 15], "legend": [0, 4, 7, 8, 10], "loc": [0, 4, 7, 8, 10], "fontsiz": [0, 4, 5, 7, 8, 9, 10], "set_xlabel": [0, 4, 5, 7, 8, 10], "set_ylabel": [0, 4, 5, 7, 9, 10], "set_ylim": [0, 4, 7, 8, 9, 10, 15], "set_xlim": [0, 4, 5, 7, 8, 9, 10, 15], "By": [0, 5, 6, 7, 8, 9, 12], "calcul": [0, 4, 5, 6, 7, 8, 9, 10, 15], "rigor": [0, 4], "known": [0, 4, 5, 6, 7, 8, 9, 12], "find": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "root": [0, 5, 8, 10, 15], "mean": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "squar": [0, 4, 5, 6, 7, 9, 10, 15], "v_": [0, 4, 6, 7, 8, 9, 10], "sqrt": [0, 4, 5, 6, 7, 8, 9, 10, 15], "3kt": [0, 7, 10], "point": [0, 4, 5, 6, 7, 8, 9, 10, 15], "good": [0, 5, 7, 8, 9, 10, 14, 15], "model": [0, 5, 7, 9, 10], "when": [0, 4, 5, 6, 7, 8, 9, 10, 15], "learn": [0, 6, 9], "isn": [0, 7, 15], "alwai": [0, 4, 5, 7, 8, 9, 12, 15], "dimension": [0, 7, 15], "necessari": [0, 4, 6, 7, 8, 9, 10, 12, 14], "phenomena": [0, 5, 6, 7, 8, 10], "explain": [0, 5, 6, 7, 8, 9], "disturb": [0, 5], "stand": [0, 4, 5, 7, 8, 14], "superposit": [0, 5, 7, 8], "sound": [0, 4, 5, 7, 12], "need": [0, 5, 6, 7, 8, 9, 10, 12, 14, 15], "elast": [0, 4, 5, 6], "doesn": [0, 5, 6, 9, 15], "actual": [0, 5, 6, 7, 8, 15], "propag": [0, 4, 7], "along": [0, 4, 6, 7, 8, 9, 10, 13, 15], "respons": [0, 7, 8, 15], "pass": [0, 4, 5, 6, 7, 8, 9], "consid": [0, 4, 5, 6, 7, 8, 9, 10, 12], "follow": [0, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15], "exampl": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "buoi": [0, 5], "As": [0, 4, 5, 6, 7, 8, 9, 10, 15], "potenti": [0, 4, 5, 6, 7, 9, 10], "up": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "releas": [0, 4], "graviti": [0, 8, 9], "pull": [0, 4, 5, 8], "down": [0, 4, 5, 7, 9, 15], "help": [0, 4, 5, 6, 8, 9, 10, 13, 15], "nearbi": [0, 5], "cycl": [0, 7, 8], "fan": 0, "basebal": 0, "game": 0, "stadium": 0, "column": [0, 9, 15], "sit": 0, "singl": [0, 4, 5, 6, 7, 8, 10, 13, 14, 15], "run": [0, 4, 7, 9, 15], "whole": [0, 5, 6, 7, 10, 12], "17th": 0, "disagr": 0, "especi": [0, 5, 9, 15], "talk": 0, "about": [0, 4, 5, 6, 7, 8, 9, 10, 15], "support": [0, 4, 7, 10, 15], "corpuscl": 0, "geometr": [0, 8], "straight": [0, 4, 5, 6, 15], "line": [0, 4, 6, 7, 8, 9, 10, 13], "like": [0, 4, 5, 6, 7, 8, 9, 14, 15], "trajectori": [0, 6, 7], "rai": [0, 4, 8, 9], "observ": [0, 5, 6, 8, 9, 10], "reflect": [0, 4, 5, 7, 8], "refract": [0, 7], "sharp": 0, "shadow": 0, "christiaan": 0, "huygen": 0, "phenomenon": [0, 5, 7, 8, 9], "poor": 0, "health": 0, "prevent": [0, 5, 8, 10, 12], "him": [0, 4], "reput": 0, "forward": [0, 4, 5, 6, 15], "perform": [0, 4, 5, 6, 7, 8, 9, 12, 15], "doubl": [0, 13, 14, 15], "slit": 0, "interfer": [0, 4, 7, 8], "indic": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "behav": [0, 4, 5, 7, 8, 9], "illustr": [0, 4, 5, 6, 7, 9, 15], "encount": [0, 6], "diffract": [0, 4, 5, 6, 7, 8], "pattern": [0, 4, 5, 7], "side": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "wikipedia": [0, 4, 5, 6, 7], "1860": 0, "em": [0, 5, 6, 7, 9], "consist": [0, 4, 5, 6, 7, 8, 9, 10, 14], "oscil": [0, 5, 7, 9, 10], "visibl": [0, 4, 5, 6, 7], "cover": [0, 4, 6, 7, 17, 18], "narrow": [0, 7], "spectrum": [0, 5, 6], "c": [0, 4, 5, 6, 7, 8, 9, 12, 15], "lambda": [0, 4, 5, 6, 7, 8, 9], "wavelength": [0, 4, 5, 6, 7, 8, 9], "frequenc": [0, 4, 5, 6, 7, 8], "ani": [0, 4, 5, 6, 7, 8, 9, 12, 15], "permeabl": [0, 4], "permitt": [0, 4], "1887": [0, 4], "succeed": [0, 5, 7, 12], "detect": [0, 4, 5, 7, 8, 9], "far": [0, 4, 5, 6, 8, 9, 15], "outsid": [0, 4, 5, 6, 7, 8, 9, 15], "approx": [0, 4, 5, 6, 7, 8, 10], "guid": [0, 5, 7, 13, 14, 16], "deduct": 0, "swath": 0, "what": [0, 4, 5, 6, 7, 8, 9, 10], "last": [0, 4, 8, 15], "100": [0, 4, 5, 7, 8, 10, 15], "year": [0, 4, 5, 6, 7, 15], "prior": [0, 4, 9, 12], "distinctli": 0, "differ": [0, 5, 6, 7, 8, 9, 10, 12, 14, 15], "seem": [0, 4, 6, 7], "them": [0, 4, 5, 6, 7, 9, 12, 14, 15], "studi": [0, 4, 5, 6, 7, 8, 9, 10], "subatom": [0, 10], "even": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "elementari": [0, 5, 6], "baryon": 0, "lepton": 0, "close": [0, 4, 5, 6, 7, 9, 12, 14, 15], "invari": [0, 4, 13], "unchang": [0, 8], "transform": [0, 5, 6, 7, 8, 10, 12, 13], "distanc": [0, 4, 5, 6, 7, 8, 9, 10, 15], "you": [0, 4, 5, 8, 12, 13, 14, 15, 16], "coordin": [0, 4, 8, 9, 10], "descript": [0, 7, 8, 9, 10, 15], "weak": [0, 5, 9], "strong": [0, 4, 5, 8, 9], "your": [0, 12, 13, 14, 15, 16], "introductori": [0, 8, 16], "cours": [0, 10, 15, 17, 18], "veri": [0, 4, 5, 6, 7, 8, 9, 15], "high": [0, 4, 5, 6, 7, 15], "unifi": 0, "electroweak": 0, "strength": [0, 5, 9, 15], "scale": [0, 4, 5, 8], "hold": [0, 4, 6, 15], "nucleu": [0, 4, 5, 6, 7, 8, 9], "mutual": [0, 5, 6, 9], "attract": [0, 5, 6, 8], "m_1": [0, 4], "m_2": [0, 4], "vector": [0, 4, 6, 7, 9, 10], "compon": [0, 4, 5, 6, 7, 9, 10], "cartesian": [0, 4, 9], "radial": [0, 4, 6, 10], "hat": [0, 6, 8], "6743": 0, "11": [0, 6, 7, 8, 9, 12, 15], "si": [0, 4], "unit": [0, 4, 5, 6, 7, 8, 9, 10], "_g": 0, "gm_1m_2": 0, "q_1": 0, "q_2": 0, "similar": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "electrostat": [0, 6, 9], "cross": [0, 5, 6], "chemic": [0, 5, 6], "biolog": [0, 4], "process": [0, 5, 6, 7, 8, 9, 10, 12, 13, 15], "nongravit": 0, "_c": 0, "q_1q_2": 0, "beta": [0, 4, 5, 6, 7, 8, 10], "decai": [0, 6], "nuclei": [0, 4, 6, 8], "among": [0, 4], "sheldon": 0, "glashow": 0, "steven": 0, "weinberg": 0, "abdu": 0, "salam": 0, "wrote": [0, 6, 7], "paper": [0, 4, 5, 6, 7], "1960": 0, "predict": [0, 5, 6, 7, 8, 9, 10], "facet": 0, "share": [0, 4, 7, 12, 16], "nobel": [0, 5, 7], "prize": [0, 5, 7], "1979": 0, "Their": [0, 5, 6, 8], "exist": [0, 4, 5, 6, 7, 8, 9, 10, 15], "z": [0, 4, 5, 6, 7, 8, 9, 10], "boson": 0, "1983": 0, "purpos": [0, 7, 12, 15], "effect": [0, 6, 7, 8, 10, 12], "15": [0, 4, 5, 7, 8, 9, 15], "strongest": 0, "easili": [0, 4, 5, 7, 10, 15], "bind": [0, 5, 6, 9], "proton": [0, 4, 5, 6, 7, 9], "insid": [0, 4, 5, 6, 8, 15], "repuls": [0, 6, 8], "allow": [0, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16], "fusion": 0, "star": [0, 4, 5], "strive": 0, "wai": [0, 4, 5, 7, 8, 9, 10, 12, 15], "seemingli": 0, "dispar": 0, "friction": [0, 5], "contact": [0, 12], "tension": 0, "know": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "part": [0, 4, 5, 6, 10, 12, 15], "ago": 0, "thought": [0, 4, 5, 6], "seri": [0, 4, 5, 6, 7, 8, 9], "grand": 0, "openstax": [0, 4, 5, 6, 7, 16, 17, 18], "vol": [0, 4, 5, 6, 7, 17, 18], "activ": [0, 15], "area": [0, 5, 6, 7, 8, 9], "effort": [0, 7], "underwai": [0, 4], "gut": 0, "fashion": 0, "complex": [0, 5, 7, 8, 9, 10, 14, 15], "string": [0, 7, 8, 15], "sever": [0, 4, 5, 6, 7, 8, 12, 14], "yet": [0, 6, 7], "been": [0, 4, 5, 6, 7, 9, 10, 12, 15], "verifi": [0, 4, 5, 6], "step": [0, 4, 5, 6, 7, 9, 15], "beyond": [0, 7, 8, 10], "toe": 0, "gev": [0, 4], "earlier": [0, 5, 6, 7, 15], "common": [0, 4, 5, 6, 7, 9, 12, 15, 16, 17, 18], "tini": [0, 5], "told": 0, "philosoph": [0, 5, 6], "democritu": 0, "leucippu": 0, "450": 0, "atomo": 0, "indivis": [0, 5, 6], "peel": 0, "layer": [0, 5, 6, 14], "inde": [0, 9, 15], "divis": [0, 5, 15], "sign": [0, 4, 5, 6, 8, 14], "past": [0, 4, 5, 7, 15], "mostli": [0, 6], "dormant": 0, "branch": 0, "scienc": 0, "chemistri": [0, 6, 9], "proust": 0, "definit": [0, 4, 5, 6, 8, 10, 12, 15], "element": [0, 4, 5, 6, 7, 9, 10, 14, 15], "compound": 0, "weight": [0, 5, 6, 10], "john": [0, 5], "dalton": 0, "1803": 0, "kei": [0, 5, 15], "1811": 0, "individu": [0, 4, 6, 7, 8, 9, 10, 12, 15], "dismiss": 0, "rather": [0, 4, 7, 8, 9, 10, 15], "harshli": 0, "who": [0, 4, 5, 6, 7, 9], "imagin": [0, 4, 6, 15], "stanislao": 0, "cannizzaro": 0, "solv": [0, 4, 5, 6, 7, 8, 9, 10], "1858": 0, "gram": [0, 5], "particular": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14], "ma": 0, "while": [0, 4, 5, 6, 7, 8, 9, 15], "carbon": [0, 4, 5], "estim": [0, 4, 5, 6, 7, 8, 10], "brown": 0, "microscop": [0, 5, 7], "pollen": 0, "grain": 0, "suspend": [0, 5], "brownian": [0, 10], "danc": 0, "randomli": [0, 7], "ascrib": 0, "convect": 0, "organ": [0, 5, 9], "eventu": [0, 4, 5, 6, 7, 8], "liquid": [0, 5, 7], "explan": [0, 4, 5, 6, 7, 13], "constantli": 0, "push": 0, "adopt": [0, 6, 12], "ernst": 0, "mach": [0, 4], "princip": [0, 6, 10], "leader": 0, "anti": [0, 9], "movement": [0, 4, 9], "positivist": 0, "reason": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15], "never": [0, 4, 6, 7, 9, 12], "seen": [0, 5, 6, 7, 15], "cannot": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "sai": [0, 4, 8, 10], "anyth": [0, 9, 10, 15], "realiti": [0, 7, 10], "wilhelm": [0, 5], "ostwald": 0, "face": [0, 4, 7], "difficulti": [0, 7, 9, 10], "radioact": [0, 4, 5, 6, 8], "discret": [0, 5, 7, 8], "spectral": [0, 5, 6, 9], "contend": 0, "should": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "hypothet": 0, "construct": [0, 4, 5, 7, 8, 9, 15], "bookkeep": 0, "max": [0, 5, 6, 7, 9], "planck": [0, 5, 6, 7, 9], "grudgingli": 0, "submicroscop": 0, "quanta": [0, 5, 6], "convinc": [0, 4, 7], "overwhelm": 0, "decad": [0, 4, 7], "20th": [0, 5, 6, 10], "albert": [0, 4, 5], "1905": [0, 4, 5], "provid": [0, 5, 6, 9, 10, 12, 13, 15], "almost": [0, 4, 5, 7, 10, 15], "80": [0, 4, 15], "term": [0, 4, 5, 6, 7, 8, 9, 10, 12], "theoret": [0, 5, 6, 7], "random": [0, 6, 7, 9, 10], "walk": [0, 15], "drunkard": 0, "mai": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "after": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "abl": [0, 4, 5, 6, 8], "approxim": [0, 4, 5, 6, 7, 8, 9, 10, 12], "size": [0, 5, 6, 7, 8], "data": [0, 5, 6, 7, 8, 9, 15], "scan": 0, "tunnel": 0, "photo": 0, "76": [0, 5, 10, 15], "iron": [0, 6], "copper": [0, 7, 10], "surfac": [0, 4, 5, 7, 9], "ibm": 0, "try": [0, 4, 5, 7, 8, 9, 15], "modifi": [0, 4, 5, 7, 8, 12, 15, 16], "electron": [0, 4, 8], "densiti": [0, 4, 5, 6, 7, 8, 10], "surround": [0, 5, 6, 7, 15], "quantum": [0, 4, 6, 17, 18], "corral": 0, "crommi": 0, "lutz": 0, "eigler": 0, "almaden": 0, "center": [0, 4, 5, 6, 7, 8, 14], "jean": [0, 5, 10], "perrin": [0, 10], "1908": [0, 4, 5], "agre": [0, 4, 6, 8, 9, 12, 14], "util": 0, "type": [0, 5, 6, 9, 10], "gave": [0, 15], "quantit": [0, 10], "sinc": [0, 4, 5, 6, 7, 8, 9, 13, 15], "nearli": [0, 6, 7], "foundat": 0, "method": [0, 5, 7, 8, 10, 15], "shape": [0, 4, 5, 7, 8], "success": [0, 4, 5, 8, 10], "pervas": 0, "feel": [0, 4, 5, 6, 8, 9], "techniqu": [0, 5, 6, 7], "structur": [0, 5, 7, 10], "unknown": [0, 5, 6, 7], "clearli": [0, 4, 7, 9, 12], "resolv": [0, 6], "cloud": [0, 9], "horizon": 0, "speak": [0, 4, 7], "royal": [0, 7], "institut": [0, 7], "materi": [0, 5, 6, 7, 12, 17, 18], "luminifer": [0, 4], "aether": [0, 4], "ether": 0, "deduc": [0, 4, 5, 7, 9], "fluid": [0, 10], "rigid": [0, 10], "than": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "steel": [0, 5, 6], "massless": [0, 7, 10], "viscos": [0, 5], "otherwis": [0, 4, 8, 9, 12, 15], "affect": [0, 4, 6, 7, 8, 9, 10, 12, 15], "orbit": [0, 4, 5, 6, 7, 8], "planet": [0, 4, 6, 9], "transpar": 0, "non": [0, 5, 7, 8, 9, 10, 12, 13, 14, 15], "dispers": [0, 7], "incompress": 0, "michelson": [0, 5], "unabl": [0, 5, 6], "edward": [0, 4], "morlei": [0, 5], "extrem": [0, 4, 5, 6, 14], "care": [0, 5, 9, 15], "famou": [0, 4, 6, 7, 9], "subsequ": 0, "neg": [0, 4, 5, 6, 7, 8, 9, 15], "concern": [0, 4, 5, 12], "keep": [0, 4, 5, 6, 10, 14], "shift": [0, 4, 5, 7, 10], "contract": [0, 12], "georg": [0, 7, 9], "fitzgerald": [0, 4], "hypothesi": [0, 4, 5, 6, 7, 9], "1892": 0, "interest": [0, 4, 5, 7, 8, 10, 16], "absorb": [0, 4, 5, 6, 9], "entir": [0, 4, 5, 7, 10, 15], "incid": [0, 5, 6, 7, 8], "emit": [0, 4, 5, 6, 7, 9], "emiss": [0, 4, 5, 6, 8, 9], "power": [0, 4, 5, 6, 7, 10, 15], "per": [0, 4, 5, 6, 7, 10], "issu": 0, "itself": [0, 5, 6, 7, 9, 10], "decreas": [0, 5, 6, 8], "intens": [0, 5, 6, 7], "longer": [0, 4, 5, 8], "darth": 0, "kule": 0, "both": [0, 4, 5, 6, 7, 8, 9, 10, 14], "low": [0, 4, 5, 6, 7], "But": [0, 4, 5, 6, 7, 8, 9, 14, 15], "account": [0, 4, 5, 6, 9], "caviti": [0, 5], "infinit": [0, 5, 6, 15], "short": [0, 4, 5, 6, 7, 8, 13, 15], "failur": [0, 12], "ultraviolet": [0, 5], "catastroph": [0, 5], "demonstr": [0, 5, 6, 7, 10, 15], "deeper": 0, "r\u00f6ntgen": [0, 5, 7], "novemb": [0, 8], "becquerel": 0, "accident": 0, "februari": 0, "1896": [0, 9], "uranium": [0, 6], "salt": [0, 7], "next": [0, 4, 7, 9, 13, 15], "carefulli": 0, "wrap": 0, "photograph": [0, 6, 7], "plate": [0, 4, 5, 7], "silhouett": 0, "discharg": [0, 5, 6], "glow": [0, 5, 6], "cathod": [0, 5, 6], "isol": [0, 4, 5], "prove": [0, 5, 6, 7, 8, 10], "pieter": [0, 9], "zeeman": [0, 6, 8], "sampl": 0, "normal": [0, 4, 6, 7, 10, 13, 15], "quantiz": [0, 6, 8, 9], "packet": [0, 5, 6, 7, 8], "photoelectr": [0, 6, 7], "summar": [0, 6, 10], "major": [0, 7, 10], "accomplish": [0, 4, 7, 15], "did": [0, 4, 6, 10], "influenc": [0, 4, 5, 6, 8], "prevail": [0, 4, 6], "sentiment": 0, "character": [0, 6, 8], "compar": [0, 4, 5, 6, 7, 8, 9, 10], "contrast": [0, 8, 9, 15], "either": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "regim": 0, "tell": [4, 5, 7, 8], "fast": [4, 7], "enough": [4, 5, 6, 7, 8, 9, 10], "thu": [4, 5, 6, 7, 8, 9, 10, 15], "newtonian": [4, 10], "law": [4, 5, 6, 7, 8, 9, 10, 12, 13], "valid": [4, 5, 6, 10, 15], "forc": [4, 5, 6, 7, 8, 9, 10, 13, 15], "attach": 4, "uniform": [4, 6], "prime": [4, 5, 6, 10, 13, 15], "standard": [4, 5, 7, 10, 12, 14], "configur": [4, 5], "unprim": 4, "axi": [4, 6, 7, 8, 9, 10, 13, 15], "krea": 4, "vt": [4, 7, 13, 14], "y": [4, 5, 7, 8, 10, 14, 15], "algebra": [4, 8, 9], "1802": 4, "augustin": 4, "fresnel": 4, "detail": [4, 5, 6, 7, 8, 13, 14, 15], "polar": [4, 5, 7, 9, 10], "discoveri": [4, 6, 7, 12], "wave": [4, 5, 6], "classic": [4, 7, 9], "knew": [4, 6, 8], "medium": [4, 5, 7, 8, 12], "appar": [4, 5, 8], "Its": [4, 6, 8, 15], "incred": 4, "too": [4, 5, 6, 7, 8, 14, 15], "maxwel": [4, 9], "media": [4, 12], "matter": [4, 5, 6, 7, 10], "vacuum": [4, 5, 6, 7], "sensit": [4, 6], "consensu": 4, "1880": 4, "eleg": [4, 14], "make": [4, 5, 6, 8, 9, 10, 12, 14, 15], "testabl": 4, "suppos": [4, 5, 6, 13, 15], "flash": [4, 7], "pm": [4, 5, 8, 9], "don": [4, 6, 14, 15], "differenti": [4, 8, 9, 10], "unclear": 4, "taken": [4, 6, 15], "prefer": [4, 9, 15], "No": [4, 5, 7, 9, 10, 12, 15], "discern": 4, "due": [4, 5, 6, 7, 8, 10, 15], "sun": [4, 5, 6, 9], "sim": [4, 5, 6, 7, 9, 10], "30": [4, 5, 7, 9, 12, 15], "km": 4, "so": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "obviou": 4, "devic": [4, 6, 8], "phase": [4, 7, 8, 9, 10], "setup": [4, 5], "extend": [4, 7], "sourc": [4, 5, 7, 10, 13, 15, 16], "ground": [4, 6, 7, 8, 9], "glass": [4, 5, 6, 7], "diffus": [4, 8], "laser": [4, 7], "planar": 4, "view": [4, 5, 6, 7, 10], "assum": [4, 5, 6, 7, 8, 9, 15], "arm": 4, "d_1": 4, "d_2": 4, "parallel": [4, 7, 8, 9], "leav": [4, 5, 8, 13, 15], "go": [4, 7, 9, 15], "mirror": 4, "partial": [4, 7, 8, 9], "silver": [4, 5, 7, 9], "path": [4, 6, 7, 8], "detector": [4, 6, 7], "compens": 4, "sure": [4, 14, 15], "thick": [4, 5, 6], "anim": 4, "sodium": [4, 5, 9], "bright": [4, 5, 7], "re": [4, 5, 7, 9, 10, 15, 16], "fring": [4, 7], "apparatu": [4, 5, 7], "90": [4, 6, 7, 15], "circ": [4, 5, 6, 7], "perpendicular": [4, 5, 6, 9], "dark": [4, 5, 6, 7], "band": [4, 5, 7], "destruct": [4, 7], "integ": [4, 5, 6, 7, 8, 9, 15], "expect": [4, 5, 6, 9, 10, 12], "accord": [4, 5, 6, 7, 8, 9, 10, 12], "On": [4, 6], "journei": 4, "against": [4, 5], "round": [4, 5, 6, 7, 10], "trip": 4, "t_2": 4, "2cd_2": 4, "2d_2": 4, "across": [4, 5, 6, 8], "upriv": 4, "downstream": [4, 12], "triangl": [4, 6], "diagon": 4, "instead": [4, 6, 7, 8, 9, 10, 14, 15], "t_1": 4, "2d_1": 4, "look": [4, 5, 6, 7, 9, 14, 15], "ll": [4, 5, 7, 8, 9], "binomi": 4, "expans": 4, "involv": [4, 5, 9, 15], "order": [4, 5, 6, 7, 8, 9, 10, 15], "neglig": [4, 5, 7, 8, 12], "To": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "17": [4, 5, 7, 8, 15], "600": [4, 5, 6], "nm": [4, 5, 6, 7, 8, 9], "amount": [4, 5, 6, 10, 15], "04": [4, 5, 15], "02": [4, 5, 6, 7, 10, 15], "conclud": [4, 5, 6, 7], "stationari": [4, 5, 6, 7, 8], "incorrect": [4, 5], "surpris": [4, 8, 9], "ask": [4, 12, 15], "well": [4, 5, 6, 7, 9, 10, 12, 14, 15], "repeat": [4, 6, 15], "put": [4, 6, 14], "sophist": [4, 6], "adjust": [4, 5], "eight": 4, "mount": [4, 7], "soapston": 4, "float": [4, 15], "mercuri": [4, 6], "elimin": [4, 5, 8], "005": 4, "report": [4, 5, 7, 9, 13], "null": 4, "inabl": [4, 7], "seriou": [4, 5, 9, 10], "blow": 4, "reconcil": [4, 6], "suggest": [4, 5, 6, 7, 8, 9, 10], "factor": [4, 5, 6, 7, 8, 9, 10], "gamma": [4, 5], "situat": [4, 5, 7, 8], "wherea": [4, 5, 6], "proven": 4, "true": [4, 5, 7, 9, 10, 15], "signific": [4, 6, 7, 8, 10], "expos": [4, 5, 6], "fals": [4, 7, 8, 9, 15], "invalid": 4, "mechan": [4, 6, 9, 10, 17, 18], "formal": [4, 5, 8], "manner": [4, 12], "develop": [4, 6, 7, 9, 10, 14, 15], "constanc": 4, "valu": [4, 5, 6, 7, 9, 10, 15], "evalu": [4, 5, 7, 8, 9, 10, 13, 15], "previou": [4, 5, 8, 10, 12, 15], "clearer": [4, 15], "out": [4, 5, 6, 7, 8, 9, 12, 14, 15], "real": [4, 7, 8, 9], "life": 4, "recal": [4, 5, 7, 8, 9, 10, 15], "sect": [4, 7, 8, 9], "event": [4, 7, 12], "synchron": 4, "own": [4, 7, 8, 15], "meterstick": 4, "interv": [4, 7, 8, 10], "lamp": 4, "apart": [4, 5, 9, 14], "puls": [4, 7], "simultan": [4, 5, 7, 8, 9], "reach": [4, 5, 6, 15], "she": 4, "bulb": 4, "conclus": 4, "correct": [4, 5, 8], "seat": 4, "midwai": 4, "rail": 4, "car": 4, "opposit": [4, 5], "equidist": 4, "her": [4, 5], "toward": [4, 5, 8, 15], "rapidli": [4, 8], "platform": [4, 14], "saw": [4, 15], "railcar": 4, "necessarili": [4, 7, 9], "comparison": [4, 5], "send": [4, 5], "signal": 4, "inform": [4, 12], "finit": [4, 5, 6, 9], "awai": [4, 5, 9], "colleagu": 4, "fix": [4, 5, 8, 9, 13], "coincid": 4, "vx": 4, "commonli": [4, 5, 8, 9], "substitut": [4, 5, 6, 7, 8, 9, 10, 13], "write": [4, 7, 8, 9, 10, 14, 15], "compact": [4, 9], "ultim": [4, 10], "want": [4, 6, 7, 9, 14, 15], "goe": [4, 8, 9], "wavefront": 4, "spheric": [4, 7, 10], "inconsist": [4, 5], "break": [4, 5, 15], "map": 4, "uniqu": [4, 5, 7, 8], "simplest": [4, 5, 6, 7, 8, 9, 15], "reduc": [4, 7, 8, 9, 10, 12, 15], "demand": 4, "ct": 4, "un": 4, "abov": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "directli": [4, 5, 6, 8, 10, 12, 15], "replac": [4, 6, 7, 8, 9, 10, 12, 13, 15], "exchang": 4, "rightarrow": [4, 5, 6, 7, 8, 9, 10, 13], "notic": [4, 5, 6, 7, 8, 12, 15], "significantli": [4, 6], "001": [4, 6, 7], "grid": [4, 6], "implic": 4, "imaginari": [4, 7, 8], "lit": 4, "read": [4, 12, 15], "extinguish": 4, "t_o": 4, "proper": [4, 12, 15], "x_2": [4, 7, 8], "x_1": [4, 7, 8], "Then": [4, 5, 6, 7, 8, 9, 10, 13, 15], "durat": 4, "slow": [4, 5], "2150": 4, "feder": 4, "perfect": [4, 10], "storag": 4, "antiproton": 4, "fuel": 4, "spaceship": 4, "prepar": 4, "man": [4, 15], "spacecraft": 4, "visit": [4, 14], "proxima": 4, "centauri": 4, "25": [4, 5, 6, 7, 8, 10, 15], "lightyear": 4, "strict": 4, "regul": [4, 10, 12], "16": [4, 5, 6, 7, 8, 9, 15], "provis": [4, 12], "avail": [4, 5, 9, 12, 14, 16], "crew": 4, "neglect": [4, 5], "turnaround": 4, "deceler": [4, 6], "limit": [4, 5, 7, 8, 10, 12, 13, 15, 16], "constrain": [4, 7, 8, 9], "unlik": [4, 5], "buc": 4, "ee": 4, "restock": 4, "2l": [4, 8], "subsum": 4, "alreadi": [4, 6, 8, 9, 14, 16], "4l": 4, "2c": [4, 5, 7, 10], "41": [4, 5, 15], "469c": 4, "realli": [4, 14], "mission": 4, "18": [4, 5, 6, 7, 8, 9, 15], "friend": 4, "light_year": 4, "yr_in_sec": 4, "3600": [4, 5], "24": [4, 5, 6, 7, 8, 10, 15], "365": [4, 5], "sec": 4, "ly": 4, "2e": [4, 5, 6, 7, 8], "librari": 4, "meter": [4, 7], "to_prim": 4, "v_req": 4, "3f": [4, 5, 7], "46e": 4, "41e": [4, 7], "08": [4, 5, 7, 8, 15], "469": 4, "happen": [4, 6, 7, 15], "l_o": 4, "x_r": 4, "x_l": 4, "subscript": [4, 6, 7, 8, 9], "denot": [4, 5, 6, 8, 10], "stick": 4, "t_r": 4, "t_l": 4, "insist": 4, "lesssim": [4, 5, 6], "shrink": 4, "electrodynam": [4, 6, 7], "switch": [4, 15], "shorter": [4, 5, 7, 8], "perspect": 4, "approach": [4, 6, 7, 8, 10, 15], "2l_o": 4, "2t": 4, "give": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "ident": [4, 5, 7, 8, 10], "2f": [4, 5, 6, 7, 8, 10, 15], "75": [4, 6, 8, 10, 15], "futur": [4, 15], "navig": 4, "outer": [4, 5, 6, 8], "identifi": [4, 6, 7, 9, 10], "hazard": 4, "avoid": [4, 5, 8, 10, 12], "asteroid": 4, "iceberg": 4, "add": [4, 7, 8, 9, 10, 14, 15], "reserv": [4, 12, 15], "letter": [4, 6, 8, 9, 15], "variou": [4, 5, 6, 7, 9, 13], "correctli": [4, 6], "start": [4, 5, 6, 7, 8, 9, 10, 14, 15], "u_x": 4, "dx": [4, 7, 8, 9, 10], "vdt": 4, "dy": [4, 7, 9, 10], "dz": [4, 9, 10], "u_i": 4, "u_z": 4, "divid": [4, 5, 6, 8, 9, 17, 18], "although": [4, 5, 6, 8, 9, 12, 15], "variabl": [4, 7, 8, 13], "command": [4, 13, 14, 15], "target": [4, 5, 6, 7, 9], "junior": 4, "offic": 4, "shoot": 4, "99c": 4, "6c": 4, "36": [4, 5, 6, 7, 15], "0c": 4, "99": [4, 10, 15], "792": 4, "792c": 4, "994c": 4, "cosmic": [4, 5], "enter": [4, 5, 8], "atmospher": [4, 5, 6], "upper": [4, 6, 7, 10], "shower": [4, 15], "meson": 4, "pion": 4, "unstabl": 4, "n_oe": 4, "n_o": 4, "half": [4, 5, 7, 8, 9, 10], "tau_": 4, "ln": [4, 8], "52": [4, 15], "mu": [4, 5, 6, 7, 8, 9], "surviv": [4, 8, 12], "top": [4, 9, 13, 16], "mountain": [4, 8], "sea": 4, "98c": 4, "540": 4, "remov": [4, 8, 9, 12, 15], "81": [4, 9, 15], "45": [4, 6, 7, 8, 10, 15], "obvious": 4, "someth": [4, 5, 7, 15], "wrong": 4, "v_mu": 4, "98": [4, 10, 15], "d_mnt": 4, "2000": 4, "height": [4, 7, 8], "mu_halflif": 4, "52e": 4, "no_mu": 4, "t_half": 4, "lamb": 4, "log": 4, "t_mu": 4, "n_mu": 4, "81e": 4, "06": [4, 6, 7, 10, 15], "dramat": [4, 5, 6, 15], "35": [4, 5, 6, 7, 8, 9, 15], "539": [4, 5], "agreement": [4, 5, 6, 7, 8, 10, 12], "1963": 4, "washington": 4, "hampshir": 4, "frisch": 4, "smith": 4, "gamma_mu": 4, "t_mu_rel": 4, "n_mu_rel": 4, "35e": 4, "examin": [4, 5, 6, 7, 8, 9], "400": [4, 5], "l_mu": 4, "accur": [4, 5, 6, 7, 8], "transit": [4, 6, 9], "133": 4, "cs": [4, 5], "192631770": 4, "hz": [4, 5, 7, 9], "1971": 4, "hafel": 4, "richard": 4, "cesium": 4, "test": [4, 7, 10, 15], "flew": 4, "eastward": 4, "westward": 4, "regularli": 4, "schedul": 4, "airplan": 4, "naval": 4, "observatori": 4, "took": [4, 5], "65": [4, 5, 7, 15], "hour": [4, 5], "flight": 4, "week": [4, 8], "48": [4, 5, 15], "complic": [4, 9], "corioli": 4, "tabl": [4, 5, 6, 8, 9, 10, 15], "ns": 4, "40": [4, 5, 7, 8, 10, 15], "59": [4, 5, 15], "275": 4, "273": [4, 5], "less": [4, 5, 6, 7, 8, 9, 10, 15], "lost": [4, 5, 6], "ran": 4, "slower": [4, 15], "faster": [4, 10], "uncertainti": [4, 6, 8, 9, 10], "1985": 4, "challeng": 4, "shuttl": 4, "330": 4, "295": 4, "29": [4, 5, 6, 7, 15], "ps": 4, "straightforward": [4, 6, 8], "simplifi": [4, 5, 7, 8, 9, 10], "assumpt": [4, 6, 7, 9, 10, 15], "noninerti": 4, "launch": [4, 16], "land": 4, "much": [4, 5, 6, 7, 8, 9, 10, 15], "3092": 4, "92": [4, 10, 15], "fraction": [4, 5, 6, 8, 10], "loss": [4, 12], "27": [4, 5, 6, 7, 9, 10, 15], "lose": [4, 5, 6], "alon": [4, 9], "seven": [4, 10], "048": 4, "t_": [4, 5], "ms": [4, 5, 8, 14], "m_earth": 4, "9722e24": 4, "r_earth": [4, 5], "6371e3": 4, "radiu": [4, 5, 6, 7, 9], "h_shuttl": 4, "330e3": 4, "v_shuttl": 4, "gamma_shuttl": 4, "dt_t": 4, "4e": [4, 5, 8, 10], "dt_t_mea": 4, "9502e": 4, "gr": [4, 7], "dt_t_gr": 4, "5e": [4, 5, 6], "dt_t_meas_nogr": 4, "ab": [4, 5, 8, 9], "pct_err": 4, "percent": [4, 5, 10], "error": [4, 5, 10, 12, 15], "mission_dur": 4, "tlost_miss": 4, "1e": [4, 5, 6, 7, 8, 9], "3092e": 4, "3002e": 4, "0e": [4, 6, 7], "alv\u00e4ger": 4, "et": 4, "al": [4, 5, 6], "1964": 4, "beam": [4, 5, 6, 7, 9], "strike": [4, 5, 7], "neutral": [4, 6], "cern": 4, "nuclear": [4, 6, 8, 9], "facil": 4, "border": 4, "switzerland": 4, "franc": 4, "99975c": 4, "exit": [4, 5, 6], "laboratori": [4, 5, 6], "excel": [4, 5], "again": [4, 6], "evid": [4, 5, 6, 7, 9], "One": [4, 5, 6, 7, 9, 15], "topic": 4, "pair": [4, 8], "set": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "37": [4, 5, 7, 15], "ov": 4, "tick": 4, "slowli": 4, "ix": 4, "scenario": [4, 8], "younger": 4, "moreov": 4, "argu": [4, 7, 8], "answer": [4, 10, 13, 15], "option": [4, 15], "8c": 4, "46": [4, 5, 15], "old": 4, "departur": 4, "yr": 4, "fact": [4, 5, 6, 9, 15], "here": [4, 8, 12, 13, 15], "conveni": [4, 9, 14], "diagram": [4, 5, 6, 7, 9], "simplic": [4, 13], "spatial": [4, 7, 8], "horizont": [4, 8], "vertic": [4, 8, 9, 10], "dimens": [4, 7, 8, 9, 13], "yellow": [4, 5], "photon": [4, 5, 6, 7, 9], "locat": [4, 7, 8, 10], "hermann": 4, "minkowski": 4, "specifi": [4, 7, 9, 12, 15], "coordiant": 4, "fourth": [4, 9], "x_a": [4, 8], "ct_a": 4, "x_b": [4, 8], "ct_b": 4, "worldlin": 4, "slope": [4, 5], "do": [4, 5, 6, 7, 8, 9, 12, 15], "cone": 4, "causal": [4, 10], "li": [4, 5, 6, 8, 9, 10], "link": [4, 6, 9], "vertex": 4, "serv": [4, 7], "role": [4, 7, 10], "mathbf": [4, 5, 9, 10, 14], "lightlik": 4, "sepeart": 4, "spacelik": 4, "timelik": 4, "ell": [4, 5, 7], "1d": [4, 15], "suffic": 4, "union": 4, "ict": 4, "ds": 4, "2dt": 4, "appropri": [4, 5, 7, 8, 9, 13, 14, 16], "somewhat": 4, "easier": [4, 5, 15], "penalti": 4, "matrix": [4, 15], "tensor": 4, "spinor": 4, "disadvantag": 4, "author": [4, 12, 16], "regard": [4, 6, 7, 9, 12], "inclus": 4, "pitch": 4, "ambul": 4, "receiv": [4, 5, 6, 7, 12, 13], "astronom": [4, 5], "front": 4, "rear": [4, 5], "train": 4, "exactli": [4, 5, 8, 9, 10, 15], "cn": 4, "f_o": [4, 5], "compactli": 4, "reced": 4, "wth": 4, "distinguish": [4, 5, 15], "convent": [4, 7, 14, 15], "starlight": 4, "redshift": [4, 6], "distant": [4, 6], "galaxi": [4, 6], "farther": 4, "harlow": 4, "edwin": 4, "hubbl": 4, "maxim": [4, 5, 9], "angl": [4, 5, 6, 7, 9], "theta": [4, 5, 6, 7, 8, 10], "co": [4, 5, 6, 7, 8, 9, 10, 15], "sin": [4, 5, 6, 7, 8, 9, 15], "33": [4, 5, 8, 15], "180": [4, 5], "pure": [4, 9, 10], "transvers": 4, "analyz": [4, 6, 15], "sent": 4, "outbound": 4, "annual": 4, "everi": [4, 7, 9, 10, 12, 15], "3f_o": 4, "lead": [4, 6, 7, 8, 9, 10], "That": [4, 10], "conflict": [4, 6], "modif": [4, 5, 12], "ball": [4, 5, 6, 7, 8], "collid": [4, 5, 6], "perfectli": 4, "u_o": [4, 8], "p_y": [4, 5, 7], "ff": [4, 5], "2mu_o": 4, "conserv": [4, 5, 6, 8, 9], "insert": [4, 5, 7, 8, 9], "gather": 4, "p_x": [4, 5, 7], "mf": 4, "neq": [4, 9], "preserv": [4, 15], "multipli": [4, 7, 8, 9, 10, 15], "trial": [4, 5, 8, 9], "rememb": [4, 6, 7, 15], "distinct": [4, 6, 8, 9, 14, 15], "plausibl": [4, 6, 7], "tau": [4, 7, 9], "goo": 4, "accuraci": [4, 12], "14c": 4, "mc": 4, "resist": [4, 8, 10], "42": [4, 5, 10, 15], "kinet": [4, 5, 6, 7, 8, 10], "w_": 4, "int_1": 4, "k_2": [4, 7, 8], "k_1": [4, 7, 8], "int": [4, 6, 8, 9, 15], "integr": [4, 5, 6, 7, 9, 12], "greater": [4, 6, 7, 8, 9, 10, 15], "diverg": [4, 8], "Be": [4, 8], "mistak": 4, "student": [4, 5, 6, 7], "medic": [4, 5], "000": [4, 6], "volt": [4, 5, 6], "metal": [4, 5, 6, 7, 8], "qv": 4, "602": [4, 5, 7, 8], "19": [4, 5, 6, 7, 8, 15], "049": 4, "rearrang": [4, 5, 8, 9], "091": 4, "nonrelativist": [4, 5, 6, 7, 8], "2k": [4, 5, 6, 8, 10], "Such": [4, 5, 7, 9], "equip": [4, 7], "particularli": [4, 7], "m_e": [4, 5, 6, 7, 8], "v_el": 4, "5e4": [4, 5, 7], "k_el": 4, "e_o": [4, 6, 7, 8, 9], "1f": [4, 5, 7, 9, 10], "05e": 4, "07": [4, 5, 6, 7], "38e": [4, 5], "rewritten": [4, 5, 6], "certain": [4, 5, 6, 7, 8, 9, 12], "proof": 4, "establish": [4, 7, 9], "merg": 4, "interchang": 4, "18th": [4, 8], "block": [4, 5, 6, 14, 15], "wood": [4, 6], "spring": [4, 8, 10], "compress": 4, "lock": 4, "thornton": [4, 6, 17, 18], "rex": [4, 6, 17, 18], "2012": [4, 6, 17, 18], "e_": [4, 5, 6, 7, 8], "2mc": [4, 5], "2m": [4, 7, 8, 9], "went": [4, 7, 15], "increas": [4, 5, 6, 7, 8, 10], "head": [4, 6], "f_r": 4, "quit": [4, 5, 9, 15], "typic": [4, 5, 6, 7, 14, 15], "numer": [4, 5, 8, 10, 15], "inappropri": 4, "macroscop": [4, 8, 10], "essenti": [4, 5, 6, 12], "m_wb": 4, "v_wb": 4, "k_wb": 4, "k_wb_rel": 4, "ke": 4, "6e": 4, "7e": 4, "fundament": [4, 5, 6, 7, 8], "inviol": 4, "56": [4, 5, 7, 15], "pc": [4, 7, 14], "muc": 4, "astrophys": [4, 14], "neutron": [4, 6, 7, 9], "th": [4, 7], "ev": [4, 5, 6, 7, 8, 9, 10], "prefix": 4, "mev": [4, 5, 6, 8], "mega": 4, "6726": 4, "26": [4, 5, 6, 7, 8, 9, 15], "67": [4, 5, 15], "38": [4, 5, 7, 15], "938": 4, "five": [4, 5, 9], "font": [4, 7, 8], "convers": [4, 5, 7, 8, 10, 15], "66054": [4, 10], "931": 4, "494": 4, "languag": [4, 14, 15, 16], "modul": [4, 7, 8, 10, 15], "hit": [4, 6, 7, 15], "78": [4, 15], "aris": [4, 5, 6, 7, 9, 12], "51": [4, 10, 15], "13": [4, 5, 6, 8, 9, 15], "948": 4, "95c": 4, "similarli": [4, 6, 8, 9, 10], "tow": [4, 9], "momentarili": 4, "stop": [4, 5, 12, 15], "excit": [4, 5, 7, 8, 9, 10], "outcom": [4, 7, 10], "disappear": [4, 7, 8], "overlin": [4, 10], "symbol": [4, 8, 9, 14, 15], "deuteron": [4, 6, 7], "k_p": 4, "p_p": 4, "gamma_p": 4, "beta_p": 4, "3fc": 4, "948c": 4, "84e": 4, "h": [4, 5, 6, 7, 8, 9, 12], "bound": [4, 5, 6, 8, 9, 12], "e_b": 4, "m_": [4, 6, 10], "sum_i": [4, 7, 8, 9], "m_i": 4, "007275c": 4, "008665c": 4, "939": 4, "57": [4, 5, 7, 10, 15], "01355c": 4, "1875": [4, 5, 6], "61": [4, 6, 15], "minimum": [4, 5, 6, 7, 8, 12], "139": [4, 5], "m_pc": 4, "m_d": [4, 6], "m_p": [4, 6], "69": [4, 15], "m_pi": 4, "57039": 4, "6f": 4, "319578": 4, "me": 4, "convict": 4, "els": [4, 5, 7, 8, 10, 15, 16], "said": [4, 10], "bit": [4, 15], "patchwork": 4, "publish": [4, 6, 10, 12], "titl": [4, 12, 13, 15], "zur": 4, "elektrodynamik": 4, "bewegt": 4, "k\u00f6rper": 4, "german": [4, 5], "fulli": [4, 5, 6, 7, 15], "q_o": [4, 5], "conduct": 4, "wire": [4, 6], "lorenz": 4, "page": [4, 5, 14], "hand": [4, 5, 8, 9, 13, 15], "repel": [4, 5, 6], "upward": [4, 5], "ion": [4, 6], "closer": [4, 5], "presenc": [4, 5, 9, 12], "themselv": [4, 9, 15], "95": [4, 5, 15], "jet": 4, "airlin": 4, "240": 4, "superson": 4, "station": 4, "cm": [4, 5, 6, 7, 8, 9], "14": [4, 5, 7, 8, 15], "20": [4, 5, 6, 7, 8, 10, 12, 15], "rocket": [4, 16], "ship": 4, "astronaut": 4, "aboard": 4, "middl": [4, 7, 8], "60c": 4, "someon": 4, "group": [4, 6, 7, 9], "decid": [4, 6, 8], "mauna": 4, "kea": 4, "site": [4, 15], "hawaii": 4, "4205": 4, "why": [4, 5, 6, 9, 15], "solar": [4, 5, 6], "1400": 4, "khz": 4, "92c": 4, "5c": 4, "hadron": 4, "tev": 4, "kaon": 4, "498": 4, "135": 4, "1900": [5, 6, 7], "1930": 5, "partli": 5, "motiv": 5, "advanc": [5, 8], "1890": 5, "evacu": 5, "tube": [5, 6, 7], "constitut": [5, 12], "atom": [5, 7, 8, 10], "substructur": 5, "penetr": [5, 7, 8], "phosphoresc": 5, "screen": [5, 7, 16], "vividli": 5, "darken": 5, "room": [5, 7, 10], "kind": [5, 6, 12], "unaffect": 5, "better": [5, 7, 9, 10], "bombard": [5, 6, 7, 9], "bone": 5, "1901": 5, "youtub": [5, 6, 16], "video": [5, 6, 7], "tede": 5, "gase": [5, 6], "particl": [5, 6, 9, 10], "earli": [5, 6, 7, 8, 9, 10], "invent": 5, "1897": 5, "ferdinand": 5, "braun": 5, "anod": [5, 6], "fluoresc": [5, 7], "deflect": [5, 6, 9], "permit": [5, 8, 12], "collim": [5, 7], "voltag": [5, 6], "convincingli": [5, 6], "1906": 5, "poorer": 5, "ioniz": [5, 6], "residu": 5, "ga": [5, 6, 7, 9, 10], "improv": [5, 7, 8, 15], "With": [5, 6, 7, 9, 10], "region": [5, 6, 7, 8], "f_y": 5, "ma_i": 5, "qe": 5, "a_i": [5, 7], "travers": [5, 7], "length": [5, 6, 7, 8, 9, 15], "v_o": [5, 6], "tan": [5, 6, 7, 8, 15], "v_y": [5, 10], "v_x": [5, 7, 10], "condit": [5, 8, 9, 12, 15, 16], "extract": [5, 12, 15], "undergradu": [5, 16], "reproduc": [5, 12], "cancel": [5, 8, 9, 10], "05": [5, 6, 7, 8, 9, 10], "e_mag": 5, "2e4": 5, "b_mag": 5, "8e": [5, 8, 15], "l_plate": 5, "deflect_ang": 5, "radian": [5, 6], "q_m": 5, "lower": [5, 6, 7, 9, 10], "larger": [5, 6, 7, 8, 15], "anticip": 5, "previous": [5, 6, 7, 9], "carrier": 5, "attempt": [5, 7, 8], "millikan": 5, "1911": [5, 6], "visual": [5, 9], "uncharg": 5, "oil": 5, "drop": [5, 6, 8], "scheme": [5, 9, 12], "downward": [5, 6], "air": [5, 6, 7, 8, 10], "_j": 5, "drag": 5, "oppos": 5, "henc": [5, 9, 15], "via": [5, 6, 10], "stoke": 5, "diamet": [5, 6, 7], "sphere": [5, 6], "buoyanc": 5, "balanc": 5, "_e": [5, 6], "flat": 5, "mgd": 5, "termin": [5, 12, 15], "rho": [5, 6, 7], "six": [5, 10], "modern": [5, 7, 10, 14, 16], "quot": [5, 15], "plastic": 5, "sprai": 5, "solut": [5, 6, 7, 8, 10, 13], "evapor": 5, "occasion": [5, 6], "dropdown": [5, 16], "menu": [5, 16], "histogram": 5, "bin": 5, "multipl": [5, 6, 7, 8, 9, 15], "fit": [5, 7, 8, 12], "77": [5, 7, 15], "percentag": [5, 6], "click": [5, 7], "43": [5, 6, 15], "126": 5, "74": [5, 15], "83": [5, 15], "66": [5, 15], "22": [5, 6, 7, 15], "34": [5, 7, 8, 15], "85": [5, 7, 15], "44": [5, 8, 15], "00": 5, "136": [5, 7], "64": [5, 9, 15], "60": [5, 15], "03": [5, 6], "134": 5, "143": 5, "55": [5, 7, 9, 15], "82": [5, 7, 15], "71": [5, 15], "89": [5, 9, 15], "39": [5, 15], "32": [5, 6, 7, 8, 9, 15], "54": [5, 7, 10, 15], "140": 5, "58": [5, 7, 15], "col": [5, 7, 8, 9], "218": [5, 7, 8, 9], "256": [5, 7, 8, 9], "50": [5, 7, 8, 9, 10, 15], "genfromtxt": [5, 15], "raw": 5, "githubusercont": 5, "com": [5, 15], "saturnaxi": [5, 14, 16], "modernphys": [5, 16], "chapter_3": 5, "oil_drop": 5, "csv": 5, "delimit": 5, "hist": 5, "color": [5, 6, 7, 8, 9, 10], "set_xtick": [5, 7, 8], "set_ytick": [5, 7, 8, 9], "optim": [5, 8], "curve_fit": 5, "q0": 5, "popt": 5, "pcov": 5, "pct_error": 5, "transax": 5, "smooth": [5, 7], "vs": [5, 15], "burn": 5, "flame": 5, "prism": 5, "constitu": [5, 6], "rowland": 5, "qualiti": 5, "grate": [5, 6, 7], "spectroscopi": [5, 6], "professor": 5, "chosen": [5, 10, 12], "hopkin": 5, "foremost": 5, "american": 5, "presid": 5, "societi": [5, 12], "1899": 5, "vice": 5, "neither": 5, "nor": [5, 12], "earn": 5, "ph": [5, 6, 7], "schemat": [5, 6, 7, 9], "spectromet": [5, 7], "centimet": 5, "maxima": [5, 7], "5000": [5, 6], "promin": 5, "mm": [5, 6], "bunsen": 5, "gustav": [5, 6], "kirchhoff": 5, "fingerprint": 5, "identif": [5, 12], "composit": [5, 6], "flourish": 5, "finer": [5, 9], "evenli": [5, 10], "attent": 5, "paid": 5, "hope": 5, "sunlight": 5, "helium": [5, 6, 9], "1800": 5, "underli": [5, 6, 7, 8], "chemist": [5, 6], "build": [5, 6, 7], "johann": 5, "balmer": [5, 6], "1885": 5, "empir": [5, 6, 9], "formula": [5, 6], "uv": [5, 8], "white": [5, 6, 7, 14], "paramet": [5, 6, 8, 10, 15], "coeffici": [5, 8], "perhap": [5, 9], "confus": [5, 10, 15], "analyt": 5, "sole": [5, 9], "364": 5, "match": [5, 13], "formerli": 5, "angstrom": 5, "\u00e5": 5, "ander": 5, "\u00e5ngstrom": 5, "unicod": [5, 6], "x212b": [5, 6], "reciproc": [5, 7], "r_": [5, 6, 9], "rydberg": [5, 6], "0972": 5, "096776": [5, 6], "walther": [5, 9], "ritz": [5, 6], "1925": [5, 7, 8, 9], "uncov": 5, "mysteri": [5, 6], "discover": [5, 12], "lyman": [5, 6], "1916": 5, "paschen": [5, 6], "infrar": [5, 6], "ir": 5, "brackett": 5, "1922": [5, 9], "pfund": 5, "1924": [5, 7], "700": 5, "91": [5, 15], "174": 5, "parenthes": [5, 8, 9, 14, 15], "permiss": [5, 12, 16], "121": [5, 7, 8, 10], "102": [5, 7, 8], "ey": [5, 7], "656": [5, 6], "47": [5, 6, 15], "red": [5, 7, 8], "486": 5, "blue": [5, 7, 8], "green": 5, "434": 5, "violet": [5, 8], "410": [5, 6], "397": 5, "difficult": [5, 7, 8], "63": [5, 15], "1282": 5, "infti": [5, 6, 7, 8, 9, 10], "820": [5, 6], "geq": [5, 6, 7, 8], "rydberg_wavelength": 5, "kth": 5, "isfinit": 5, "096776e7": 5, "series_nam": 5, "k_val": 5, "inf": [5, 6], "k_v": 5, "h_lambda": 5, "think": [5, 9, 10, 15], "energi": [5, 6, 8, 10], "smaller": [5, 6, 7, 8, 9], "impli": [5, 6, 7, 8, 10, 12], "quark": 5, "oxygen": 5, "pipe": [5, 7], "music": [5, 12], "overton": [5, 7], "maximum": [5, 6, 7, 9, 10, 15], "open": [5, 7, 14, 15, 16], "none": [5, 15], "ve": 5, "campfir": 5, "forg": 5, "stove": 5, "550": 5, "orang": [5, 6, 10], "emitt": [5, 8], "ideal": [5, 7, 10], "onto": [5, 6, 7, 9], "drill": 5, "hole": 5, "hollow": 5, "black": [5, 6, 7], "insul": [5, 6], "enclosur": [5, 7], "distribut": [5, 6, 7, 8, 12], "absorpt": [5, 6, 9], "mathcal": [5, 7], "wien": [5, 7], "lambda_": [5, 6, 7], "898": 5, "vari": [5, 6, 7, 8], "prescrib": 5, "quantifi": [5, 6, 7], "int_0": [5, 8, 9, 10], "josef": 5, "stefan": 5, "1879": 5, "boltzmann": [5, 10], "epsilon": 5, "sigma": [5, 6, 7], "6705": 5, "furnac": 5, "1600": 5, "door": 5, "1873": 5, "1547": 5, "zero_celsiu": 5, "t_wall": 5, "oc": 5, "t_k": 5, "lambda_max": [5, 6], "500": [5, 7, 8], "surf": 5, "5800": 5, "p_": [5, 6, 7], "082": 5, "radi": 5, "flux": [5, 7], "au": [5, 6, 10], "495": 5, "1380": 5, "slightli": [5, 8, 9, 10], "throughout": [5, 6, 8, 15], "1360": 5, "littl": [5, 6, 9, 15], "odot": 5, "5777": 5, "astronomical_unit": 5, "t_surf": 5, "l_max": 5, "1e9": 5, "stef_boltz": 5, "surf_area": 5, "rad": [5, 6], "lmax_sun": 5, "t_sun": 5, "rad_sun": 5, "r_sun": 5, "95700e8": 5, "iau": 5, "en": 5, "wiki": [5, 12], "solar_radiu": 5, "3781e6": 5, "earth_radiu": 5, "flux_au": 5, "40e": 5, "unsuccess": [5, 6], "electromagnet": [5, 6, 7, 8, 9], "equipart": 5, "thermodynam": [5, 10], "assign": [5, 7, 9, 14, 15], "rayleigh": 5, "sir": 5, "proportion": 5, "ckt": 5, "formul": [5, 7, 8], "muster": 5, "nonzero": [5, 7, 8, 10], "deviat": [5, 6, 7, 8, 10], "badli": 5, "paul": [5, 7, 9], "ehrenfest": [5, 9], "dub": 5, "expert": 5, "reject": [5, 6, 7], "statist": [5, 7, 9], "version": [5, 7, 13, 15, 16], "doubt": [5, 12], "1889": 5, "irrevers": 5, "tri": [5, 6, 9], "wasn": 5, "awar": [5, 6], "plank": 5, "sort": [5, 15], "hf": [5, 6, 7, 8, 10], "tot": [5, 8], "ak": 5, "hc": [5, 6, 7, 9], "e_n": [5, 6, 7, 8], "nhf": [5, 7], "6261": [5, 7], "spent": 5, "plan": 5, "fail": [5, 12, 15], "cornerston": 5, "quotient": 5, "trivial": [5, 8, 9, 10], "bracket": [5, 14, 15], "xe": 5, "transcendent": [5, 8], "bisect": [5, 6], "965": 5, "965k": 5, "x_tran": 5, "lam": [5, 9], "wien_const": 5, "func": [5, 15], "6000": 5, "x_max": 5, "wien_disp": 5, "3e": [5, 6, 7, 10], "898e": 5, "39e": 5, "09": [5, 7], "fell": 5, "electrod": 5, "electroscop": 5, "valenc": [5, 6], "escap": [5, 8, 15], "thermion": [5, 6], "secondari": 5, "transfer": [5, 6, 9, 10], "shine": [5, 7], "weakli": 5, "extra": [5, 8, 15], "eject": 5, "photoelectron": 5, "phi": [5, 6, 7, 8], "makeup": [5, 6], "pd": 5, "93": [5, 15], "pt": 5, "na": [5, 9], "nd": 5, "zn": 5, "cu": [5, 10], "ni": 5, "zr": 5, "fe": [5, 8], "pb": 5, "photocathod": 5, "collector": [5, 6], "retard": 5, "impos": [5, 12], "suppli": [5, 6, 12], "ammet": [5, 6], "photocurr": 5, "photoelecton": 5, "filter": 5, "monochromat": [5, 7], "bias": 5, "v_c": 5, "suffici": 5, "satur": 5, "energet": [5, 6], "threshold": 5, "instantli": 5, "leq": [5, 7, 8, 9], "illumin": 5, "zinc": 5, "289": 5, "except": [5, 8, 12], "rudimentari": 5, "1902": 5, "primarili": [5, 7], "philipp": 5, "lenard": 5, "extens": [5, 8], "inexplic": 5, "elaps": 5, "immedi": [5, 8, 14, 15], "97": [5, 15], "cubic": [5, 6, 7, 8], "attain": [5, 9], "hr": 5, "156": 5, "i_src": 5, "instens": 5, "phi_na": 5, "ke_p": 5, "tot_": 5, "na_dens": 5, "968": 5, "na_molar_mass": 5, "990": 5, "na_atoms_vol": 5, "1e6": 5, "d_na": 5, "na_atom_area": 5, "energy_r": 5, "t_req": 5, "54e": 5, "63e": 5, "16e": [5, 8], "intrigu": 5, "english": 5, "spread": [5, 6, 7], "local": [5, 7, 8, 15, 16], "aspect": [5, 7], "deliv": 5, "struck": [5, 6, 7], "overcom": 5, "whatev": 5, "safe": 5, "degrad": 5, "2_": 5, "ev_o": 5, "1st": 5, "2nd": [5, 10, 15], "collect": [5, 6, 8, 12, 15], "hf_o": 5, "intercept": 5, "disprov": 5, "skeptic": [5, 7], "iii": [5, 7, 8, 12], "928": 5, "typo": 5, "na_lam": 5, "arrai": [5, 7, 15], "4339": 5, "4047": 5, "3650": [5, 10], "3126": 5, "2535": 5, "na_volt": 5, "103": 5, "058": 5, "x_coord": 5, "y_coord": 5, "1e14": 5, "polyfit": 5, "poly1d": 5, "65e": [5, 7], "lithium": 5, "626": [5, 8], "phi_li": 5, "e_400": 5, "400e": 5, "97e": 5, "mv_": [5, 9, 10], "209": 5, "portion": [5, 8, 12, 15], "ke_e": [5, 7], "e_phot": 5, "f_phot": 5, "l_phot": 5, "50e": 5, "43e": 5, "09e": [5, 7], "ye": [5, 15], "maintain": 5, "pictur": [5, 6, 9, 15], "bremsstrahlung": 5, "brake": 5, "e_1": [5, 6, 7, 8], "e_f": 5, "e_i": 5, "sketch": 5, "tungsten": 5, "filament": [5, 6], "focus": [5, 10], "gtrsim": 5, "content": [5, 12, 15, 16], "radiolog": 5, "diagnos": 5, "flaw": [5, 6], "weld": 5, "cast": [5, 15], "crystal": [5, 7], "strongli": [5, 7, 9], "molybdenum": 5, "chromium": 5, "min": [5, 6, 7, 8], "hf_": 5, "duan": 5, "hunt": 5, "kv": 5, "kev": [5, 7], "ulrei": 5, "1918": 5, "curv": [5, 7, 8, 9, 10], "lam_min": 5, "035": 5, "wake": 5, "boat": 5, "reradi": 5, "arthur": [5, 15], "1923": 5, "grai": [5, 8, 10], "phil": 5, "mag": 5, "611": 5, "1913": [5, 6], "unmodifi": 5, "backward": [5, 6], "review": 5, "treat": [5, 6, 7, 15], "relativist": [5, 7], "p_e": [5, 7], "recoil": [5, 6], "m_ec": [5, 7], "hff": 5, "check": [5, 6, 8, 9, 10, 15], "071": 5, "compoton": 5, "lambda_c": 5, "426": [5, 8], "newli": 5, "tightli": [5, 6], "correspondingli": 5, "1927": [5, 7], "050": 5, "gold": [5, 6, 7], "62": [5, 15], "largest": [5, 6, 8], "e_x": 5, "inner": [5, 6], "longest": [5, 6, 10], "2h": 5, "00243": 5, "055": 5, "phot_": 5, "l_x": [5, 9], "l_prime": 5, "e_xp": 5, "48e": 5, "485e": 5, "62e": 5, "26e": 5, "51e": [5, 6], "19e": 5, "forbidden": [5, 8, 9], "versa": 5, "violat": [5, 8, 9, 12], "511": 5, "lightest": 5, "1932": [5, 6], "carl": 5, "anderson": 5, "positron": 5, "dirac": [5, 7, 9], "miss": [5, 6, 15], "massiv": [5, 6, 7], "022": 5, "domin": [5, 8], "theta_": [5, 6], "2m_ec": 5, "qquad": [5, 6, 8, 9], "fo": [5, 6], "doom": 5, "proxim": 5, "drawn": 5, "atomlik": 5, "positronium": 5, "binari": 5, "2m_e": [5, 6, 7, 8], "hf_1": 5, "hf_2": 5, "f_1": 5, "f_2": 5, "2hf": 5, "draw": [5, 7, 15], "buoyant": 5, "droplet": [5, 6], "freeli": 5, "smallest": [5, 6, 7, 8, 15], "293": [5, 10], "2500": 5, "9000": 5, "basketbal": 5, "human": [5, 15], "halv": 5, "270": 5, "dental": 5, "machin": [5, 15], "oper": [5, 8], "theori": [6, 7, 8, 9, 12], "dat": 6, "featureless": 6, "har": 6, "address": 6, "search": [6, 15], "piec": 6, "belong": 6, "ancient": 6, "fire": 6, "70": [6, 15], "electrolysi": 6, "conductor": [6, 8], "hint": [6, 15], "indirect": [6, 12], "unravel": 6, "central": [6, 7, 9, 10], "question": [6, 7, 10], "arrang": [6, 7, 12], "wherein": 6, "uniformli": 6, "embed": 6, "background": [6, 16], "liken": 6, "raisin": 6, "plum": 6, "pud": 6, "radiat": [6, 7, 9], "correl": 6, "imposs": [6, 7, 9], "ernest": 6, "project": [6, 7], "thin": 6, "assist": [6, 7], "geiger": 6, "conceiv": 6, "marsden": 6, "surprisingli": 6, "leaf": 6, "greatli": 6, "latest": 6, "calib": 6, "rifl": 6, "bullet": [6, 14], "box": [6, 8], "homogen": 6, "ricochet": 6, "foil": 6, "v_e": 6, "targ": 6, "2m_": 6, "7000": 6, "hardli": 6, "2v_": [6, 10], "2m_ev_": 6, "016": 6, "rangle_": 6, "ia": [6, 9], "gieger": 6, "197": 6, "occupi": [6, 9], "lattic": [6, 7, 8], "2300": 6, "79": [6, 15], "empti": [6, 9, 15], "core": [6, 9], "z_1e": 6, "z_2e": 6, "impact": 6, "closest": 6, "projectil": 6, "hyperbol": [6, 8], "besid": 6, "undeflect": [6, 9], "equiv": [6, 8, 10, 15], "mv_ob": 6, "instantan": [6, 7, 10], "impuls": 6, "appreci": 6, "_f": 6, "_i": [6, 9], "p_f": 6, "p_i": 6, "isoscel": 6, "2mv_o": [6, 8], "z_1": 6, "z_2": 6, "_r": 6, "mr": 6, "mv_o": 6, "v_ob": 6, "int_": [6, 7, 8, 9, 10], "phi_i": 6, "phi_f": 6, "cot": 6, "select": 6, "b_o": 6, "theta_o": 6, "circl": [6, 9], "nt": 6, "nta": 6, "n_m": 6, "m_g": 6, "n_": [6, 10], "ta": 6, "z_1z_2": 6, "epsilon_0": 6, "n_au": 6, "9e28": 6, "t_au": 6, "k_alpha": 6, "7e6": 6, "z_au": 6, "z_he": 6, "theta_alpha": 6, "f_au": 6, "db": [6, 9], "df": [6, 8, 10], "eq": [6, 9, 10], "csc": 6, "n_i": [6, 8], "ring": [6, 7], "width": [6, 7, 8, 9, 15], "da": [6, 10], "4th": 6, "basi": [6, 10, 12], "r_alpha": 6, "01": [6, 7, 8, 9, 10, 15], "ntheta_ni": 6, "ntheta_ni_mm2": 6, "15e": [6, 8], "verif": [6, 8], "planetari": [6, 9], "resembl": 6, "circular": [6, 7, 9], "centripet": 6, "a_r": 6, "tangenti": 6, "m_ev": 6, "justifi": [6, 7], "treatment": [6, 7], "whether": [6, 7, 8, 9, 12, 15], "r_hyd": 6, "25e": 6, "1836": 6, "crash": 6, "shortli": [6, 7], "niel": 6, "meet": 6, "ws": 6, "somehow": 6, "acquaint": 6, "govern": [6, 8, 9], "blackbodi": 6, "impress": 6, "wonder": 6, "laid": 6, "revolv": [6, 9], "fiction": 6, "intuit": 6, "analog": [6, 8, 9, 10], "physic": [6, 8, 15, 16], "1915": [6, 7], "conjunct": [6, 15], "e_2": [6, 7, 8, 9], "dynam": [6, 10], "nhf_": 6, "orb": [6, 9], "equival": [6, 7, 12, 13, 15], "hbar": [6, 7, 8, 9], "pronounc": 6, "bar": [6, 8, 10], "self": [6, 15], "hardest": 6, "critic": 6, "m_evr": 6, "m_er": 6, "r_n": 6, "a_o": [6, 7, 9], "53": [6, 15], "2r_1": 6, "2a_o": [6, 7, 9], "suspect": 6, "shell": [6, 9, 10, 15], "64c": 6, "097373": 6, "absent": 6, "broad": [6, 7, 15], "displai": [6, 7, 8, 9, 12, 13], "v_n": 6, "v_1": [6, 8], "fine": [6, 9, 15], "137": 6, "shortest": 6, "denomin": [6, 8], "0974": 6, "335": 6, "875": 6, "219": 6, "203": 6, "rydberg_eqn_bohr": 6, "r_infti": 6, "wave_num_max": 6, "wave_num_min": 6, "infin": [6, 8], "lambda_min": 6, "334e": 6, "219e": 6, "troubl": 6, "unimport": 6, "nearest": 6, "cascad": 6, "2n": 6, "2e_o": 6, "hn": 6, "r_e": 6, "analysi": [6, 7], "mu_e": 6, "m_em": 6, "999456": 6, "athough": 6, "h_": 6, "deuterium": 6, "tritium": 6, "007276": 6, "013553": 6, "triton": 6, "015500": 6, "0005485799": 6, "r_h": 6, "99946r_": 6, "r_d": 6, "99973r_": 6, "r_t": 6, "99982r_": 6, "2r": [6, 9], "wer": 6, "m_t": 6, "m_nucleu": 6, "l_alpha": 6, "5f": 6, "h_alpha": 6, "99946": 6, "99973": 6, "99982": 6, "ze": 6, "spectrograph": 6, "arnold": 6, "sommerfeld": [6, 7], "adapt": [6, 12, 16], "hypothes": 6, "ot": 6, "split": [6, 8, 9, 15], "stark": [6, 8], "broaden": [6, 9], "successfulli": [6, 8], "denigr": 6, "tha": 6, "stronger": [6, 9], "radii": 6, "roman": 6, "histor": 6, "heavi": 6, "dislodg": 6, "vacanc": 6, "descend": [6, 9], "full": [6, 7, 8, 9, 12, 13], "k_": [6, 7, 8, 10], "lab": 6, "european": [6, 12, 15], "moselei": 6, "engag": 6, "catalogu": 6, "cr": 6, "1914": 6, "discuss": [6, 7], "copenhagen": 6, "mention": 6, "extent": [6, 9, 12], "lambda_k": 6, "reorder": 6, "tabul": 6, "aluminum": [6, 7], "promethium": 6, "1940": 6, "firmer": 6, "foot": 6, "clarifi": 6, "l_": 6, "lambda_l": 6, "z_": 6, "eff": 6, "proce": 6, "crz_": 6, "rewrit": [6, 7, 9, 10], "rz_": 6, "4n": 6, "spectroscop": [6, 9], "franck": 6, "hot": 6, "mesh": 6, "regist": 6, "electromet": 6, "voltmet": 6, "instruct": [6, 10, 15], "assembl": 6, "hg": 6, "vapor": 6, "sudden": 6, "suddenli": 6, "ast": 6, "teh": [6, 9], "onset": 6, "arbitrari": [6, 9], "versu": 6, "graph": [6, 15], "context": [6, 12], "88": [6, 15], "inelast": 6, "promot": [6, 9], "sharpli": 6, "discer": 6, "revolut": [6, 9], "potassium": 6, "exercis": [6, 8, 12, 17, 18], "magnesium": 6, "barkla": 7, "exhibit": [7, 8], "von": 7, "laue": 7, "furthermor": 7, "thew": 7, "apertur": [7, 8], "obstruct": 7, "physicsopenlab": 7, "nacl": 7, "fcc": 7, "walter": 7, "friedrich": 7, "knip": 7, "solid": [7, 8, 10], "bragg": 7, "son": 7, "lawrenc": 7, "exploit": 7, "spot": 7, "dot": [7, 8, 14], "ste": 7, "Is": 7, "asymmetr": 7, "chare": 7, "dipol": [7, 9], "interf": 7, "rock": 7, "simplif": 7, "adjac": 7, "outgo": 7, "2d": [7, 15], "interatom": 7, "terminolog": [7, 9], "dash": [7, 8], "interplanar": 7, "father": 7, "orient": [7, 9], "su": 7, "dna": 7, "powder": 7, "xrd": 7, "crystallographi": 7, "282": 7, "varieti": 7, "noncub": 7, "098": 7, "calibr": 7, "1920": [7, 9], "crystallin": 7, "princ": 7, "debrogli": 7, "vers": 7, "encourag": [7, 12, 13], "prohibit": [7, 8], "doctor": 7, "thesi": 7, "pari": 7, "arous": 7, "wavelik": [7, 8], "virtual": [7, 10], "tenni": 7, "057": 7, "2mk": 7, "2m_ek": 7, "9": [7, 8, 9, 10, 12, 15], "109": [7, 8], "2398": 7, "debroglie_wav": 7, "m_tb": 7, "v_tb": 7, "me_ev": 7, "k_ev": [7, 10], "k_j": [7, 10], "l_tb": 7, "l_e": 7, "73e": 7, "circumfer": 7, "mvr": [7, 9], "rp": 7, "nh": 7, "clinton": 7, "davisson": 7, "lester": 7, "germer": 7, "bottl": [7, 15], "explod": 7, "nickel": 7, "accid": 7, "breakag": 7, "oxid": 7, "repair": 7, "variat": 7, "polycrystallin": 7, "trigonometr": 7, "215": 7, "165": 7, "transmiss": [7, 8], "celluloid": 7, "platinum": 7, "1937": 7, "kinetic_energi": 7, "germeer": 7, "85e": 7, "cold": 7, "2m_n": 7, "3m_nkt": 7, "m_n": 7, "675": 7, "381": 7, "515": 7, "145": [7, 10], "287": 7, "suitabl": [7, 8], "supercold": 7, "extran": 7, "debroglie_wave_ga": 7, "t_room": 7, "l_room": 7, "t_cold": 7, "l_cold": 7, "452e": 7, "867e": 7, "heavili": 7, "sinusoid": [7, 8], "psi": [7, 8, 9, 10], "kx": [7, 8], "usag": 7, "spectroscopist": 7, "const": 7, "rcparam": [7, 8], "updat": [7, 8], "mathtext": [7, 8], "fontset": [7, 8], "sine_wav": 7, "sine": [7, 8, 9], "l_wave": 7, "v_wave": 7, "x_wave": 7, "psi_o": [7, 8], "psi_t": 7, "ncol": [7, 8, 10], "quarter": 7, "button": [7, 16], "harmon": 7, "crest": 7, "satisfi": [7, 8, 9, 12], "beat": 7, "psi_a": [7, 8], "psi_b": [7, 8], "overal": [7, 10], "bottom": [7, 8], "panel": 7, "envelop": 7, "ticker": 7, "maxnloc": 7, "offset": 7, "ax11": [7, 8], "321": 7, "ax12": [7, 8], "322": 7, "ax21": [7, 8], "323": 7, "ax22": [7, 8], "324": 7, "ax31": [7, 8], "325": 7, "ax32": [7, 8], "326": 7, "ax_list": [7, 10], "theta_a": 7, "theta_b": 7, "amp_a": 7, "amp_b": 7, "label_a": 7, "label_b": 7, "ph_off": 7, "psi_ab": 7, "k_diff": 7, "psi_beat": 7, "set_xticklabel": [7, 8], "yaxi": 7, "set_major_loc": 7, "bbox_to_anchor": [7, 8], "frameon": [7, 8], "subplots_adjust": [7, 10], "hspace": 7, "wspace": [7, 10], "omega_1": 7, "omega_2": 7, "psi_1": [7, 8], "psi_2": [7, 8], "k_1x": [7, 8], "k_2x": 7, "omega_1t": 7, "cosin": [7, 8, 9], "2a": [7, 8], "av": [7, 8], "omega_": 7, "u_": 7, "confin": [7, 8, 9], "fourier": [7, 10], "k_ix": 7, "omega_i": [7, 10], "gaussian": [7, 8], "easi": [7, 14, 15], "k_ox": 7, "k_o": 7, "exponenti": [7, 8, 9, 10, 15], "a_k": 7, "delta_k": 7, "i_k": 7, "psi_gauss": 7, "psi_wav": 7, "psi_x": [7, 8], "delta_x": [7, 8], "std": 7, "ax1": [7, 8, 10], "ax2": [7, 8, 10], "122": [7, 8, 10], "axvlin": [7, 8, 10], "linestyl": [7, 8, 9, 10], "x_o": [7, 8], "dk": 7, "dp": 7, "2pc": 7, "kv_": 7, "dw": 7, "dv_": 7, "nondispers": 7, "plai": [7, 10], "deep": [7, 8], "throw": 7, "pond": 7, "compton": 7, "charact": [7, 8, 13, 14, 15], "patter": 7, "minima": 7, "emerg": [7, 8], "contradict": 7, "christma": 7, "lectur": [7, 17, 18], "1961": 7, "clau": 7, "j\u00f6nsson": 7, "electrolyt": 7, "deposit": 7, "polym": 7, "strip": 7, "theta_1": 7, "y_1": 7, "68": [7, 15], "937": 7, "nake": 7, "magnifi": 7, "lens": 7, "d_slit": 7, "n_1": [7, 8], "d_screen": 7, "arcsin": 7, "32e": 7, "36e": 7, "68e": 7, "37e": 7, "destroi": 7, "devis": 7, "big": [7, 15], "complementari": 7, "complementar": 7, "readi": 7, "trade": 7, "dictat": 7, "werner": 7, "heisenberg": [7, 8, 10], "p_z": 7, "consequ": 7, "uncertain": 7, "exact": [7, 8, 15], "fenc": 7, "0546": 7, "96": [7, 12, 15], "004c": 7, "964e": 7, "004": 7, "45e": 7, "logic": [7, 15], "conjug": [7, 8, 9], "intrins": 7, "instrument": 7, "mew": 7, "lifetim": 7, "manag": [7, 15], "irregular": 7, "delta_t": 7, "l_ph": 7, "delta_": 7, "f_ph": 7, "delta_f": 7, "f_ratio": 7, "27e": 7, "29e": [7, 8], "96e": 7, "ce": [7, 8, 10], "file": [7, 13, 15], "propto": [7, 8], "likelihood": 7, "instant": 7, "somewher": [7, 8], "born": 7, "1926": 7, "erwin": 7, "schr\u00f6dinger": 7, "1928": 7, "mainstream": 7, "unveil": 7, "\u00fcber": 7, "den": 7, "anschaulichen": 7, "inhalt": 7, "der": 7, "quantentheoretischen": 7, "kinematik": 7, "mechanik": 7, "denmark": 7, "pertain": 7, "school": 7, "wolfgang": [7, 9], "pauli": [7, 9], "argument": [7, 8, 9, 15], "choos": [7, 8, 9, 12, 15], "collaps": 7, "nondeterminist": 7, "chao": 7, "vagu": 7, "nonprobabilist": 7, "bother": 7, "relianc": 7, "god": [7, 10], "dice": [7, 10], "paradox": 7, "refut": 7, "cat": 7, "1935": 7, "live": [7, 10, 14, 16], "di": 7, "podolski": 7, "rosen": 7, "epr": 7, "bell": 7, "altern": [7, 10], "hugh": 7, "everett": 7, "graduat": 7, "1957": 7, "invok": 7, "favor": [7, 8], "trap": [7, 8], "vanish": 7, "boundari": [7, 8, 9], "reson": [7, 8], "ldot": [7, 8, 9], "lambda_n": 7, "k_n": [7, 8], "8m": 7, "psi_n": [7, 8], "x_rng": [7, 8], "axhlin": [7, 8, 9], "psi_": [7, 8, 9], "horizontalalign": 7, "fontweight": 7, "bold": [7, 13, 14], "p_n": 7, "p_1": 7, "aros": 7, "8m_e": 7, "e_3": [7, 9], "338": 7, "pib_en": 7, "ell_": 7, "02e": 7, "42e": 7, "thrown": 7, "slinki": 7, "0030": 7, "6x": 7, "300t": 7, "7x": 7, "250t": 7, "i_o": [7, 10], "de": [8, 9, 10], "brogli": 8, "peter": 8, "deby": 8, "strictli": 8, "sens": [8, 10, 15], "mita": 8, "2021": 8, "pde": 8, "nabla": [8, 9], "introduct": [8, 9, 17, 18], "restrict": [8, 9, 12], "compris": 8, "ae": [8, 9], "ik": 8, "ka": 8, "negat": 8, "uniti": [8, 9, 10], "myst_nb": [8, 9], "glue": [8, 9], "psi_alpha": 8, "global": [8, 15], "norm_a": 8, "psi_al": 8, "fill_between": [8, 10], "set_yticklabel": [8, 9, 10], "psi_fig": 8, "symmetr": [8, 10], "2x": [8, 13], "biggr": 8, "rvert_0": 8, "p_a": 8, "432": 8, "p_b": 8, "rvert_": 8, "059": 8, "anywher": [8, 12], "everywher": [8, 15], "circumst": 8, "explicitli": 8, "sch\u00f6dinger": 8, "ordinari": [8, 9], "bt": 8, "ibt": 8, "iet": 8, "2me": 8, "ikx": 8, "inher": [8, 10], "epxect": 8, "forth": 8, "x_i": 8, "xp": 8, "procedur": [8, 9], "coffe": 8, "twice": 8, "hard": 8, "explor": 8, "kl": 8, "yield": [8, 9, 10], "wea": 8, "2me_n": 8, "2ml": 8, "psi_0": 8, "bohr": [8, 9, 10], "dv": [8, 10, 13], "2ax": 8, "32l": 8, "sympi": 8, "57l": 8, "diff": 8, "var": 8, "exp_x": 8, "exp_x2": 8, "exp_p": 8, "exp_p2": 8, "arg": 8, "realist": 8, "constraint": [8, 9], "lim_": 8, "psi_i": 8, "v_ox": 8, "kc": 8, "z_o": 8, "fsw": 8, "fsw_prime": 8, "griffith": 8, "z1": 8, "z_guess": 8, "z_root": 8, "append": [8, 15], "fsw_fig": 8, "graphic": 8, "minim": [8, 9], "fsw_wave_func": 8, "calc_k": 8, "calc_alpha": 8, "region_i": 8, "region_ii": 8, "logical_and": 8, "region_iii": 8, "len": [8, 15], "calc_en": 8, "z_n": 8, "calc_coeff": 8, "a_n": 8, "term_1": 8, "term_2": 8, "c_n": 8, "v_pot": 8, "fsw_func_fig": 8, "mark": [8, 12], "remark": 8, "joint": 8, "smoothli": 8, "edg": 8, "depth": 8, "exceedingli": 8, "_x": [8, 10], "_y": [8, 10], "_z": [8, 10], "laplacian": 8, "usual": [8, 9], "shorthand": 8, "notat": [8, 9, 13, 15], "l_1": 8, "l_2": 8, "l_3": 8, "cube": [8, 15], "k_2y": 8, "k_3z": 8, "k_i": 8, "k_3": 8, "k_1l_1": 8, "n_3": 8, "k_1a": 8, "211": [8, 9], "ml": 8, "112": 8, "degener": [8, 9], "degeneraci": [8, 9], "eccentr": [8, 9], "perturb": 8, "therebi": [8, 15], "sho": 8, "kappa": [8, 10], "restor": 8, "hook": 8, "shm": 8, "diatom": [8, 10], "taylor": 8, "v_2": 8, "v_i": 8, "addition": [8, 9, 15], "hermit": 8, "sho_potenti": 8, "sho_wave_func": 8, "sho_fig": 8, "virial": 8, "scope": [8, 10, 12], "polynomi": [8, 9], "h_n": 8, "psi_3": 8, "3x": 8, "elif": [8, 15], "421": 8, "422": 8, "423": 8, "424": 8, "425": 8, "ax41": 8, "427": 8, "ax42": 8, "428": 8, "ax_psi": 8, "ax_prob": 8, "sho_wav": 8, "oscillatori": 8, "damp": 8, "heisenbergi": 8, "e_col": 8, "x_n": 8, "x_p": 8, "sho_energi": 8, "greatest": 8, "contrari": 8, "cdot1": 8, "5pt": 8, "odd": [8, 9, 10], "h_o": 8, "_o": 8, "invert": 8, "vallei": 8, "nasa": 8, "grace": 8, "satellit": 8, "bend": 8, "transmit": 8, "gg": 8, "ik_ix": 8, "ik_": 8, "ge": 8, "ik_il": 8, "k_iae": 8, "k_ibe": 8, "k_ife": 8, "tediou": 8, "odeint": 8, "simpson": [8, 10], "fsolv": 8, "ksqr": 8, "k_squar": 8, "psi_func": 8, "coeff": 8, "k_x": [8, 10], "k_ii": 8, "x_coeff": 8, "psi_coeff": 8, "psi_iia": 8, "psi_iib": 8, "psi_iii": 8, "advance_psi": 8, "xm": 8, "numerov": 8, "k_xm": 8, "k_xp": 8, "psi_xm": 8, "psi_next": 8, "ymax": 8, "1e2": 8, "v_rng": [8, 10], "x_bound": 8, "ones": [8, 9, 15], "rng": 8, "opt": 8, "psi_coeff_left": 8, "full_idx": 8, "barrier_potenti": 8, "lot": [8, 15], "sinh": 8, "substanti": [8, 12], "semiconductor": 8, "tall": 8, "get_kappa": 8, "transmission_coeff": 8, "t_inv": 8, "l_bar": 8, "e_el": 8, "v_bar": 8, "elsewher": 8, "heavier": [8, 9], "wolfram": 8, "2_n": 8, "unnorm": 8, "fg": 9, "rg": 9, "rf": 9, "rfg": 9, "im_": 9, "laguerr": 9, "edmond": 9, "dr": [9, 10], "ra_o": 9, "adrien": 9, "mari": [9, 15], "legendr": 9, "3a_o": 9, "customari": 9, "y_": 9, "mp": [9, 10], "2i": 9, "105": 9, "3i": 9, "chose": 9, "minu": 9, "discard": 9, "24a": 9, "5_o": 9, "24a_o": 9, "semimajor": 9, "disagre": 9, "semiclass": 9, "choic": [9, 14], "harp": 9, "rincip": 9, "iffus": 9, "undament": 9, "alphabet": 9, "2p": 9, "l_z": 9, "arrow_len": 9, "ylabel": 9, "aw": 9, "hw": 9, "hl": 9, "m_idx": 9, "arrow": 9, "head_width": 9, "head_length": 9, "length_includes_head": 9, "lz_fig": 9, "Will": 9, "l_y": 9, "sum_": 9, "summat": 9, "nine": 9, "anomal": 9, "rough": 9, "circul": 9, "loop": [9, 15], "moment": 9, "dq": 9, "erv": 9, "el": 9, "tend": 9, "v_b": 9, "child": 9, "precess": 9, "customarili": 9, "mu_z": 9, "mu_b": 9, "magneton": 9, "otto": 9, "stern": 9, "gerlach": 9, "inhomogen": 9, "south": 9, "pole": 9, "north": 9, "torqur": 9, "f_z": 9, "dv_b": 9, "samuel": 9, "goudsmit": 9, "uhlenbeck": 9, "react": 9, "2s": [9, 15], "_s": 9, "incorpor": 9, "gyromagnet": 9, "g_": 9, "insignific": 9, "adequ": 9, "capit": [9, 15], "jeff": 9, "cronk": 9, "gonzaga": 9, "possess": 9, "nu": 9, "transiton": 9, "chapter": [9, 15, 16, 17, 18], "e_4": 9, "2g": 9, "3p": 9, "flip": 9, "interstellar": 9, "attribut": [12, 16, 17, 18], "creativ": [12, 16, 17, 18], "corpor": 12, "firm": [10, 12], "legal": 12, "servic": 12, "advic": 12, "public": 12, "licens": [12, 16, 17, 18], "lawyer": 12, "client": 12, "warranti": 12, "disclaim": [12, 15], "liabil": 12, "damag": 12, "fullest": 12, "creator": [12, 16], "holder": 12, "authorship": 12, "copyright": 12, "exhaust": 12, "licensor": 12, "intend": 12, "irrevoc": 12, "secur": 12, "reus": 12, "cc": [12, 16], "creativecommon": 12, "considerations_for_licensor": 12, "grant": 12, "request": [12, 15], "more_consider": 12, "considerations_for_license": 12, "benefit": 12, "1": [12, 14, 15], "record": 12, "synch": 12, "broadcast": 12, "sui": 12, "generi": 12, "databas": 12, "categor": [12, 15], "2": [10, 12, 14, 15], "technolog": 12, "circumv": 12, "fulfil": 12, "oblig": 12, "articl": 12, "wipo": 12, "treati": 12, "decemb": 12, "1996": 12, "fair": 12, "artist": 12, "literari": 12, "entiti": 12, "reproduct": 12, "dissemin": 12, "commun": [12, 15], "member": [12, 15], "ec": 12, "parliament": 12, "council": 12, "march": 12, "protect": 12, "amend": 12, "herebi": 12, "worldwid": 12, "royalti": 12, "sublicens": 12, "exclus": [9, 12], "compli": 12, "3": [10, 12, 15, 17, 18], "6": [10, 12, 15], "format": [12, 13, 14, 15, 16], "technic": 12, "hereaft": 12, "waiv": 12, "assert": 12, "forbid": [9, 12], "5": [10, 12, 15], "recipi": 12, "offer": 12, "automat": [12, 15], "endors": 12, "constru": 12, "sponsor": 12, "offici": 12, "statu": 12, "moral": 12, "privaci": 12, "person": [12, 15], "patent": 12, "trademark": 12, "voluntari": 12, "waivabl": 12, "statutori": 12, "compulsori": 12, "expressli": 12, "retain": 12, "pseudonym": 12, "ii": 12, "iv": 12, "uri": 12, "hyperlink": 12, "resourc": 12, "supplement": 12, "undertaken": 12, "BY": [12, 16], "THE": 12, "TO": 12, "AS": 12, "IS": 12, "AND": 12, "NO": [10, 12], "represent": 12, "OR": 12, "OF": 12, "merchant": 12, "FOR": 12, "infring": 12, "latent": 12, "defect": 12, "NOT": 12, "IN": 12, "WILL": 12, "BE": 12, "liabl": 12, "ON": 12, "incident": 12, "consequenti": 12, "punit": 12, "exemplari": 12, "cost": [12, 15], "expens": 12, "IF": 12, "advis": 12, "SUCH": 12, "shall": 12, "waiver": 12, "reinstat": 12, "date": 12, "cure": 12, "seek": 12, "remedi": 12, "herein": 12, "lawfulli": 12, "deem": 12, "unenforc": 12, "reform": 12, "enforc": 12, "consent": 12, "privileg": 12, "immun": 12, "jurisdict": 12, "parti": 12, "notwithstand": 12, "elect": 12, "instanc": [12, 15], "dedic": 12, "domain": 12, "cc0": 12, "polici": 12, "logo": 12, "unauthor": 12, "paragraph": 12, "jupyt": [13, 14, 15, 16], "notebook": [13, 14, 15, 16], "submit": 13, "ipynb": 13, "compil": [13, 14, 15], "pdf": [13, 14], "filenam": 13, "submiss": 13, "phys2700_chpt": 13, "_lastnam": 13, "cell": [13, 14, 15, 16], "markdown": [13, 16], "preambl": [13, 16], "math": [13, 15], "latex": 13, "verbatim": 13, "copi": [13, 15, 16], "recreat": 13, "templat": [13, 15], "slide": 13, "lightweight": 14, "markup": [14, 16], "editor": 14, "fly": [14, 15], "wsiwyg": 14, "implement": [14, 15, 17, 18], "websit": 14, "document": [14, 16], "book": 14, "alongsid": 14, "mathematica": [14, 15], "matlab": 14, "linux": 14, "mac": 14, "harmoni": 14, "mx": 14, "class": [14, 15], "homework": 14, "webpag": 14, "phrase": 14, "sublevel": 14, "render": 14, "blank": [14, 15], "ensur": 14, "compat": 14, "tag": 14, "br": 14, "indent": [14, 15], "tab": [14, 15], "nbsp": 14, "mimic": 14, "trail": [14, 15], "broadest": 14, "emphasi": 14, "pop": 14, "ital": 14, "tripl": 14, "underscor": [14, 15], "emphas": 14, "nest": 14, "blockqout": 14, "subsect": 14, "item": [14, 15], "pick": 14, "enclos": 14, "url": 14, "github": [14, 16], "io": 14, "modernastro": 14, "home": 14, "output": 14, "undergrad": 14, "depart": 14, "saint": 14, "colleg": 14, "quick": 14, "friendli": 15, "readabl": 15, "fortran": 15, "effici": 15, "onc": 15, "luckili": 15, "hardwar": 15, "softwar": 15, "os": 15, "advantag": 15, "tweak": 15, "debug": 15, "store": 15, "memori": 15, "fledg": 15, "arithmet": 15, "task": 15, "4294967296": 15, "decim": 15, "rais": 15, "ambigu": 15, "expon": [10, 15], "programm": 15, "uncommon": 15, "comeback": 15, "month": 15, "unkind": 15, "mayb": 15, "yourself": 15, "hashtag": 15, "impract": [10, 15], "apostroph": 15, "googl": [15, 16], "colab": [15, 16], "king": 15, "britain": 15, "quest": 15, "holi": 15, "grail": 15, "airspe": 15, "laden": 15, "swallow": 15, "african": 15, "str": 15, "prompt": 15, "datatyp": 15, "ndarrai": 15, "probe": 15, "borrow": 15, "syntax": 15, "141592653589793": 15, "referenc": 15, "default": 15, "4f": [10, 15], "1416": 15, "14159265e": 15, "xd": 15, "yf": 15, "pre": 15, "alloc": 15, "xs": 15, "banana": 15, "realpython": 15, "groceri": 15, "bag": 15, "track": 15, "147": 15, "483": 15, "647": 15, "2j": 15, "tupl": 15, "immut": 15, "mutabl": 15, "newlin": 15, "dictionari": 15, "curli": 15, "header": 15, "index": 15, "clees": 15, "palin": 15, "idl": 15, "chapman": 15, "jone": 15, "gilliam": 15, "starti": 15, "slice": 15, "atkinson": 15, "typeerror": 15, "traceback": 15, "recent": 15, "row": 15, "clumsi": 15, "load": 15, "comma": 15, "tradit": 15, "0th": 15, "beforehand": 15, "longlist": 15, "overwrit": 15, "57079633": 15, "newvalu": 15, "handi": 15, "valuedata": 15, "stringdata": 15, "tommi": 15, "dick": 15, "harri": 15, "salli": 15, "nina": 15, "new_valuedata": 15, "mix": 15, "increment": 15, "49": [10, 15], "72": 15, "73": 15, "84": 15, "86": 15, "87": 15, "94": 15, "flexibl": 15, "np_axi": 15, "new_axi": 15, "unexpect": 15, "4000000000000001": 15, "7999999999999998": 15, "concaten": 15, "join": 15, "quirk": 15, "grade": 15, "floor": 15, "modulo": 15, "remaind": 15, "string_a": 15, "jack": 15, "jill": 15, "string_b": 15, "hill": 15, "list_a": 15, "list_b": 15, "shortcut": 15, "counter": 15, "harder": 15, "cautious": 15, "java": 15, "soft": 15, "statement": [15, 16], "hungri": 15, "eat": 15, "boolean": 15, "0l": 15, "aren": 15, "Not": 15, "congruent": 15, "bug": 15, "monti": 15, "impostor": 15, "stdinnotimplementederror": 15, "anaconda3": 15, "lib": 15, "python3": 15, "packag": [15, 16], "ipykernel": 15, "kernelbas": 15, "py": 15, "1201": 15, "kernel": 15, "raw_input": 15, "1199": 15, "_allow_stdin": 15, "1200": 15, "msg": 15, "frontend": 15, "1202": 15, "_input_request": 15, "1203": 15, "1204": 15, "_parent_id": 15, "1205": 15, "get_par": 15, "1206": 15, "password": 15, "1207": 15, "droid": 15, "colon": 15, "signifi": 15, "grab": 15, "superior": 15, "jedi": 15, "mind": 15, "execut": [15, 16], "trait": 15, "met": 15, "shampoo": 15, "hair": 15, "lather": 15, "rins": 15, "profit": 15, "manufactur": 15, "clean": 15, "keyword": 15, "exclud": 15, "delin": 15, "divisor": 15, "save": 15, "inherit": 15, "factori": 15, "anytim": 15, "7s": 15, "7d": 15, "120": 15, "720": 15, "5040": 15, "40320": 15, "362880": 15, "boss": 15, "deleg": 15, "morn": 15, "getup": 15, "getdress": 15, "eatbreakfast": 15, "spam": 15, "egg": 15, "bacon": 15, "baked_bean": 15, "continuesleep": 15, "entail": 15, "buri": 15, "modular": 15, "funciton": [10, 15], "sq": 15, "puttin": 15, "gthe": 15, "answer2everyth": 15, "road": 15, "whenev": 15, "older": 15, "stai": [9, 15], "occas": 15, "fn": 15, "nameerror": 15, "pass_trig": 15, "abil": 15, "plot_trig": 15, "xstep": 15, "xval": 15, "trig_func": 15, "trig": 15, "49999999999999994": 15, "8660254037844387": 15, "5773502691896257": 15, "emploi": 15, "drive": 15, "silli": 15, "brit": 15, "magic": 15, "pool": 15, "anyon": 16, "snippet": 16, "familiar": 16, "meant": 16, "runtim": 16, "panda": 16, "curios": 16, "publicli": 16, "repositori": 16, "evolv": 16, "collabor": 16, "welcom": 16, "billi": 16, "quarl": 16, "valdosta": [17, 18], "summari": [17, 18], "textbook": [17, 18], "accompani": 9, "accumul": 9, "subshel": 9, "eclus": 9, "aka": 9, "fermion": 9, "elecron": 9, "mainli": 9, "1s": 9, "doublet": 9, "j_z": 9, "s_z": 9, "m_j": 9, "momenta": 9, "nl_j": 9, "uppercas": [9, 10], "sl": 9, "2p_": 9, "j_x": 9, "j_y": 9, "b_": 9, "ext": 9, "002": 9, "589": 9, "plug": 9, "1240": 9, "experment": 9, "dlam": 9, "inert": 9, "ruls": 9, "hund": 9, "additon": 9, "momemnta": 9, "_1": 9, "_2": 9, "russel": 9, "saunder": 9, "replust": 9, "nuclu": 9, "antiparallel": 9, "fewer": 9, "l_j": 9, "singlet": 9, "triplet": 9, "predomin": 9, "ell_1": 9, "ell_2": 9, "12p": 9, "3s_1": 9, "1s_0": 9, "3p_0": 9, "3p_1": 9, "3p_2": 9, "1p_1": 9, "mechanist": 10, "wholli": 10, "determinist": 10, "lagrang": 10, "1790": 10, "hamilton": 10, "1840": 10, "enabl": 10, "pierr": 10, "simon": 10, "laplac": 10, "problem": 10, "belief": 10, "inspir": 10, "tandem": 10, "calori": 10, "1798": 10, "mere": 10, "substanc": 10, "ahead": 10, "1822": 10, "truli": 10, "prescott": 10, "equivlal": 10, "1843": 10, "paddl": 10, "wheel": 10, "relev": 10, "baptist": 10, "soon": 10, "probablist": 10, "perceiv": 10, "lack": 10, "worri": 10, "regardless": 10, "coint": 10, "toss": 10, "restitut": 10, "formid": 10, "pariticl": 10, "desir": 10, "v_z": 10, "componenet": 10, "thee": 10, "2mv": 10, "crucial": 10, "dv_x": 10, "dv_y": 10, "dv_z": 10, "aproportion": 10, "mv_x": 10, "mv_y": 10, "mv_z": 10, "wihtin": 10, "integrand": 10, "i_n": 10, "2i_n": 10, "dummi": 10, "tranform": 10, "rdr": 10, "4a": 10, "2i_o": 10, "woul": 10, "gaussian_int": [], "di_o": 10, "i_2": 10, "my": [], "sidebar": [], "temp_room": 10, "kmean": 10, "0379": 10, "monatom": 10, "o_2": 10, "rod": 10, "addtion": 10, "quadrat": 10, "propot": 10, "i_x": 10, "omega_x": 10, "k_y": 10, "i_i": 10, "straigthforward": 10, "617333262": 10, "380649": 10, "r_o": 10, "equlitbrium": 10, "nkt": 10, "c_": 10, "nk": 10, "lowercas": 10, "atm": [], "auto": [], "baz": [], "bim": [], "molar_heat_cap": [], "hcl": 10, "cl_2": 10, "co_2": 10, "cs_2": 10, "n_2o": 10, "so_2": 10, "polyatom": 10, "tranlat": 10, "harmoic": 10, "thre": 10, "3r": 10, "ne": 10, "rt": 10, "scalar": 10, "assymetri": 10, "probabilti": 10, "2ve": 10, "vf": 10, "8a": 10, "sigma_v": 10, "8kt": 10, "computr": 10, "radon": 10, "rn": 10, "isotop": 10, "222": 10, "01568": 10, "660539": 10, "5081": 10, "1750": 10, "166": 10, "mean_molecular_spe": 10, "mean_speed_const": 10, "m_h2": 10, "m_rn": 10, "mass_ratio": 10, "v_h2": 10, "v_h2_constant": 10, "v_rn": 10, "110": 10, "pm1": 10, "01v_": 10, "99v_": 10, "indefinit": 10, "02v_": 10, "window": 10, "wider": 10, "017": 10, "maxwell_spe": 10, "v_mp": 10, "0001": 10, "prob": 10, "set_titl": 10, "zoom": 10, "0166": 10, "proabil": 10}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"birth": 0, "modern": [0, 4, 17, 18], "physic": [0, 2, 3, 4, 5, 7, 9, 10, 17, 18], "classic": [0, 5, 6, 8, 10], "1890": 0, "mechan": [0, 7, 8], "electromagnet": [0, 4], "thermodynam": 0, "kinet": 0, "theori": [0, 4, 5, 10], "gase": [0, 10], "ideal": 0, "ga": 0, "law": 0, "statist": [0, 10], "maxwel": [0, 10], "boltzmann": 0, "distribut": [0, 10], "wave": [0, 7, 8, 9, 10], "particl": [0, 3, 4, 7, 8], "energi": [0, 4, 7, 9], "transport": 0, "conserv": 0, "fundament": 0, "forc": 0, "unif": 0, "atom": [0, 4, 6, 9], "matter": 0, "develop": 0, "chemist": 0, "opposit": 0, "evid": 0, "unresolv": 0, "question": 0, "medium": 0, "electrodynam": 0, "blackbodi": [0, 5, 10], "radiat": [0, 5, 10], "earli": 0, "discoveri": [0, 5], "1900": 0, "homework": [0, 4, 5, 6, 7, 8, 9, 13], "problem": [0, 4, 5, 6, 7, 8, 9, 13], "1": [0, 4, 5, 6, 7, 8, 9, 10, 13], "2": [0, 4, 5, 6, 7, 8, 9, 13], "3": [0, 4, 5, 6, 7, 8, 9], "5": [0, 4, 5, 6, 7, 8, 9], "6": [0, 4, 5, 6, 7, 8, 9], "semiconductor": 1, "nuclear": 2, "special": 4, "rel": 4, "need": 4, "ether": 4, "michelson": 4, "morlei": 4, "experi": [4, 7], "s": [4, 5, 7], "interferomet": 4, "collabor": 4, "einstein": [4, 5, 10], "postul": 4, "lorentz": 4, "transform": 4, "time": [4, 7, 8], "dilat": 4, "length": 4, "contract": 4, "addit": 4, "veloc": [4, 10], "experiment": [4, 5], "verif": 4, "muon": 4, "decai": [4, 8], "clock": 4, "measur": 4, "actual": 4, "relativist": 4, "predict": 4, "observ": [4, 7], "differ": 4, "hefel": 4, "keat": 4, "1972a": 4, "1972b": 4, "twin": 4, "paradox": 4, "spacetim": 4, "doppler": 4, "effect": [4, 5, 9], "momentum": [4, 9], "total": [4, 9], "rest": 4, "equival": 4, "mass": [4, 6], "relationship": 4, "massless": 4, "comput": 4, "bind": 4, "4": [4, 5, 6, 7, 8, 9], "7": [4, 5, 6, 7, 8], "8": [4, 5, 6, 7], "9": [4, 5, 6], "10": [4, 5], "11": [4, 5], "quantum": [5, 7, 8, 9, 10], "x": [5, 6, 7], "rai": [5, 6, 7], "electron": [5, 6, 7, 9], "determin": 5, "charg": 5, "line": [5, 14, 15], "spectra": [5, 6, 9], "quantiz": [5, 7], "photoelectr": 5, "work": 5, "function": [5, 7, 8, 9, 10, 15], "from": 5, "handbook": 5, "chemistri": 5, "result": 5, "interpret": [5, 7], "product": 5, "compton": 5, "scatter": [5, 6, 7], "pair": 5, "annihil": 5, "structur": [6, 9, 15], "The": [6, 7, 8, 9], "model": 6, "thomson": 6, "rutherford": 6, "bohr": [6, 7], "hydrogen": [6, 9], "correspond": 6, "principl": [6, 7], "success": 6, "failur": 6, "reduc": 6, "correct": 6, "other": 6, "limit": 6, "characterist": 6, "number": [6, 9], "excit": 6, "part": [7, 8], "i": 7, "de": 7, "brogli": 7, "condit": 7, "motion": 7, "doubl": 7, "slit": 7, "light": 7, "anoth": 7, "gedanken": 7, "thought": 7, "uncertainti": 7, "probabl": [7, 8, 9, 10], "copenhagen": 7, "box": 7, "ii": 8, "schr\u00f6dinger": [8, 9], "equat": [8, 9], "normal": [8, 9], "properti": 8, "valid": 8, "independ": 8, "comparison": 8, "expect": [8, 13], "valu": 8, "infinit": 8, "squar": 8, "well": 8, "potenti": 8, "us": [8, 14], "integr": [8, 10], "finit": 8, "three": 8, "dimension": 8, "simpl": [8, 15], "harmon": [8, 9], "oscil": 8, "barrier": 8, "tunnel": 8, "e": 8, "v_o": 8, "alpha": 8, "applic": 9, "solut": 9, "separ": 9, "variabl": [9, 15], "radial": 9, "angular": 9, "azimuth": 9, "spheric": 9, "y": 9, "theta": 9, "phi": 9, "n": 9, "princip": 9, "orbit": 9, "ell": 9, "magnet": 9, "m_": 9, "zeeman": 9, "state": 9, "due": 9, "field": 9, "vec": 9, "b": 9, "intrins": 9, "spin": 9, "level": 9, "select": [9, 10], "rule": 9, "histor": 10, "overview": 10, "equipartit": 10, "theorem": 10, "speed": 10, "fermi": 10, "dirac": 10, "introduct": [10, 14, 15], "electr": 10, "conduct": 10, "bose": 10, "liquid": 10, "helium": 10, "symmetri": 10, "boson": 10, "condens": 10, "molecul": 11, "laser": 11, "assign": 13, "style": 13, "chapter": 13, "markdown": 14, "what": [14, 15], "why": 14, "basic": 14, "syntax": 14, "section": 14, "head": 14, "best": 14, "practic": 14, "paragraph": 14, "break": 14, "font": 14, "typeset": 14, "blockquot": 14, "list": 14, "link": 14, "math": 14, "environ": 14, "latex": 14, "python": 15, "comment": 15, "input": 15, "output": 15, "type": 15, "sequenc": 15, "trick": 15, "iter": 15, "mathemat": 15, "oper": 15, "control": 15, "defin": 15, "pass": 15, "program": 15, "who": 16, "ar": 16, "note": 16, "interact": 16, "book": 16, "clone": 16, "how": 16, "cite": 16, "reus": 16, "thi": 16, "materi": 16, "phys2700": [17, 18], "singl": 9, "mani": 9, "ls": 9, "coupl": 9, "jj": 9, "molar": 10, "heat": 10, "capac": 10, "15": 10, "circ": 10, "c": 10, "rm": 10, "atm": 10}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["Chapter_1/birth-of-modern-physics", "Chapter_10/semiconductors", "Chapter_11/nuclear-physics", "Chapter_12/particle-physics", "Chapter_2/special-theory-of-relativity", "Chapter_3/experimental-quantum-physics", "Chapter_4/structure-of-the-atom", "Chapter_5/quantum-mechanics-part1", "Chapter_6/quantum-mechanics-part2", "Chapter_7/hydrogen-atom", "Chapter_8/statistical-physics", "Chapter_9/molecules-and-lasers", "LICENSE", "Preamble/HW_template", "Preamble/Markdown-basics", "Preamble/Python-basics", "Preamble/who-for", "README", "home"], "filenames": ["Chapter_1/birth-of-modern-physics.ipynb", "Chapter_10/semiconductors.ipynb", "Chapter_11/nuclear-physics.ipynb", "Chapter_12/particle-physics.ipynb", "Chapter_2/special-theory-of-relativity.ipynb", "Chapter_3/experimental-quantum-physics.ipynb", "Chapter_4/structure-of-the-atom.ipynb", "Chapter_5/quantum-mechanics-part1.ipynb", "Chapter_6/quantum-mechanics-part2.ipynb", "Chapter_7/hydrogen-atom.ipynb", "Chapter_8/statistical-physics.ipynb", "Chapter_9/molecules-and-lasers.ipynb", "LICENSE.md", "Preamble/HW_template.ipynb", "Preamble/Markdown-basics.ipynb", "Preamble/Python-basics.ipynb", "Preamble/who-for.ipynb", "README.md", "home.md"], "titles": ["1. Birth of Modern Physics", "10. Semiconductors", "11. Nuclear Physics", "12. Particle Physics", "2. Special Theory of Relativity", "3. Experimental Quantum Physics", "4. Structure of the Atom", "5. Quantum Mechanics: Part I", "6. Quantum Mechanics: Part II", "7. The Hydrogen Atom and Atomic Physics", "8. Statistical Physics", "9. Molecules and Lasers", "<no title>", "Homework Assignments", "Introduction to Markdown", "Introduction to Python", "Who are these notes for?", "PHYS2700: Modern Physics", "PHYS2700: Modern Physics"], "terms": {"The": [0, 4, 5, 10, 12, 13, 14, 15, 16, 17, 18], "renaiss": 0, "brought": [0, 10], "greek": [0, 5, 6], "scholar": 0, "e": [0, 4, 5, 6, 7, 9, 10, 12, 13, 14, 15, 16], "g": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "aristotl": 0, "eratosthen": 0, "pythagora": 0, "etc": [0, 8, 14, 15, 16], "back": [0, 4, 5, 6, 8, 15], "forefront": 0, "knowledg": [0, 7, 8, 9, 10], "scientif": [0, 5, 13, 15, 16], "progress": [0, 5, 6, 7], "dure": [0, 4, 5, 9, 15], "ag": [0, 4, 5], "enlighten": 0, "idea": [0, 4, 5, 6, 7, 8, 10], "from": [0, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "antiqu": 0, "further": [0, 5, 6, 9], "result": [0, 4, 6, 7, 8, 9, 10, 12, 13, 15], "print": [0, 4, 5, 6, 7, 8, 9, 10, 15], "competit": 0, "investig": [0, 5, 6, 7], "natur": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "world": [0, 4, 7, 12], "within": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "mathemat": [0, 4, 5, 7, 8, 9, 10, 13, 14], "framework": [0, 7], "characterist": [0, 4, 5, 7, 8, 9, 10], "we": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "would": [0, 4, 5, 6, 7, 8, 9, 10, 15], "call": [0, 4, 5, 6, 7, 8, 9, 10, 15], "todai": [0, 5, 7], "practic": [0, 4, 5, 6, 10, 12, 15], "wa": [0, 4, 5, 6, 7, 8, 9, 10, 15], "us": [0, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16, 17, 18], "euclidean": [0, 4], "geometri": [0, 4], "calculu": [0, 4, 5, 8], "newton": [0, 4, 5, 6, 7, 8, 10, 13], "leibniz": 0, "For": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "physicist": [0, 4, 5, 6, 7, 9, 10], "refin": 0, "subject": [0, 4, 6, 9, 10, 12], "appear": [0, 4, 5, 6, 7, 8, 9], "reliabl": 0, "despit": [0, 6, 10], "consider": [0, 4, 5, 6, 7, 10, 12], "chang": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "occur": [0, 4, 5, 6, 7, 8, 9, 10, 15], "social": 0, "polit": 0, "intellectu": 0, "realm": [0, 7], "western": 0, "europ": [0, 4], "There": [0, 4, 6, 7, 8, 9, 10, 13, 14, 15, 16], "noth": [0, 4, 5, 9, 10, 12, 15], "new": [0, 4, 5, 6, 7, 10, 15], "discov": [0, 4, 5, 6, 7], "now": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "all": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "remain": [0, 4, 5, 6, 7, 10, 12], "more": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "precis": [0, 4, 5, 6, 7, 8, 9, 10, 15], "measur": [0, 5, 6, 7, 8, 9, 10, 12], "william": [0, 7], "thomson": [0, 5, 7], "lord": [0, 5], "kelvin": [0, 5, 7], "scientist": [0, 4, 5, 6, 8, 10, 16, 17, 18], "engin": [0, 5, 16, 17, 18], "late": [0, 4, 6], "19th": [0, 4, 5, 6, 8, 10], "centuri": [0, 4, 5, 6, 8, 10], "believ": [0, 4, 5, 6, 10], "thei": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "had": [0, 4, 5, 6, 7, 9, 10], "everyth": [0, 5, 7, 10, 14, 15], "under": [0, 4, 5, 8, 9, 12, 13, 15, 16, 17, 18], "control": 0, "where": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18], "best": [0, 4, 5, 6, 7, 8, 9, 10, 15], "dai": [0, 4, 5, 12], "were": [0, 4, 5, 6, 7, 8, 9, 10, 15], "highli": [0, 4, 10], "recogn": [0, 5], "reward": 0, "basic": [0, 4, 5, 6, 7, 10, 15], "research": [0, 4, 5, 6], "import": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "becaus": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "commerci": [0, 4], "militari": 0, "applic": [0, 4, 5, 6, 7, 8, 12, 14, 17, 18], "those": [0, 4, 5, 6, 7, 8, 9, 12, 15], "visionari": 0, "nikola": 0, "tesla": [0, 5], "caus": [0, 5, 7, 9, 15], "mani": [0, 4, 5, 6, 7, 8, 10, 15, 16], "take": [0, 4, 5, 6, 7, 8, 9, 15], "note": [0, 4, 5, 7, 8, 9, 14, 15, 17, 18], "busi": [0, 15], "opportun": 0, "peopl": [0, 5, 10, 15], "began": [0, 5, 6], "travel": [0, 4, 5, 6, 7, 8], "quickli": [0, 4, 5, 8, 15], "one": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "countri": 0, "anoth": [0, 4, 5, 6, 8, 9, 10, 14, 15], "journal": 0, "becom": [0, 4, 5, 6, 7, 8, 9, 10, 15], "access": [0, 12], "some": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15, 16], "most": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "principl": [0, 4, 5, 8, 9, 10], "still": [0, 4, 5, 6, 7, 8, 9, 10, 12], "form": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "describ": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "properti": [0, 4, 5, 6, 7, 9, 10], "initi": [0, 4, 5, 6, 7, 15], "final": [0, 4, 5, 6, 7, 9, 10, 13, 14, 15], "quantiti": [0, 4, 5, 7, 8, 9, 10], "must": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "equal": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "total": [0, 5, 6, 7, 8, 10, 15], "volum": [0, 5, 6, 7, 9, 10], "water": [0, 5, 6, 7, 10], "gallon": 0, "independ": [0, 4, 5, 6, 7, 9, 10, 12, 14], "how": [0, 4, 5, 6, 7, 8, 10, 12, 14, 15], "contain": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "fill": [0, 6, 9, 15], "x": [0, 4, 8, 9, 10, 13, 14, 15], "held": [0, 4, 10, 12], "j": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "sum_j": 0, "x_": [0, 8], "i": [0, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15], "f_": [0, 5, 6, 10], "superscript": [0, 4], "f": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "repres": [0, 4, 5, 6, 7, 8, 9, 10, 13], "state": [0, 6, 7, 8, 10, 12, 17, 18], "respect": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14], "four": [0, 4, 5, 6, 8, 9, 10, 14, 15], "main": [0, 5, 6, 15], "ar": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "sum": [0, 4, 5, 7, 8, 9, 10], "its": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "interact": [0, 4, 5, 6, 7, 9, 10], "linear": [0, 4, 5, 6, 8, 9], "momentum": [0, 5, 6, 7, 8], "In": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "absenc": [0, 9, 12], "extern": [0, 4, 5, 6, 8, 9], "angular": [0, 4, 5, 6, 7, 8, 10], "torqu": [0, 9], "charg": [0, 4, 6, 9], "electr": [0, 4, 5, 6, 7, 8], "A": [0, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15], "might": [0, 4, 5, 6, 7, 8, 9, 14, 15], "have": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "ad": [0, 4, 5, 6, 7, 10, 15], "mass": [0, 5, 7, 8, 9, 10, 13], "list": [0, 5, 9, 10, 15], "einstein": [0, 6, 7], "s": [0, 6, 8, 9, 10, 12, 13, 14, 15], "special": [0, 5, 6, 7, 8, 9, 10, 12, 15], "rel": [0, 5, 6, 7, 9, 10, 15], "show": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "intim": [0, 6], "connect": [0, 4, 6, 10, 12], "few": [0, 5, 6, 7, 8, 9, 15], "dualiti": [0, 7], "codifi": 0, "famous": 0, "isaac": 0, "postul": [0, 8], "associ": [0, 4, 5, 6, 7, 8, 9, 10], "deriv": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "other": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15], "over": [0, 4, 5, 6, 7, 8, 10, 14, 15], "galileo": 0, "great": [0, 5, 6], "experiment": [0, 6, 7, 9, 10], "he": [0, 4, 5, 6, 7, 8, 9, 10], "concept": [0, 4, 5, 6, 7, 10], "inertia": [0, 10], "galilean": [0, 4, 13], "built": [0, 4, 15], "first": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "telescop": [0, 4], "base": [0, 4, 5, 6, 7, 8, 9, 12], "onli": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "see": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16], "design": [0, 4, 7, 9, 12, 15, 17, 18], "spyglass": 0, "han": [0, 6], "lipperhei": 0, "also": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "pendulum": [0, 8], "least": [0, 4, 5, 6, 9, 10, 15], "small": [0, 4, 5, 6, 7, 8, 9, 10], "amplitud": [0, 7], "relationship": [0, 6, 7, 9, 12, 15], "fall": [0, 5, 6, 7, 10, 15], "object": [0, 4, 5, 7, 8, 9, 13, 15], "hammer": 0, "feather": 0, "though": [0, 5, 6, 7, 8], "experi": [0, 5, 6, 8, 9, 10, 15], "expand": [0, 4, 10, 15], "our": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "present": [0, 4, 5, 7, 8, 10], "understand": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "astronomi": [0, 9, 16], "field": [0, 4, 5, 6, 7, 8], "motion": [0, 4, 5, 6, 8, 9, 10], "gravit": [0, 4, 5, 6, 9], "optic": [0, 4, 5, 6, 7, 8, 9], "understood": [0, 4, 5, 8], "between": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "posit": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "displac": [0, 5, 7, 9], "veloc": [0, 5, 6, 7, 8, 9, 13], "rate": [0, 5, 8], "time": [0, 5, 6, 9, 10, 12, 13, 14, 15], "which": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "could": [0, 4, 5, 6, 7, 8, 10, 12, 15], "appli": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "determin": [0, 4, 6, 7, 8, 9, 10, 15], "bodi": [0, 4, 5, 6, 9, 10], "acceler": [0, 4, 5, 6, 8, 13], "simpli": [0, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15], "being": [0, 6, 7, 8, 9, 15], "rest": [0, 5, 6, 7, 8, 9, 15], "case": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "move": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "constant": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "univers": [0, 4, 5, 6, 7, 9, 10, 17, 18], "huge": 0, "hi": [0, 4, 5, 6, 7, 9, 10], "heaven": 0, "obei": [0, 4, 9, 10], "same": [0, 4, 5, 6, 7, 8, 9, 10, 15], "rule": [0, 4, 5, 6, 7, 8, 10], "mortal": 0, "appl": 0, "earth": [0, 4, 5, 6, 8, 9], "net": [0, 4, 7, 8, 9, 10], "three": [0, 4, 5, 6, 7, 9, 10, 15, 17, 18], "bear": [0, 6, 10], "name": [0, 5, 6, 9, 15], "an": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "continu": [0, 5, 6, 7, 8, 15, 16], "unless": [0, 4, 5, 9, 12], "act": [0, 4, 5, 6, 7, 9, 15], "upon": [0, 4, 5, 6, 7, 12, 15], "thi": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18], "restat": 0, "inclin": 0, "plane": [0, 5, 6, 7, 9], "inerti": [0, 4], "refer": [0, 4, 6, 9, 12, 13, 14, 15], "frame": [0, 4, 5, 6, 9, 13], "second": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15], "vec": [0, 4, 5, 6, 7, 8, 10, 13], "proport": [0, 5, 6, 7, 9, 10], "invers": [0, 4, 5, 6, 9], "m": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14], "begin": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "align": [0, 4, 5, 6, 7, 8, 9, 10, 14], "frac": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14], "d": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "p": [0, 4, 5, 6, 7, 8, 9, 10, 14], "dt": [0, 4, 6, 8, 9, 10, 13, 14], "end": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "third": [0, 7, 10, 14, 15], "exert": 0, "magnitud": [0, 4, 5, 6, 7, 9], "direct": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "let": [0, 4, 5, 6, 7, 8, 9, 10, 15], "defin": [0, 4, 5, 6, 7, 8, 9, 10, 12], "_": [0, 6, 8, 9, 10], "21": [0, 4, 5, 6, 7, 9, 10, 15], "written": [0, 4, 5, 7, 8, 9, 10, 12, 13, 16], "12": [0, 4, 5, 6, 7, 8, 9, 10, 15], "often": [0, 4, 7, 8, 9, 10, 15], "action": [0, 15], "reaction": [0, 4, 5], "requir": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "alter": [0, 12], "v": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "can": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "rotat": [0, 4, 7, 9, 10], "get": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "omega": [0, 6, 7, 8], "alpha": [0, 4, 6, 7, 9, 15], "l": [0, 4, 5, 6, 7, 8, 9, 15], "magnet": [0, 4, 5, 6, 7, 8], "long": [0, 4, 5, 6, 7, 8, 9, 15], "period": [0, 4, 5, 6, 7, 9, 14], "contribut": [0, 10, 12], "charl": [0, 7], "coulomb": [0, 4, 6, 8, 9], "christian": 0, "\u00f8erst": 0, "thoma": [0, 4], "young": [0, 4, 6, 7], "andr": 0, "amp\u00e9r": 0, "michael": [0, 14], "faradai": 0, "joseph": [0, 4, 10], "henri": [0, 5, 6, 7], "jame": [0, 4, 5, 6, 10], "clerk": [0, 10], "heinrich": 0, "hertz": [0, 5, 6], "each": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15, 16, 17, 18], "separ": [0, 4, 5, 7, 8, 10, 12, 14, 15], "until": [0, 5, 6, 8, 15], "relat": [0, 4, 5, 6, 7, 8, 9, 10, 12], "through": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16], "work": [0, 4, 6, 7, 9, 10, 12, 15, 17, 18], "led": [0, 4, 7, 10], "behavior": [0, 6, 7, 8, 10, 15], "light": [0, 4, 5, 6, 8, 9], "combin": [0, 4, 6, 7, 8, 9, 10], "equat": [0, 4, 5, 6, 7, 10, 13, 14], "text": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "gauss": 0, "quad": [0, 4, 5, 7, 8, 9, 10], "oint": 0, "cdot": [0, 4, 5, 6, 7, 8, 9], "q": [0, 4, 5, 8, 9], "epsilon_o": [0, 4, 6, 7, 9], "b": [0, 4, 5, 6, 7, 8, 12, 14, 15], "0": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18], "induct": 0, "phi_b": 0, "gener": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "amper": 0, "mu_o": [0, 4], "phi_e": 0, "1865": 0, "hurai": 0, "2010": 0, "yaghjian": 0, "2019": 0, "treatis": [0, 10], "hendrik": 0, "lorentz": 0, "arriv": [0, 5, 7, 13], "complet": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "1895": [0, 5], "symmetri": [0, 4, 7, 8], "current": [0, 4, 5, 6, 9], "creat": [0, 4, 5, 7, 10, 12, 13, 14, 15], "turn": [0, 4, 5, 7, 10], "deal": [0, 8, 12], "flow": [0, 5, 10, 15], "temperatur": [0, 5, 7, 9, 10], "t": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "heat": [0, 4, 5, 6, 7], "w": [0, 4, 5], "intern": [0, 4, 6, 7, 9, 10, 12, 16, 17, 18], "system": [0, 4, 5, 6, 7, 8, 9, 10], "u": [0, 4, 6, 7, 8, 10], "These": [0, 4, 5, 6, 7, 8, 9, 10, 15], "come": [0, 4, 5, 6, 7, 8, 9, 15], "togeth": [0, 4, 5, 6, 9, 10, 15], "pressur": [0, 5, 10], "entropi": 0, "made": [0, 5, 6, 7, 8, 12], "benjamin": [0, 10], "thompson": [0, 10], "count": [0, 4, 5, 7, 10, 15], "rumford": 0, "sadi": 0, "carnot": 0, "joul": [0, 4, 10], "rudolf": 0, "clausiu": 0, "primari": [0, 5], "two": [0, 4, 5, 6, 7, 8, 9, 13, 14, 15], "delta": [0, 4, 5, 6, 7, 8, 9, 10], "plu": [0, 9], "done": [0, 4, 7, 10, 15], "includ": [0, 4, 5, 7, 8, 9, 12, 14, 15, 17, 18], "It": [0, 4, 5, 6, 7, 8, 9, 10, 15], "possibl": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "convert": [0, 4, 5, 6, 7, 8, 10, 14, 15], "without": [0, 4, 5, 6, 9, 12, 15], "place": [0, 4, 5, 6, 9, 12, 13, 15], "word": [0, 5, 14, 15], "thing": [0, 4, 9, 15], "free": [0, 4, 5, 6, 8, 10, 12, 16], "lunch": [0, 15], "doe": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "spontan": 0, "colder": 0, "hotter": 0, "addit": [0, 5, 6, 7, 8, 9, 10, 12, 15], "sometim": [0, 4, 5, 7, 8, 10, 14, 15], "express": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13], "zeroth": 0, "If": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "thermal": [0, 5, 7, 10], "equilibrium": [0, 5, 6, 7, 8, 10], "achiev": [0, 5], "absolut": [0, 4, 8, 9, 10, 12], "zero": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "compos": [0, 5, 15], "molecul": [0, 5, 6, 7, 8, 10], "rapid": 0, "bounc": [0, 7], "off": [0, 4, 5, 6, 7], "wall": [0, 5, 7, 8], "just": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "gain": [0, 4, 5, 6, 8, 9], "accept": [0, 4, 5, 6, 7, 8, 9, 10, 12], "realiz": [0, 4, 5, 6, 8], "came": [0, 7], "robert": [0, 5], "boyl": 0, "1862": 0, "product": [0, 7, 9, 10, 15], "pv": 0, "later": [0, 4, 5, 6, 10, 15], "jacqu": 0, "found": [0, 4, 5, 6, 7, 8, 9, 10, 13], "ratio": [0, 4, 5, 6, 7, 8, 9, 10], "loui": [0, 7], "gai": 0, "lussac": 0, "produc": [0, 4, 5, 6, 7, 8, 9, 10, 12], "around": [0, 4, 5, 6, 7, 9, 15], "obtain": [0, 4, 5, 6, 7, 8, 9, 10, 15], "nrt": 0, "depend": [0, 4, 5, 6, 7, 8, 9, 10, 15], "number": [0, 4, 5, 7, 8, 10, 13, 14, 15], "mole": [0, 10], "n": [0, 4, 5, 6, 7, 8, 10, 15], "r": [0, 4, 5, 6, 7, 8, 9, 10], "8": [0, 8, 9, 10, 12, 15], "31": [0, 4, 5, 6, 7, 8, 10, 15], "rm": [0, 4, 5, 6, 7, 8, 9], "mol": [0, 4, 5, 6, 7], "k": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "amedeo": 0, "avogadro": [0, 4, 5, 6, 7, 10], "propos": [0, 4, 5, 6, 7, 9], "daniel": 0, "bernoulli": 0, "origin": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "1738": 0, "ignor": [0, 4, 5, 8, 15], "howev": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "wide": [0, 7, 8], "interpret": [0, 4, 6, 9, 12, 15], "maxel": 0, "ludwig": 0, "josiah": 0, "willard": 0, "gibb": 0, "simpl": [0, 4, 5, 6, 9, 14], "averag": [0, 5, 6, 7, 8, 9, 10], "collis": [0, 4, 5, 6, 7, 9, 10], "reveal": [0, 5, 16], "langl": [0, 6, 7, 8, 9], "rangl": [0, 6, 7, 8, 9], "linearli": [0, 5], "nn_a": 0, "avagadro": 0, "n_a": [0, 5, 6, 7], "02214076": [0, 10], "10": [0, 6, 7, 8, 9, 10, 15], "23": [0, 4, 5, 6, 7, 9, 10, 15], "vibrat": [0, 4, 6, 8, 10], "molecular": [0, 5, 6, 10], "translat": [0, 4, 5, 10, 12, 13], "becam": [0, 4, 7], "clear": [0, 4, 5, 6, 7, 9, 15], "degre": [0, 5, 10], "freedom": [0, 10, 15], "capabl": [0, 7], "carri": [0, 4, 5, 7, 9, 15], "equipartit": 0, "theorem": [0, 4, 5, 7, 8], "ha": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16], "kt": [0, 5, 7, 10], "3d": [0, 4, 9], "space": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "introduc": [0, 5, 6, 7, 8, 9, 10, 15], "mode": [0, 4, 5, 10, 13], "higher": [0, 4, 5, 6, 8, 9, 10, 15], "therefor": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "eqn": [0, 4, 5, 6, 7, 8], "7": [0, 9, 10, 12, 15], "molar": [0, 4, 5, 6, 7], "capac": 0, "c_v": 0, "du": [0, 8, 10], "specif": [0, 6, 10, 15], "function": [0, 4, 6], "hydrogen": [0, 4, 5, 7, 10], "h_2": [0, 10], "shown": [0, 4, 5, 7, 8, 9, 16], "below": [0, 4, 5, 6, 7, 12, 16], "lowest": [0, 5, 6, 7, 8, 9], "level": [0, 4, 6, 7, 8, 10, 13, 14, 15], "correspond": [0, 4, 5, 7, 8, 9, 10, 12, 14], "At": [0, 4, 5, 7, 10, 15], "200": 0, "rise": [0, 5, 8, 9], "Near": 0, "3200": 0, "bring": 0, "befor": [0, 4, 5, 6, 7, 8, 9, 12, 14, 15], "dissoci": [0, 6], "imag": [0, 4, 5, 6, 7, 8, 9, 12], "credit": [0, 4, 5, 6, 7, 8, 9, 13, 16], "hyperphys": [0, 5, 6, 7, 8], "section": [0, 4, 6, 7, 8, 9, 10, 12, 13, 17, 18], "1850": 0, "speed": [0, 4, 5, 6, 7, 8, 9, 15], "given": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "4": [0, 10, 12, 14, 15, 16, 17, 18], "pi": [0, 4, 5, 6, 7, 8, 9, 10, 15], "left": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "right": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15], "mv": [0, 4, 5, 7, 10], "2kt": [0, 10], "python": [0, 4, 5, 7, 8, 10, 13, 14, 16], "code": [0, 4, 5, 7, 9, 10, 13, 14, 15, 16, 17, 18], "comput": [0, 6, 8, 9, 10, 15], "n_2": [0, 8, 10], "300": [0, 5, 7, 8, 10], "1000": [0, 4, 5], "4000": 0, "peak": [0, 5, 7], "probabl": [0, 5, 6], "confirm": [0, 4, 5, 6, 10], "1921": 0, "nitrogen": [0, 7], "numpi": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "np": [0, 4, 5, 6, 7, 8, 9, 10, 15], "http": [0, 5, 14], "org": [0, 5, 12], "doc": 0, "stabl": [0, 6, 7], "user": [0, 14, 15], "whatisnumpi": 0, "html": [0, 14], "scipi": [0, 4, 5, 6, 7, 8, 9, 10, 15, 16], "physical_const": [0, 4, 6, 7, 9, 10], "matplotlib": [0, 4, 5, 7, 8, 9, 10, 15], "pyplot": [0, 4, 5, 7, 8, 9, 10, 15], "plt": [0, 4, 5, 7, 8, 9, 10, 15], "def": [0, 4, 5, 6, 7, 8, 10, 15], "f_v": 0, "kg": [0, 4, 5, 6, 7, 8, 10], "return": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "exp": [0, 4, 5, 7, 8, 10], "amu": [0, 4], "m_n2": 0, "28": [0, 4, 5, 6, 7, 9, 10, 15], "t_low": 0, "t_mid": 0, "t_hi": 0, "v_n2": 0, "arang": [0, 4, 5, 7, 8, 9, 10, 15], "rang": [0, 5, 6, 7, 8, 9, 10, 15], "fs": [0, 4, 5, 7, 8, 9], "larg": [0, 4, 5, 6, 7, 8, 9, 10, 15], "fig": [0, 4, 5, 6, 7, 8, 9, 10, 15], "figur": [0, 4, 5, 6, 7, 8, 9, 10, 15], "figsiz": [0, 4, 5, 7, 8, 9, 10], "dpi": [0, 4, 5, 7, 8, 9, 10], "150": [0, 4, 5, 7, 8, 9, 10], "ax": [0, 4, 5, 7, 8, 9, 10, 15], "add_subplot": [0, 4, 5, 7, 8, 9, 10, 15], "111": [0, 4, 5, 7, 8, 9, 15], "plot": [0, 4, 5, 7, 8, 10, 15], "lw": [0, 4, 5, 7, 8, 9, 10, 15], "label": [0, 4, 7, 8, 9, 10, 12, 15], "legend": [0, 4, 7, 8, 10], "loc": [0, 4, 7, 8, 10], "fontsiz": [0, 4, 5, 7, 8, 9, 10], "set_xlabel": [0, 4, 5, 7, 8, 10], "set_ylabel": [0, 4, 5, 7, 9, 10], "set_ylim": [0, 4, 7, 8, 9, 10, 15], "set_xlim": [0, 4, 5, 7, 8, 9, 10, 15], "By": [0, 5, 6, 7, 8, 9, 12], "calcul": [0, 4, 5, 6, 7, 8, 9, 10, 15], "rigor": [0, 4], "known": [0, 4, 5, 6, 7, 8, 9, 10, 12], "find": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "root": [0, 5, 8, 10, 15], "mean": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "squar": [0, 4, 5, 6, 7, 9, 10, 15], "v_": [0, 4, 6, 7, 8, 9, 10], "sqrt": [0, 4, 5, 6, 7, 8, 9, 10, 15], "3kt": [0, 7, 10], "point": [0, 4, 5, 6, 7, 8, 9, 10, 15], "good": [0, 5, 7, 8, 9, 10, 14, 15], "model": [0, 5, 7, 9, 10], "when": [0, 4, 5, 6, 7, 8, 9, 10, 15], "learn": [0, 6, 9], "isn": [0, 7, 15], "alwai": [0, 4, 5, 7, 8, 9, 12, 15], "dimension": [0, 7, 15], "necessari": [0, 4, 6, 7, 8, 9, 10, 12, 14], "phenomena": [0, 5, 6, 7, 8, 10], "explain": [0, 5, 6, 7, 8, 9], "disturb": [0, 5], "stand": [0, 4, 5, 7, 8, 14], "superposit": [0, 5, 7, 8], "sound": [0, 4, 5, 7, 12], "need": [0, 5, 6, 7, 8, 9, 10, 12, 14, 15], "elast": [0, 4, 5, 6, 10], "doesn": [0, 5, 6, 9, 15], "actual": [0, 5, 6, 7, 8, 15], "propag": [0, 4, 7], "along": [0, 4, 6, 7, 8, 9, 10, 13, 15], "respons": [0, 7, 8, 15], "pass": [0, 4, 5, 6, 7, 8, 9], "consid": [0, 4, 5, 6, 7, 8, 9, 10, 12], "follow": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "exampl": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "buoi": [0, 5], "As": [0, 4, 5, 6, 7, 8, 9, 10, 15], "potenti": [0, 4, 5, 6, 7, 9, 10], "up": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "releas": [0, 4], "graviti": [0, 8, 9], "pull": [0, 4, 5, 8], "down": [0, 4, 5, 7, 9, 10, 15], "help": [0, 4, 5, 6, 8, 9, 10, 13, 15], "nearbi": [0, 5], "cycl": [0, 7, 8], "fan": 0, "basebal": 0, "game": 0, "stadium": 0, "column": [0, 9, 15], "sit": 0, "singl": [0, 4, 5, 6, 7, 8, 10, 13, 14, 15], "run": [0, 4, 7, 9, 15], "whole": [0, 5, 6, 7, 10, 12], "17th": 0, "disagr": 0, "especi": [0, 5, 9, 15], "talk": 0, "about": [0, 4, 5, 6, 7, 8, 9, 10, 15], "support": [0, 4, 7, 10, 15], "corpuscl": 0, "geometr": [0, 8], "straight": [0, 4, 5, 6, 15], "line": [0, 4, 6, 7, 8, 9, 10, 13], "like": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "trajectori": [0, 6, 7], "rai": [0, 4, 8, 9], "observ": [0, 5, 6, 8, 9, 10], "reflect": [0, 4, 5, 7, 8], "refract": [0, 7], "sharp": 0, "shadow": 0, "christiaan": 0, "huygen": 0, "phenomenon": [0, 5, 7, 8, 9], "poor": 0, "health": 0, "prevent": [0, 5, 8, 10, 12], "him": [0, 4], "reput": 0, "forward": [0, 4, 5, 6, 15], "perform": [0, 4, 5, 6, 7, 8, 9, 12, 15], "doubl": [0, 13, 14, 15], "slit": 0, "interfer": [0, 4, 7, 8], "indic": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "behav": [0, 4, 5, 7, 8, 9], "illustr": [0, 4, 5, 6, 7, 9, 10, 15], "encount": [0, 6], "diffract": [0, 4, 5, 6, 7, 8], "pattern": [0, 4, 5, 7], "side": [0, 4, 5, 6, 7, 8, 9, 10, 13, 15], "wikipedia": [0, 4, 5, 6, 7], "1860": 0, "em": [0, 5, 6, 7, 9], "consist": [0, 4, 5, 6, 7, 8, 9, 10, 14], "oscil": [0, 5, 7, 9, 10], "visibl": [0, 4, 5, 6, 7], "cover": [0, 4, 6, 7, 17, 18], "narrow": [0, 7], "spectrum": [0, 5, 6], "c": [0, 4, 5, 6, 7, 8, 9, 12, 15], "lambda": [0, 4, 5, 6, 7, 8, 9], "wavelength": [0, 4, 5, 6, 7, 8, 9], "frequenc": [0, 4, 5, 6, 7, 8], "ani": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "permeabl": [0, 4], "permitt": [0, 4], "1887": [0, 4], "succeed": [0, 5, 7, 12], "detect": [0, 4, 5, 7, 8, 9], "far": [0, 4, 5, 6, 8, 9, 15], "outsid": [0, 4, 5, 6, 7, 8, 9, 15], "approx": [0, 4, 5, 6, 7, 8, 10], "guid": [0, 5, 7, 13, 14, 16], "deduct": 0, "swath": 0, "what": [0, 4, 5, 6, 7, 8, 9, 10], "last": [0, 4, 8, 15], "100": [0, 4, 5, 7, 8, 10, 15], "year": [0, 4, 5, 6, 7, 15], "prior": [0, 4, 9, 12], "distinctli": 0, "differ": [0, 5, 6, 7, 8, 9, 10, 12, 14, 15], "seem": [0, 4, 6, 7], "them": [0, 4, 5, 6, 7, 9, 12, 14, 15], "studi": [0, 4, 5, 6, 7, 8, 9, 10], "subatom": [0, 10], "even": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "elementari": [0, 5, 6], "baryon": 0, "lepton": 0, "close": [0, 4, 5, 6, 7, 9, 10, 12, 14, 15], "invari": [0, 4, 13], "unchang": [0, 8], "transform": [0, 5, 6, 7, 8, 10, 12, 13], "distanc": [0, 4, 5, 6, 7, 8, 9, 10, 15], "you": [0, 4, 5, 8, 12, 13, 14, 15, 16], "coordin": [0, 4, 8, 9, 10], "descript": [0, 7, 8, 9, 10, 15], "weak": [0, 5, 9], "strong": [0, 4, 5, 8, 9], "your": [0, 12, 13, 14, 15, 16], "introductori": [0, 8, 16], "cours": [0, 10, 15, 17, 18], "veri": [0, 4, 5, 6, 7, 8, 9, 10, 15], "high": [0, 4, 5, 6, 7, 10, 15], "unifi": 0, "electroweak": 0, "strength": [0, 5, 9, 15], "scale": [0, 4, 5, 8], "hold": [0, 4, 6, 15], "nucleu": [0, 4, 5, 6, 7, 8, 9], "mutual": [0, 5, 6, 9], "attract": [0, 5, 6, 8], "m_1": [0, 4], "m_2": [0, 4], "vector": [0, 4, 6, 7, 9, 10], "compon": [0, 4, 5, 6, 7, 9, 10], "cartesian": [0, 4, 9], "radial": [0, 4, 6, 10], "hat": [0, 6, 8], "6743": 0, "11": [0, 6, 7, 8, 9, 12, 15], "si": [0, 4], "unit": [0, 4, 5, 6, 7, 8, 9, 10], "_g": 0, "gm_1m_2": 0, "q_1": 0, "q_2": 0, "similar": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "electrostat": [0, 6, 9], "cross": [0, 5, 6], "chemic": [0, 5, 6], "biolog": [0, 4], "process": [0, 5, 6, 7, 8, 9, 10, 12, 13, 15], "nongravit": 0, "_c": 0, "q_1q_2": 0, "beta": [0, 4, 5, 6, 7, 8, 10], "decai": [0, 6], "nuclei": [0, 4, 6, 8], "among": [0, 4], "sheldon": 0, "glashow": 0, "steven": 0, "weinberg": 0, "abdu": 0, "salam": 0, "wrote": [0, 6, 7], "paper": [0, 4, 5, 6, 7], "1960": 0, "predict": [0, 5, 6, 7, 8, 9, 10], "facet": 0, "share": [0, 4, 7, 10, 12, 16], "nobel": [0, 5, 7], "prize": [0, 5, 7], "1979": 0, "Their": [0, 5, 6, 8], "exist": [0, 4, 5, 6, 7, 8, 9, 10, 15], "z": [0, 4, 5, 6, 7, 8, 9, 10], "boson": 0, "1983": 0, "purpos": [0, 7, 12, 15], "effect": [0, 6, 7, 8, 10, 12], "15": [0, 4, 5, 7, 8, 9, 15], "strongest": 0, "easili": [0, 4, 5, 7, 10, 15], "bind": [0, 5, 6, 9], "proton": [0, 4, 5, 6, 7, 9, 10], "insid": [0, 4, 5, 6, 8, 15], "repuls": [0, 6, 8], "allow": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16], "fusion": 0, "star": [0, 4, 5], "strive": 0, "wai": [0, 4, 5, 7, 8, 9, 10, 12, 15], "seemingli": 0, "dispar": 0, "friction": [0, 5], "contact": [0, 12], "tension": 0, "know": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "part": [0, 4, 5, 6, 10, 12, 15], "ago": 0, "thought": [0, 4, 5, 6], "seri": [0, 4, 5, 6, 7, 8, 9], "grand": 0, "openstax": [0, 4, 5, 6, 7, 16, 17, 18], "vol": [0, 4, 5, 6, 7, 17, 18], "activ": [0, 15], "area": [0, 5, 6, 7, 8, 9], "effort": [0, 7], "underwai": [0, 4], "gut": 0, "fashion": 0, "complex": [0, 5, 7, 8, 9, 10, 14, 15], "string": [0, 7, 8, 15], "sever": [0, 4, 5, 6, 7, 8, 12, 14], "yet": [0, 6, 7], "been": [0, 4, 5, 6, 7, 9, 10, 12, 15], "verifi": [0, 4, 5, 6], "step": [0, 4, 5, 6, 7, 9, 15], "beyond": [0, 7, 8, 10], "toe": 0, "gev": [0, 4], "earlier": [0, 5, 6, 7, 15], "common": [0, 4, 5, 6, 7, 9, 12, 15, 16, 17, 18], "tini": [0, 5], "told": 0, "philosoph": [0, 5, 6], "democritu": 0, "leucippu": 0, "450": 0, "atomo": 0, "indivis": [0, 5, 6], "peel": 0, "layer": [0, 5, 6, 14], "inde": [0, 9, 15], "divis": [0, 5, 15], "sign": [0, 4, 5, 6, 8, 10, 14], "past": [0, 4, 5, 7, 15], "mostli": [0, 6], "dormant": 0, "branch": 0, "scienc": 0, "chemistri": [0, 6, 9], "proust": 0, "definit": [0, 4, 5, 6, 8, 10, 12, 15], "element": [0, 4, 5, 6, 7, 9, 10, 14, 15], "compound": 0, "weight": [0, 5, 6, 10], "john": [0, 5], "dalton": 0, "1803": 0, "kei": [0, 5, 15], "1811": 0, "individu": [0, 4, 6, 7, 8, 9, 10, 12, 15], "dismiss": 0, "rather": [0, 4, 7, 8, 9, 10, 15], "harshli": 0, "who": [0, 4, 5, 6, 7, 9], "imagin": [0, 4, 6, 15], "stanislao": 0, "cannizzaro": 0, "solv": [0, 4, 5, 6, 7, 8, 9, 10], "1858": 0, "gram": [0, 5], "particular": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14], "ma": 0, "while": [0, 4, 5, 6, 7, 8, 9, 15], "carbon": [0, 4, 5], "estim": [0, 4, 5, 6, 7, 8, 10], "brown": 0, "microscop": [0, 5, 7], "pollen": 0, "grain": 0, "suspend": [0, 5], "brownian": [0, 10], "danc": 0, "randomli": [0, 7], "ascrib": 0, "convect": 0, "organ": [0, 5, 9], "eventu": [0, 4, 5, 6, 7, 8], "liquid": [0, 5, 7], "explan": [0, 4, 5, 6, 7, 13], "constantli": 0, "push": 0, "adopt": [0, 6, 12], "ernst": 0, "mach": [0, 4], "princip": [0, 6, 10], "leader": 0, "anti": [0, 9], "movement": [0, 4, 9], "positivist": 0, "reason": [0, 4, 5, 7, 8, 9, 10, 12, 14, 15], "never": [0, 4, 6, 7, 9, 12], "seen": [0, 5, 6, 7, 15], "cannot": [0, 4, 5, 6, 7, 8, 9, 10, 12, 15], "sai": [0, 4, 8, 10], "anyth": [0, 9, 10, 15], "realiti": [0, 7, 10], "wilhelm": [0, 5], "ostwald": 0, "face": [0, 4, 7], "difficulti": [0, 7, 9, 10], "radioact": [0, 4, 5, 6, 8], "discret": [0, 5, 7, 8], "spectral": [0, 5, 6, 9], "contend": 0, "should": [0, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16], "hypothet": 0, "construct": [0, 4, 5, 7, 8, 9, 15], "bookkeep": 0, "max": [0, 5, 6, 7, 9], "planck": [0, 5, 6, 7, 9], "grudgingli": 0, "submicroscop": 0, "quanta": [0, 5, 6], "convinc": [0, 4, 7], "overwhelm": 0, "decad": [0, 4, 7], "20th": [0, 5, 6, 10], "albert": [0, 4, 5], "1905": [0, 4, 5], "provid": [0, 5, 6, 9, 10, 12, 13, 15], "almost": [0, 4, 5, 7, 10, 15], "80": [0, 4, 15], "term": [0, 4, 5, 6, 7, 8, 9, 10, 12], "theoret": [0, 5, 6, 7], "random": [0, 6, 7, 9, 10], "walk": [0, 15], "drunkard": 0, "mai": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "after": [0, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15], "abl": [0, 4, 5, 6, 8], "approxim": [0, 4, 5, 6, 7, 8, 9, 10, 12], "size": [0, 5, 6, 7, 8], "data": [0, 5, 6, 7, 8, 9, 15], "scan": 0, "tunnel": 0, "photo": 0, "76": [0, 5, 10, 15], "iron": [0, 6], "copper": [0, 7, 10], "surfac": [0, 4, 5, 7, 9], "ibm": 0, "try": [0, 4, 5, 7, 8, 9, 15], "modifi": [0, 4, 5, 7, 8, 12, 15, 16], "electron": [0, 4, 8, 10], "densiti": [0, 4, 5, 6, 7, 8, 10], "surround": [0, 5, 6, 7, 15], "quantum": [0, 4, 6, 17, 18], "corral": 0, "crommi": 0, "lutz": 0, "eigler": 0, "almaden": 0, "center": [0, 4, 5, 6, 7, 8, 14], "jean": [0, 5, 10], "perrin": [0, 10], "1908": [0, 4, 5], "agre": [0, 4, 6, 8, 9, 12, 14], "util": 0, "type": [0, 5, 6, 9, 10], "gave": [0, 15], "quantit": [0, 10], "sinc": [0, 4, 5, 6, 7, 8, 9, 13, 15], "nearli": [0, 6, 7], "foundat": 0, "method": [0, 5, 7, 8, 10, 15], "shape": [0, 4, 5, 7, 8], "success": [0, 4, 5, 8, 10], "pervas": 0, "feel": [0, 4, 5, 6, 8, 9], "techniqu": [0, 5, 6, 7], "structur": [0, 5, 7, 10], "unknown": [0, 5, 6, 7], "clearli": [0, 4, 7, 9, 12], "resolv": [0, 6], "cloud": [0, 9], "horizon": 0, "speak": [0, 4, 7], "royal": [0, 7], "institut": [0, 7], "materi": [0, 5, 6, 7, 12, 17, 18], "luminifer": [0, 4], "aether": [0, 4], "ether": 0, "deduc": [0, 4, 5, 7, 9], "fluid": [0, 10], "rigid": [0, 10], "than": [0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "steel": [0, 5, 6], "massless": [0, 7, 10], "viscos": [0, 5], "otherwis": [0, 4, 8, 9, 12, 15], "affect": [0, 4, 6, 7, 8, 9, 10, 12, 15], "orbit": [0, 4, 5, 6, 7, 8], "planet": [0, 4, 6, 9], "transpar": 0, "non": [0, 5, 7, 8, 9, 10, 12, 13, 14, 15], "dispers": [0, 7], "incompress": 0, "michelson": [0, 5], "unabl": [0, 5, 6], "edward": [0, 4], "morlei": [0, 5], "extrem": [0, 4, 5, 6, 14], "care": [0, 5, 9, 15], "famou": [0, 4, 6, 7, 9], "subsequ": 0, "neg": [0, 4, 5, 6, 7, 8, 9, 15], "concern": [0, 4, 5, 12], "keep": [0, 4, 5, 6, 10, 14], "shift": [0, 4, 5, 7, 10], "contract": [0, 12], "georg": [0, 7, 9], "fitzgerald": [0, 4], "hypothesi": [0, 4, 5, 6, 7, 9], "1892": 0, "interest": [0, 4, 5, 7, 8, 10, 16], "absorb": [0, 4, 5, 6, 9], "entir": [0, 4, 5, 7, 10, 15], "incid": [0, 5, 6, 7, 8], "emit": [0, 4, 5, 6, 7, 9], "emiss": [0, 4, 5, 6, 8, 9], "power": [0, 4, 5, 6, 7, 10, 15], "per": [0, 4, 5, 6, 7, 10], "issu": 0, "itself": [0, 5, 6, 7, 9, 10], "decreas": [0, 5, 6, 8], "intens": [0, 5, 6, 7], "longer": [0, 4, 5, 8, 10], "darth": 0, "kule": 0, "both": [0, 4, 5, 6, 7, 8, 9, 10, 14], "low": [0, 4, 5, 6, 7], "But": [0, 4, 5, 6, 7, 8, 9, 14, 15], "account": [0, 4, 5, 6, 9], "caviti": [0, 5], "infinit": [0, 5, 6, 15], "short": [0, 4, 5, 6, 7, 8, 13, 15], "failur": [0, 12], "ultraviolet": [0, 5], "catastroph": [0, 5], "demonstr": [0, 5, 6, 7, 10, 15], "deeper": 0, "r\u00f6ntgen": [0, 5, 7], "novemb": [0, 8], "becquerel": 0, "accident": 0, "februari": 0, "1896": [0, 9], "uranium": [0, 6], "salt": [0, 7], "next": [0, 4, 7, 9, 13, 15], "carefulli": 0, "wrap": 0, "photograph": [0, 6, 7], "plate": [0, 4, 5, 7], "silhouett": 0, "discharg": [0, 5, 6], "glow": [0, 5, 6], "cathod": [0, 5, 6], "isol": [0, 4, 5], "prove": [0, 5, 6, 7, 8, 10], "pieter": [0, 9], "zeeman": [0, 6, 8], "sampl": 0, "normal": [0, 4, 6, 7, 10, 13, 15], "quantiz": [0, 6, 8, 9], "packet": [0, 5, 6, 7, 8], "photoelectr": [0, 6, 7], "summar": [0, 6, 10], "major": [0, 7, 10], "accomplish": [0, 4, 7, 15], "did": [0, 4, 6, 10], "influenc": [0, 4, 5, 6, 8], "prevail": [0, 4, 6], "sentiment": 0, "character": [0, 6, 8], "compar": [0, 4, 5, 6, 7, 8, 9, 10], "contrast": [0, 8, 9, 15], "either": [0, 4, 5, 6, 7, 8, 9, 10, 14, 15], "regim": 0, "tell": [4, 5, 7, 8], "fast": [4, 7], "enough": [4, 5, 6, 7, 8, 9, 10], "thu": [4, 5, 6, 7, 8, 9, 10, 15], "newtonian": [4, 10], "law": [4, 5, 6, 7, 8, 9, 10, 12, 13], "valid": [4, 5, 6, 10, 15], "forc": [4, 5, 6, 7, 8, 9, 10, 13, 15], "attach": [4, 10], "uniform": [4, 6], "prime": [4, 5, 6, 10, 13, 15], "standard": [4, 5, 7, 10, 12, 14], "configur": [4, 5, 10], "unprim": 4, "axi": [4, 6, 7, 8, 9, 10, 13, 15], "krea": 4, "vt": [4, 7, 13, 14], "y": [4, 5, 7, 8, 10, 14, 15], "algebra": [4, 8, 9], "1802": 4, "augustin": 4, "fresnel": 4, "detail": [4, 5, 6, 7, 8, 13, 14, 15], "polar": [4, 5, 7, 9, 10], "discoveri": [4, 6, 7, 12], "wave": [4, 5, 6], "classic": [4, 7, 9], "knew": [4, 6, 8], "medium": [4, 5, 7, 8, 12], "appar": [4, 5, 8], "Its": [4, 6, 8, 15], "incred": 4, "too": [4, 5, 6, 7, 8, 14, 15], "maxwel": [4, 9], "media": [4, 12], "matter": [4, 5, 6, 7, 10], "vacuum": [4, 5, 6, 7], "sensit": [4, 6], "consensu": 4, "1880": 4, "eleg": [4, 14], "make": [4, 5, 6, 8, 9, 10, 12, 14, 15], "testabl": 4, "suppos": [4, 5, 6, 10, 13, 15], "flash": [4, 7], "pm": [4, 5, 8, 9, 10], "don": [4, 6, 14, 15], "differenti": [4, 8, 9, 10], "unclear": 4, "taken": [4, 6, 15], "prefer": [4, 9, 15], "No": [4, 5, 7, 9, 10, 12, 15], "discern": 4, "due": [4, 5, 6, 7, 8, 10, 15], "sun": [4, 5, 6, 9], "sim": [4, 5, 6, 7, 9, 10], "30": [4, 5, 7, 9, 12, 15], "km": 4, "so": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "obviou": 4, "devic": [4, 6, 8], "phase": [4, 7, 8, 9, 10], "setup": [4, 5], "extend": [4, 7], "sourc": [4, 5, 7, 10, 13, 15, 16], "ground": [4, 6, 7, 8, 9, 10], "glass": [4, 5, 6, 7], "diffus": [4, 8], "laser": [4, 7], "planar": 4, "view": [4, 5, 6, 7, 10], "assum": [4, 5, 6, 7, 8, 9, 10, 15], "arm": 4, "d_1": 4, "d_2": 4, "parallel": [4, 7, 8, 9], "leav": [4, 5, 8, 13, 15], "go": [4, 7, 9, 15], "mirror": 4, "partial": [4, 7, 8, 9], "silver": [4, 5, 7, 9], "path": [4, 6, 7, 8], "detector": [4, 6, 7], "compens": 4, "sure": [4, 14, 15], "thick": [4, 5, 6], "anim": 4, "sodium": [4, 5, 9], "bright": [4, 5, 7], "re": [4, 5, 7, 9, 10, 15, 16], "fring": [4, 7], "apparatu": [4, 5, 7], "90": [4, 6, 7, 15], "circ": [4, 5, 6, 7], "perpendicular": [4, 5, 6, 9], "dark": [4, 5, 6, 7], "band": [4, 5, 7], "destruct": [4, 7], "integ": [4, 5, 6, 7, 8, 9, 10, 15], "expect": [4, 5, 6, 9, 10, 12], "accord": [4, 5, 6, 7, 8, 9, 10, 12], "On": [4, 6], "journei": 4, "against": [4, 5], "round": [4, 5, 6, 7, 10], "trip": 4, "t_2": 4, "2cd_2": 4, "2d_2": 4, "across": [4, 5, 6, 8], "upriv": 4, "downstream": [4, 12], "triangl": [4, 6], "diagon": 4, "instead": [4, 6, 7, 8, 9, 10, 14, 15], "t_1": 4, "2d_1": 4, "look": [4, 5, 6, 7, 9, 10, 14, 15], "ll": [4, 5, 7, 8, 9], "binomi": 4, "expans": 4, "involv": [4, 5, 9, 15], "order": [4, 5, 6, 7, 8, 9, 10, 15], "neglig": [4, 5, 7, 8, 12], "To": [4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15], "17": [4, 5, 7, 8, 15], "600": [4, 5, 6], "nm": [4, 5, 6, 7, 8, 9], "amount": [4, 5, 6, 10, 15], "04": [4, 5, 15], "02": [4, 5, 6, 7, 10, 15], "conclud": [4, 5, 6, 7], "stationari": [4, 5, 6, 7, 8], "incorrect": [4, 5], "surpris": [4, 8, 9], "ask": [4, 12, 15], "well": [4, 5, 6, 7, 9, 10, 12, 14, 15], "repeat": [4, 6, 15], "put": [4, 6, 10, 14], "sophist": [4, 6], "adjust": [4, 5], "eight": 4, "mount": [4, 7], "soapston": 4, "float": [4, 15], "mercuri": [4, 6], "elimin": [4, 5, 8], "005": 4, "report": [4, 5, 7, 9, 13], "null": 4, "inabl": [4, 7], "seriou": [4, 5, 9, 10], "blow": 4, "reconcil": [4, 6], "suggest": [4, 5, 6, 7, 8, 9, 10], "factor": [4, 5, 6, 7, 8, 9, 10], "gamma": [4, 5], "situat": [4, 5, 7, 8, 10], "wherea": [4, 5, 6], "proven": 4, "true": [4, 5, 7, 9, 10, 15], "signific": [4, 6, 7, 8, 10], "expos": [4, 5, 6], "fals": [4, 7, 8, 9, 15], "invalid": 4, "mechan": [4, 6, 9, 10, 17, 18], "formal": [4, 5, 8], "manner": [4, 12], "develop": [4, 6, 7, 9, 10, 14, 15], "constanc": 4, "valu": [4, 5, 6, 7, 9, 10, 15], "evalu": [4, 5, 7, 8, 9, 10, 13, 15], "previou": [4, 5, 8, 10, 12, 15], "clearer": [4, 15], "out": [4, 5, 6, 7, 8, 9, 12, 14, 15], "real": [4, 7, 8, 9], "life": 4, "recal": [4, 5, 7, 8, 9, 10, 15], "sect": [4, 7, 8, 9], "event": [4, 7, 12], "synchron": 4, "own": [4, 7, 8, 15], "meterstick": 4, "interv": [4, 7, 8, 10], "lamp": 4, "apart": [4, 5, 9, 14], "puls": [4, 7], "simultan": [4, 5, 7, 8, 9], "reach": [4, 5, 6, 15], "she": 4, "bulb": 4, "conclus": 4, "correct": [4, 5, 8], "seat": 4, "midwai": 4, "rail": 4, "car": 4, "opposit": [4, 5], "equidist": 4, "her": [4, 5], "toward": [4, 5, 8, 15], "rapidli": [4, 8], "platform": [4, 14], "saw": [4, 15], "railcar": 4, "necessarili": [4, 7, 9], "comparison": [4, 5], "send": [4, 5], "signal": 4, "inform": [4, 12], "finit": [4, 5, 6, 9], "awai": [4, 5, 9], "colleagu": 4, "fix": [4, 5, 8, 9, 13], "coincid": 4, "vx": 4, "commonli": [4, 5, 8, 9], "substitut": [4, 5, 6, 7, 8, 9, 10, 13], "write": [4, 7, 8, 9, 10, 14, 15], "compact": [4, 9], "ultim": [4, 10], "want": [4, 6, 7, 9, 14, 15], "goe": [4, 8, 9], "wavefront": 4, "spheric": [4, 7, 10], "inconsist": [4, 5], "break": [4, 5, 15], "map": 4, "uniqu": [4, 5, 7, 8], "simplest": [4, 5, 6, 7, 8, 9, 15], "reduc": [4, 7, 8, 9, 10, 12, 15], "demand": 4, "ct": 4, "un": 4, "abov": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "directli": [4, 5, 6, 8, 10, 12, 15], "replac": [4, 6, 7, 8, 9, 10, 12, 13, 15], "exchang": 4, "rightarrow": [4, 5, 6, 7, 8, 9, 10, 13], "notic": [4, 5, 6, 7, 8, 12, 15], "significantli": [4, 6], "001": [4, 6, 7], "grid": [4, 6], "implic": 4, "imaginari": [4, 7, 8], "lit": 4, "read": [4, 12, 15], "extinguish": 4, "t_o": 4, "proper": [4, 12, 15], "x_2": [4, 7, 8], "x_1": [4, 7, 8], "Then": [4, 5, 6, 7, 8, 9, 10, 13, 15], "durat": 4, "slow": [4, 5], "2150": 4, "feder": 4, "perfect": [4, 10], "storag": 4, "antiproton": 4, "fuel": 4, "spaceship": 4, "prepar": 4, "man": [4, 15], "spacecraft": 4, "visit": [4, 14], "proxima": 4, "centauri": 4, "25": [4, 5, 6, 7, 8, 10, 15], "lightyear": 4, "strict": 4, "regul": [4, 10, 12], "16": [4, 5, 6, 7, 8, 9, 15], "provis": [4, 12], "avail": [4, 5, 9, 10, 12, 14, 16], "crew": 4, "neglect": [4, 5], "turnaround": 4, "deceler": [4, 6], "limit": [4, 5, 7, 8, 10, 12, 13, 15, 16], "constrain": [4, 7, 8, 9], "unlik": [4, 5], "buc": 4, "ee": 4, "restock": 4, "2l": [4, 8], "subsum": 4, "alreadi": [4, 6, 8, 9, 14, 16], "4l": 4, "2c": [4, 5, 7, 10], "41": [4, 5, 15], "469c": 4, "realli": [4, 14], "mission": 4, "18": [4, 5, 6, 7, 8, 9, 15], "friend": 4, "light_year": 4, "yr_in_sec": 4, "3600": [4, 5], "24": [4, 5, 6, 7, 8, 10, 15], "365": [4, 5], "sec": 4, "ly": 4, "2e": [4, 5, 6, 7, 8, 10], "librari": 4, "meter": [4, 7], "to_prim": 4, "v_req": 4, "3f": [4, 5, 7], "46e": 4, "41e": [4, 7], "08": [4, 5, 7, 8, 15], "469": 4, "happen": [4, 6, 7, 15], "l_o": 4, "x_r": 4, "x_l": 4, "subscript": [4, 6, 7, 8, 9], "denot": [4, 5, 6, 8, 10], "stick": 4, "t_r": 4, "t_l": 4, "insist": 4, "lesssim": [4, 5, 6], "shrink": 4, "electrodynam": [4, 6, 7], "switch": [4, 15], "shorter": [4, 5, 7, 8], "perspect": 4, "approach": [4, 6, 7, 8, 10, 15], "2l_o": 4, "2t": 4, "give": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16], "ident": [4, 5, 7, 8, 10], "2f": [4, 5, 6, 7, 8, 10, 15], "75": [4, 6, 8, 10, 15], "futur": [4, 15], "navig": 4, "outer": [4, 5, 6, 8], "identifi": [4, 6, 7, 9, 10], "hazard": 4, "avoid": [4, 5, 8, 10, 12], "asteroid": 4, "iceberg": 4, "add": [4, 7, 8, 9, 10, 14, 15], "reserv": [4, 12, 15], "letter": [4, 6, 8, 9, 15], "variou": [4, 5, 6, 7, 9, 13], "correctli": [4, 6], "start": [4, 5, 6, 7, 8, 9, 10, 14, 15], "u_x": 4, "dx": [4, 7, 8, 9, 10], "vdt": 4, "dy": [4, 7, 9, 10], "dz": [4, 9, 10], "u_i": 4, "u_z": 4, "divid": [4, 5, 6, 8, 9, 17, 18], "although": [4, 5, 6, 8, 9, 12, 15], "variabl": [4, 7, 8, 13], "command": [4, 13, 14, 15], "target": [4, 5, 6, 7, 9], "junior": 4, "offic": 4, "shoot": 4, "99c": 4, "6c": 4, "36": [4, 5, 6, 7, 15], "0c": 4, "99": [4, 10, 15], "792": 4, "792c": 4, "994c": 4, "cosmic": [4, 5], "enter": [4, 5, 8], "atmospher": [4, 5, 6], "upper": [4, 6, 7, 10], "shower": [4, 15], "meson": 4, "pion": [4, 10], "unstabl": 4, "n_oe": 4, "n_o": 4, "half": [4, 5, 7, 8, 9, 10], "tau_": 4, "ln": [4, 8], "52": [4, 15], "mu": [4, 5, 6, 7, 8, 9], "surviv": [4, 8, 12], "top": [4, 9, 13, 16], "mountain": [4, 8], "sea": 4, "98c": 4, "540": 4, "remov": [4, 8, 9, 12, 15], "81": [4, 9, 15], "45": [4, 6, 7, 8, 10, 15], "obvious": 4, "someth": [4, 5, 7, 15], "wrong": 4, "v_mu": 4, "98": [4, 10, 15], "d_mnt": 4, "2000": 4, "height": [4, 7, 8], "mu_halflif": 4, "52e": 4, "no_mu": 4, "t_half": 4, "lamb": 4, "log": 4, "t_mu": 4, "n_mu": 4, "81e": 4, "06": [4, 6, 7, 10, 15], "dramat": [4, 5, 6, 15], "35": [4, 5, 6, 7, 8, 9, 15], "539": [4, 5], "agreement": [4, 5, 6, 7, 8, 10, 12], "1963": 4, "washington": 4, "hampshir": 4, "frisch": 4, "smith": 4, "gamma_mu": 4, "t_mu_rel": 4, "n_mu_rel": 4, "35e": 4, "examin": [4, 5, 6, 7, 8, 9], "400": [4, 5], "l_mu": 4, "accur": [4, 5, 6, 7, 8], "transit": [4, 6, 9], "133": 4, "cs": [4, 5], "192631770": 4, "hz": [4, 5, 7, 9], "1971": 4, "hafel": 4, "richard": 4, "cesium": 4, "test": [4, 7, 10, 15], "flew": 4, "eastward": 4, "westward": 4, "regularli": 4, "schedul": 4, "airplan": 4, "naval": 4, "observatori": 4, "took": [4, 5], "65": [4, 5, 7, 15], "hour": [4, 5], "flight": 4, "week": [4, 8], "48": [4, 5, 15], "complic": [4, 9], "corioli": 4, "tabl": [4, 5, 6, 8, 9, 15], "ns": 4, "40": [4, 5, 7, 8, 10, 15], "59": [4, 5, 15], "275": 4, "273": [4, 5], "less": [4, 5, 6, 7, 8, 9, 10, 15], "lost": [4, 5, 6], "ran": 4, "slower": [4, 15], "faster": [4, 10], "uncertainti": [4, 6, 8, 9, 10], "1985": 4, "challeng": 4, "shuttl": 4, "330": 4, "295": 4, "29": [4, 5, 6, 7, 15], "ps": 4, "straightforward": [4, 6, 8], "simplifi": [4, 5, 7, 8, 9, 10], "assumpt": [4, 6, 7, 9, 10, 15], "noninerti": 4, "launch": [4, 16], "land": 4, "much": [4, 5, 6, 7, 8, 9, 10, 15], "3092": 4, "92": [4, 10, 15], "fraction": [4, 5, 6, 8, 10], "loss": [4, 12], "27": [4, 5, 6, 7, 9, 10, 15], "lose": [4, 5, 6], "alon": [4, 9], "seven": [4, 10], "048": 4, "t_": [4, 5], "ms": [4, 5, 8, 14], "m_earth": 4, "9722e24": 4, "r_earth": [4, 5], "6371e3": 4, "radiu": [4, 5, 6, 7, 9], "h_shuttl": 4, "330e3": 4, "v_shuttl": 4, "gamma_shuttl": 4, "dt_t": 4, "4e": [4, 5, 8, 10], "dt_t_mea": 4, "9502e": 4, "gr": [4, 7], "dt_t_gr": 4, "5e": [4, 5, 6], "dt_t_meas_nogr": 4, "ab": [4, 5, 8, 9, 10], "pct_err": 4, "percent": [4, 5, 10], "error": [4, 5, 10, 12, 15], "mission_dur": 4, "tlost_miss": 4, "1e": [4, 5, 6, 7, 8, 9], "3092e": 4, "3002e": 4, "0e": [4, 6, 7], "alv\u00e4ger": 4, "et": 4, "al": [4, 5, 6, 10], "1964": 4, "beam": [4, 5, 6, 7, 9], "strike": [4, 5, 7], "neutral": [4, 6], "cern": 4, "nuclear": [4, 6, 8, 9], "facil": 4, "border": 4, "switzerland": 4, "franc": 4, "99975c": 4, "exit": [4, 5, 6], "laboratori": [4, 5, 6], "excel": [4, 5], "again": [4, 6], "evid": [4, 5, 6, 7, 9], "One": [4, 5, 6, 7, 9, 15], "topic": 4, "pair": [4, 8], "set": [4, 5, 6, 7, 8, 9, 10, 12, 14, 15], "37": [4, 5, 7, 15], "ov": 4, "tick": 4, "slowli": 4, "ix": 4, "scenario": [4, 8], "younger": 4, "moreov": 4, "argu": [4, 7, 8], "answer": [4, 10, 13, 15], "option": [4, 15], "8c": 4, "46": [4, 5, 15], "old": 4, "departur": 4, "yr": 4, "fact": [4, 5, 6, 9, 15], "here": [4, 8, 12, 13, 15], "conveni": [4, 9, 14], "diagram": [4, 5, 6, 7, 9], "simplic": [4, 13], "spatial": [4, 7, 8], "horizont": [4, 8], "vertic": [4, 8, 9, 10], "dimens": [4, 7, 8, 9, 13], "yellow": [4, 5], "photon": [4, 5, 6, 7, 9, 10], "locat": [4, 7, 8, 10], "hermann": 4, "minkowski": 4, "specifi": [4, 7, 9, 12, 15], "coordiant": 4, "fourth": [4, 9, 10], "x_a": [4, 8], "ct_a": 4, "x_b": [4, 8], "ct_b": 4, "worldlin": 4, "slope": [4, 5], "do": [4, 5, 6, 7, 8, 9, 10, 12, 15], "cone": 4, "causal": [4, 10], "li": [4, 5, 6, 8, 9, 10], "link": [4, 6, 9], "vertex": 4, "serv": [4, 7], "role": [4, 7, 10], "mathbf": [4, 5, 9, 10, 14], "lightlik": 4, "sepeart": 4, "spacelik": 4, "timelik": 4, "ell": [4, 5, 7], "1d": [4, 15], "suffic": 4, "union": 4, "ict": 4, "ds": 4, "2dt": 4, "appropri": [4, 5, 7, 8, 9, 10, 13, 14, 16], "somewhat": 4, "easier": [4, 5, 15], "penalti": 4, "matrix": [4, 15], "tensor": 4, "spinor": 4, "disadvantag": 4, "author": [4, 12, 16], "regard": [4, 6, 7, 9, 12], "inclus": 4, "pitch": 4, "ambul": 4, "receiv": [4, 5, 6, 7, 12, 13], "astronom": [4, 5], "front": 4, "rear": [4, 5], "train": 4, "exactli": [4, 5, 8, 9, 10, 15], "cn": 4, "f_o": [4, 5], "compactli": 4, "reced": 4, "wth": 4, "distinguish": [4, 5, 10, 15], "convent": [4, 7, 14, 15], "starlight": 4, "redshift": [4, 6], "distant": [4, 6], "galaxi": [4, 6], "farther": 4, "harlow": 4, "edwin": 4, "hubbl": 4, "maxim": [4, 5, 9], "angl": [4, 5, 6, 7, 9], "theta": [4, 5, 6, 7, 8, 10], "co": [4, 5, 6, 7, 8, 9, 10, 15], "sin": [4, 5, 6, 7, 8, 9, 15], "33": [4, 5, 8, 10, 15], "180": [4, 5], "pure": [4, 9, 10], "transvers": 4, "analyz": [4, 6, 15], "sent": 4, "outbound": 4, "annual": 4, "everi": [4, 7, 9, 10, 12, 15], "3f_o": 4, "lead": [4, 6, 7, 8, 9, 10], "That": [4, 10], "conflict": [4, 6], "modif": [4, 5, 12], "ball": [4, 5, 6, 7, 8], "collid": [4, 5, 6, 10], "perfectli": 4, "u_o": [4, 8], "p_y": [4, 5, 7], "ff": [4, 5], "2mu_o": 4, "conserv": [4, 5, 6, 8, 9], "insert": [4, 5, 7, 8, 9], "gather": 4, "p_x": [4, 5, 7], "mf": 4, "neq": [4, 9], "preserv": [4, 15], "multipli": [4, 7, 8, 9, 10, 15], "trial": [4, 5, 8, 9], "rememb": [4, 6, 7, 15], "distinct": [4, 6, 8, 9, 14, 15], "plausibl": [4, 6, 7], "tau": [4, 7, 9], "goo": 4, "accuraci": [4, 12], "14c": 4, "mc": 4, "resist": [4, 8, 10], "42": [4, 5, 10, 15], "kinet": [4, 5, 6, 7, 8, 10], "w_": 4, "int_1": 4, "k_2": [4, 7, 8], "k_1": [4, 7, 8], "int": [4, 6, 8, 9, 15], "integr": [4, 5, 6, 7, 9, 12], "greater": [4, 6, 7, 8, 9, 10, 15], "diverg": [4, 8], "Be": [4, 8], "mistak": 4, "student": [4, 5, 6, 7], "medic": [4, 5], "000": [4, 6], "volt": [4, 5, 6], "metal": [4, 5, 6, 7, 8], "qv": 4, "602": [4, 5, 7, 8], "19": [4, 5, 6, 7, 8, 15], "049": 4, "rearrang": [4, 5, 8, 9], "091": 4, "nonrelativist": [4, 5, 6, 7, 8], "2k": [4, 5, 6, 8, 10], "Such": [4, 5, 7, 9], "equip": [4, 7], "particularli": [4, 7], "m_e": [4, 5, 6, 7, 8], "v_el": 4, "5e4": [4, 5, 7], "k_el": 4, "e_o": [4, 6, 7, 8, 9, 10], "1f": [4, 5, 7, 9, 10], "05e": 4, "07": [4, 5, 6, 7], "38e": [4, 5], "rewritten": [4, 5, 6], "certain": [4, 5, 6, 7, 8, 9, 12], "proof": 4, "establish": [4, 7, 9], "merg": 4, "interchang": 4, "18th": [4, 8], "block": [4, 5, 6, 14, 15], "wood": [4, 6], "spring": [4, 8, 10], "compress": 4, "lock": 4, "thornton": [4, 6, 17, 18], "rex": [4, 6, 17, 18], "2012": [4, 6, 17, 18], "e_": [4, 5, 6, 7, 8], "2mc": [4, 5], "2m": [4, 7, 8, 9, 10], "went": [4, 7, 15], "increas": [4, 5, 6, 7, 8, 10], "head": [4, 6], "f_r": 4, "quit": [4, 5, 9, 15], "typic": [4, 5, 6, 7, 14, 15], "numer": [4, 5, 8, 10, 15], "inappropri": 4, "macroscop": [4, 8, 10], "essenti": [4, 5, 6, 10, 12], "m_wb": 4, "v_wb": 4, "k_wb": 4, "k_wb_rel": 4, "ke": 4, "6e": 4, "7e": 4, "fundament": [4, 5, 6, 7, 8, 10], "inviol": 4, "56": [4, 5, 7, 15], "pc": [4, 7, 14], "muc": 4, "astrophys": [4, 14], "neutron": [4, 6, 7, 9, 10], "th": [4, 7], "ev": [4, 5, 6, 7, 8, 9, 10], "prefix": 4, "mev": [4, 5, 6, 8], "mega": 4, "6726": 4, "26": [4, 5, 6, 7, 8, 9, 15], "67": [4, 5, 15], "38": [4, 5, 7, 15], "938": 4, "five": [4, 5, 9], "font": [4, 7, 8], "convers": [4, 5, 7, 8, 10, 15], "66054": [4, 10], "931": 4, "494": 4, "languag": [4, 14, 15, 16], "modul": [4, 7, 8, 10, 15], "hit": [4, 6, 7, 15], "78": [4, 15], "aris": [4, 5, 6, 7, 9, 12], "51": [4, 10, 15], "13": [4, 5, 6, 8, 9, 10, 15], "948": 4, "95c": 4, "similarli": [4, 6, 8, 9, 10], "tow": [4, 9], "momentarili": 4, "stop": [4, 5, 12, 15], "excit": [4, 5, 7, 8, 9, 10], "outcom": [4, 7, 10], "disappear": [4, 7, 8], "overlin": [4, 10], "symbol": [4, 8, 9, 14, 15], "deuteron": [4, 6, 7], "k_p": 4, "p_p": 4, "gamma_p": 4, "beta_p": 4, "3fc": 4, "948c": 4, "84e": 4, "h": [4, 5, 6, 7, 8, 9, 12], "bound": [4, 5, 6, 8, 9, 12], "e_b": 4, "m_": [4, 6, 10], "sum_i": [4, 7, 8, 9], "m_i": 4, "007275c": 4, "008665c": 4, "939": 4, "57": [4, 5, 7, 10, 15], "01355c": 4, "1875": [4, 5, 6], "61": [4, 6, 15], "minimum": [4, 5, 6, 7, 8, 12], "139": [4, 5], "m_pc": 4, "m_d": [4, 6], "m_p": [4, 6], "69": [4, 15], "m_pi": 4, "57039": 4, "6f": 4, "319578": 4, "me": 4, "convict": 4, "els": [4, 5, 7, 8, 10, 15, 16], "said": [4, 10], "bit": [4, 15], "patchwork": 4, "publish": [4, 6, 10, 12], "titl": [4, 12, 13, 15], "zur": 4, "elektrodynamik": 4, "bewegt": 4, "k\u00f6rper": 4, "german": [4, 5], "fulli": [4, 5, 6, 7, 15], "q_o": [4, 5], "conduct": 4, "wire": [4, 6], "lorenz": 4, "page": [4, 5, 14], "hand": [4, 5, 8, 9, 13, 15], "repel": [4, 5, 6], "upward": [4, 5], "ion": [4, 6], "closer": [4, 5], "presenc": [4, 5, 9, 12], "themselv": [4, 9, 15], "95": [4, 5, 15], "jet": 4, "airlin": 4, "240": 4, "superson": 4, "station": 4, "cm": [4, 5, 6, 7, 8, 9], "14": [4, 5, 7, 8, 15], "20": [4, 5, 6, 7, 8, 10, 12, 15], "rocket": [4, 16], "ship": 4, "astronaut": 4, "aboard": 4, "middl": [4, 7, 8], "60c": 4, "someon": 4, "group": [4, 6, 7, 9], "decid": [4, 6, 8], "mauna": 4, "kea": 4, "site": [4, 15], "hawaii": 4, "4205": 4, "why": [4, 5, 6, 9, 15], "solar": [4, 5, 6], "1400": 4, "khz": 4, "92c": 4, "5c": 4, "hadron": 4, "tev": 4, "kaon": 4, "498": 4, "135": 4, "1900": [5, 6, 7], "1930": 5, "partli": 5, "motiv": 5, "advanc": [5, 8], "1890": 5, "evacu": 5, "tube": [5, 6, 7], "constitut": [5, 12], "atom": [5, 7, 8, 10], "substructur": 5, "penetr": [5, 7, 8], "phosphoresc": 5, "screen": [5, 7, 16], "vividli": 5, "darken": 5, "room": [5, 7, 10], "kind": [5, 6, 10, 12], "unaffect": 5, "better": [5, 7, 9, 10], "bombard": [5, 6, 7, 9], "bone": 5, "1901": 5, "youtub": [5, 6, 16], "video": [5, 6, 7], "tede": 5, "gase": [5, 6], "particl": [5, 6, 9], "earli": [5, 6, 7, 8, 9, 10], "invent": 5, "1897": 5, "ferdinand": 5, "braun": 5, "anod": [5, 6], "fluoresc": [5, 7], "deflect": [5, 6, 9], "permit": [5, 8, 12], "collim": [5, 7], "voltag": [5, 6], "convincingli": [5, 6], "1906": 5, "poorer": 5, "ioniz": [5, 6], "residu": 5, "ga": [5, 6, 7, 9, 10], "improv": [5, 7, 8, 15], "With": [5, 6, 7, 9, 10], "region": [5, 6, 7, 8], "f_y": 5, "ma_i": 5, "qe": 5, "a_i": [5, 7], "travers": [5, 7], "length": [5, 6, 7, 8, 9, 15], "v_o": [5, 6], "tan": [5, 6, 7, 8, 15], "v_y": [5, 10], "v_x": [5, 7, 10], "condit": [5, 8, 9, 12, 15, 16], "extract": [5, 12, 15], "undergradu": [5, 16], "reproduc": [5, 12], "cancel": [5, 8, 9, 10], "05": [5, 6, 7, 8, 9, 10], "e_mag": 5, "2e4": 5, "b_mag": 5, "8e": [5, 8, 15], "l_plate": 5, "deflect_ang": 5, "radian": [5, 6], "q_m": 5, "lower": [5, 6, 7, 9, 10], "larger": [5, 6, 7, 8, 15], "anticip": 5, "previous": [5, 6, 7, 9], "carrier": 5, "attempt": [5, 7, 8], "millikan": 5, "1911": [5, 6], "visual": [5, 9], "uncharg": 5, "oil": 5, "drop": [5, 6, 8], "scheme": [5, 9, 12], "downward": [5, 6], "air": [5, 6, 7, 8, 10], "_j": 5, "drag": 5, "oppos": 5, "henc": [5, 9, 15], "via": [5, 6, 10], "stoke": 5, "diamet": [5, 6, 7], "sphere": [5, 6], "buoyanc": 5, "balanc": 5, "_e": [5, 6], "flat": 5, "mgd": 5, "termin": [5, 12, 15], "rho": [5, 6, 7], "six": [5, 10], "modern": [5, 7, 10, 14, 16], "quot": [5, 15], "plastic": 5, "sprai": 5, "solut": [5, 6, 7, 8, 10, 13], "evapor": 5, "occasion": [5, 6], "dropdown": [5, 16], "menu": [5, 16], "histogram": 5, "bin": [5, 10], "multipl": [5, 6, 7, 8, 9, 15], "fit": [5, 7, 8, 12], "77": [5, 7, 15], "percentag": [5, 6], "click": [5, 7], "43": [5, 6, 15], "126": 5, "74": [5, 15], "83": [5, 15], "66": [5, 15], "22": [5, 6, 7, 15], "34": [5, 7, 8, 15], "85": [5, 7, 15], "44": [5, 8, 15], "00": 5, "136": [5, 7], "64": [5, 9, 15], "60": [5, 15], "03": [5, 6], "134": 5, "143": 5, "55": [5, 7, 9, 10, 15], "82": [5, 7, 15], "71": [5, 15], "89": [5, 9, 15], "39": [5, 15], "32": [5, 6, 7, 8, 9, 15], "54": [5, 7, 10, 15], "140": 5, "58": [5, 7, 15], "col": [5, 7, 8, 9], "218": [5, 7, 8, 9], "256": [5, 7, 8, 9], "50": [5, 7, 8, 9, 10, 15], "genfromtxt": [5, 15], "raw": 5, "githubusercont": 5, "com": [5, 15], "saturnaxi": [5, 14, 16], "modernphys": [5, 16], "chapter_3": 5, "oil_drop": 5, "csv": 5, "delimit": 5, "hist": 5, "color": [5, 6, 7, 8, 9, 10], "set_xtick": [5, 7, 8], "set_ytick": [5, 7, 8, 9], "optim": [5, 8], "curve_fit": 5, "q0": 5, "popt": 5, "pcov": 5, "pct_error": 5, "transax": 5, "smooth": [5, 7], "vs": [5, 15], "burn": 5, "flame": 5, "prism": 5, "constitu": [5, 6], "rowland": 5, "qualiti": 5, "grate": [5, 6, 7], "spectroscopi": [5, 6], "professor": 5, "chosen": [5, 10, 12], "hopkin": 5, "foremost": 5, "american": 5, "presid": 5, "societi": [5, 12], "1899": 5, "vice": 5, "neither": 5, "nor": [5, 12], "earn": 5, "ph": [5, 6, 7], "schemat": [5, 6, 7, 9], "spectromet": [5, 7], "centimet": 5, "maxima": [5, 7], "5000": [5, 6, 10], "promin": 5, "mm": [5, 6], "bunsen": 5, "gustav": [5, 6], "kirchhoff": 5, "fingerprint": 5, "identif": [5, 12], "composit": [5, 6], "flourish": 5, "finer": [5, 9], "evenli": [5, 10], "attent": 5, "paid": 5, "hope": 5, "sunlight": 5, "helium": [5, 6, 9], "1800": 5, "underli": [5, 6, 7, 8], "chemist": [5, 6], "build": [5, 6, 7], "johann": 5, "balmer": [5, 6], "1885": 5, "empir": [5, 6, 9], "formula": [5, 6], "uv": [5, 8], "white": [5, 6, 7, 14], "paramet": [5, 6, 8, 10, 15], "coeffici": [5, 8], "perhap": [5, 9], "confus": [5, 10, 15], "analyt": 5, "sole": [5, 9], "364": 5, "match": [5, 13], "formerli": 5, "angstrom": 5, "\u00e5": 5, "ander": 5, "\u00e5ngstrom": 5, "unicod": [5, 6], "x212b": [5, 6], "reciproc": [5, 7], "r_": [5, 6, 9], "rydberg": [5, 6, 10], "0972": 5, "096776": [5, 6], "walther": [5, 9], "ritz": [5, 6], "1925": [5, 7, 8, 9], "uncov": 5, "mysteri": [5, 6], "discover": [5, 12], "lyman": [5, 6], "1916": 5, "paschen": [5, 6], "infrar": [5, 6], "ir": 5, "brackett": 5, "1922": [5, 9], "pfund": 5, "1924": [5, 7], "700": 5, "91": [5, 15], "174": 5, "parenthes": [5, 8, 9, 14, 15], "permiss": [5, 12, 16], "121": [5, 7, 8, 10], "102": [5, 7, 8], "ey": [5, 7], "656": [5, 6], "47": [5, 6, 15], "red": [5, 7, 8], "486": 5, "blue": [5, 7, 8], "green": 5, "434": 5, "violet": [5, 8], "410": [5, 6], "397": 5, "difficult": [5, 7, 8], "63": [5, 15], "1282": 5, "infti": [5, 6, 7, 8, 9, 10], "820": [5, 6], "geq": [5, 6, 7, 8], "rydberg_wavelength": 5, "kth": 5, "isfinit": 5, "096776e7": 5, "series_nam": 5, "k_val": 5, "inf": [5, 6], "k_v": 5, "h_lambda": 5, "think": [5, 9, 10, 15], "energi": [5, 6, 8, 10], "smaller": [5, 6, 7, 8, 9], "impli": [5, 6, 7, 8, 10, 12], "quark": 5, "oxygen": 5, "pipe": [5, 7], "music": [5, 12], "overton": [5, 7], "maximum": [5, 6, 7, 9, 10, 15], "open": [5, 7, 14, 15, 16], "none": [5, 15], "ve": 5, "campfir": 5, "forg": 5, "stove": 5, "550": 5, "orang": [5, 6, 10], "emitt": [5, 8], "ideal": [5, 7, 10], "onto": [5, 6, 7, 9], "drill": 5, "hole": 5, "hollow": 5, "black": [5, 6, 7], "insul": [5, 6], "enclosur": [5, 7], "distribut": [5, 6, 7, 8, 12], "absorpt": [5, 6, 9], "mathcal": [5, 7], "wien": [5, 7], "lambda_": [5, 6, 7], "898": 5, "vari": [5, 6, 7, 8], "prescrib": 5, "quantifi": [5, 6, 7], "int_0": [5, 8, 9, 10], "josef": 5, "stefan": 5, "1879": 5, "boltzmann": [5, 10], "epsilon": 5, "sigma": [5, 6, 7], "6705": 5, "furnac": 5, "1600": 5, "door": 5, "1873": 5, "1547": 5, "zero_celsiu": 5, "t_wall": 5, "oc": 5, "t_k": 5, "lambda_max": [5, 6], "500": [5, 7, 8], "surf": 5, "5800": 5, "p_": [5, 6, 7], "082": 5, "radi": 5, "flux": [5, 7], "au": [5, 6, 10], "495": 5, "1380": 5, "slightli": [5, 8, 9, 10], "throughout": [5, 6, 8, 15], "1360": 5, "littl": [5, 6, 9, 15], "odot": 5, "5777": 5, "astronomical_unit": 5, "t_surf": 5, "l_max": 5, "1e9": 5, "stef_boltz": 5, "surf_area": 5, "rad": [5, 6], "lmax_sun": 5, "t_sun": 5, "rad_sun": 5, "r_sun": 5, "95700e8": 5, "iau": 5, "en": 5, "wiki": [5, 12], "solar_radiu": 5, "3781e6": 5, "earth_radiu": 5, "flux_au": 5, "40e": 5, "unsuccess": [5, 6], "electromagnet": [5, 6, 7, 8, 9], "equipart": 5, "thermodynam": [5, 10], "assign": [5, 7, 9, 14, 15], "rayleigh": 5, "sir": 5, "proportion": 5, "ckt": 5, "formul": [5, 7, 8], "muster": 5, "nonzero": [5, 7, 8, 10], "deviat": [5, 6, 7, 8, 10], "badli": 5, "paul": [5, 7, 9], "ehrenfest": [5, 9], "dub": 5, "expert": 5, "reject": [5, 6, 7], "statist": [5, 7, 9], "version": [5, 7, 13, 15, 16], "doubt": [5, 12], "1889": 5, "irrevers": 5, "tri": [5, 6, 9], "wasn": 5, "awar": [5, 6], "plank": 5, "sort": [5, 15], "hf": [5, 6, 7, 8, 10], "tot": [5, 8], "ak": 5, "hc": [5, 6, 7, 9, 10], "e_n": [5, 6, 7, 8], "nhf": [5, 7], "6261": [5, 7], "spent": 5, "plan": 5, "fail": [5, 12, 15], "cornerston": 5, "quotient": 5, "trivial": [5, 8, 9, 10], "bracket": [5, 14, 15], "xe": 5, "transcendent": [5, 8], "bisect": [5, 6], "965": 5, "965k": 5, "x_tran": 5, "lam": [5, 9], "wien_const": 5, "func": [5, 15], "6000": 5, "x_max": 5, "wien_disp": 5, "3e": [5, 6, 7, 10], "898e": 5, "39e": 5, "09": [5, 7], "fell": 5, "electrod": 5, "electroscop": 5, "valenc": [5, 6], "escap": [5, 8, 15], "thermion": [5, 6], "secondari": 5, "transfer": [5, 6, 9, 10], "shine": [5, 7], "weakli": 5, "extra": [5, 8, 15], "eject": 5, "photoelectron": 5, "phi": [5, 6, 7, 8], "makeup": [5, 6], "pd": 5, "93": [5, 15], "pt": 5, "na": [5, 9], "nd": 5, "zn": 5, "cu": [5, 10], "ni": 5, "zr": 5, "fe": [5, 8], "pb": 5, "photocathod": 5, "collector": [5, 6], "retard": 5, "impos": [5, 12], "suppli": [5, 6, 12], "ammet": [5, 6], "photocurr": 5, "photoelecton": 5, "filter": 5, "monochromat": [5, 7], "bias": 5, "v_c": 5, "suffici": 5, "satur": 5, "energet": [5, 6], "threshold": 5, "instantli": 5, "leq": [5, 7, 8, 9], "illumin": 5, "zinc": 5, "289": 5, "except": [5, 8, 12], "rudimentari": 5, "1902": 5, "primarili": [5, 7], "philipp": 5, "lenard": 5, "extens": [5, 8], "inexplic": 5, "elaps": 5, "immedi": [5, 8, 14, 15], "97": [5, 15], "cubic": [5, 6, 7, 8], "attain": [5, 9], "hr": 5, "156": 5, "i_src": 5, "instens": 5, "phi_na": 5, "ke_p": 5, "tot_": 5, "na_dens": 5, "968": 5, "na_molar_mass": 5, "990": 5, "na_atoms_vol": 5, "1e6": [5, 10], "d_na": 5, "na_atom_area": 5, "energy_r": 5, "t_req": 5, "54e": 5, "63e": 5, "16e": [5, 8], "intrigu": 5, "english": 5, "spread": [5, 6, 7], "local": [5, 7, 8, 15, 16], "aspect": [5, 7], "deliv": 5, "struck": [5, 6, 7], "overcom": 5, "whatev": 5, "safe": 5, "degrad": 5, "2_": 5, "ev_o": 5, "1st": 5, "2nd": [5, 10, 15], "collect": [5, 6, 8, 12, 15], "hf_o": 5, "intercept": 5, "disprov": 5, "skeptic": [5, 7], "iii": [5, 7, 8, 12], "928": 5, "typo": 5, "na_lam": 5, "arrai": [5, 7, 15], "4339": 5, "4047": 5, "3650": [5, 10], "3126": 5, "2535": 5, "na_volt": 5, "103": 5, "058": 5, "x_coord": 5, "y_coord": 5, "1e14": 5, "polyfit": 5, "poly1d": 5, "65e": [5, 7], "lithium": 5, "626": [5, 8], "phi_li": 5, "e_400": 5, "400e": 5, "97e": 5, "mv_": [5, 9, 10], "209": 5, "portion": [5, 8, 12, 15], "ke_e": [5, 7], "e_phot": 5, "f_phot": 5, "l_phot": 5, "50e": 5, "43e": 5, "09e": [5, 7], "ye": [5, 15], "maintain": 5, "pictur": [5, 6, 9, 15], "bremsstrahlung": 5, "brake": 5, "e_1": [5, 6, 7, 8, 10], "e_f": 5, "e_i": 5, "sketch": 5, "tungsten": 5, "filament": [5, 6], "focus": [5, 10], "gtrsim": 5, "content": [5, 12, 15, 16], "radiolog": 5, "diagnos": 5, "flaw": [5, 6], "weld": 5, "cast": [5, 15], "crystal": [5, 7], "strongli": [5, 7, 9], "molybdenum": 5, "chromium": 5, "min": [5, 6, 7, 8], "hf_": 5, "duan": 5, "hunt": 5, "kv": 5, "kev": [5, 7], "ulrei": 5, "1918": 5, "curv": [5, 7, 8, 9, 10], "lam_min": 5, "035": 5, "wake": 5, "boat": 5, "reradi": 5, "arthur": [5, 15], "1923": 5, "grai": [5, 8, 10], "phil": 5, "mag": 5, "611": 5, "1913": [5, 6], "unmodifi": 5, "backward": [5, 6], "review": 5, "treat": [5, 6, 7, 10, 15], "relativist": [5, 7], "p_e": [5, 7], "recoil": [5, 6], "m_ec": [5, 7], "hff": 5, "check": [5, 6, 8, 9, 10, 15], "071": 5, "compoton": 5, "lambda_c": 5, "426": [5, 8], "newli": 5, "tightli": [5, 6], "correspondingli": 5, "1927": [5, 7], "050": 5, "gold": [5, 6, 7], "62": [5, 15], "largest": [5, 6, 8], "e_x": 5, "inner": [5, 6], "longest": [5, 6, 10], "2h": 5, "00243": 5, "055": 5, "phot_": 5, "l_x": [5, 9], "l_prime": 5, "e_xp": 5, "48e": 5, "485e": 5, "62e": 5, "26e": 5, "51e": [5, 6], "19e": 5, "forbidden": [5, 8, 9], "versa": 5, "violat": [5, 8, 9, 12], "511": 5, "lightest": 5, "1932": [5, 6], "carl": 5, "anderson": 5, "positron": 5, "dirac": [5, 7, 9], "miss": [5, 6, 15], "massiv": [5, 6, 7], "022": 5, "domin": [5, 8], "theta_": [5, 6], "2m_ec": 5, "qquad": [5, 6, 8, 9, 10], "fo": [5, 6], "doom": 5, "proxim": 5, "drawn": 5, "atomlik": 5, "positronium": 5, "binari": 5, "2m_e": [5, 6, 7, 8], "hf_1": 5, "hf_2": 5, "f_1": 5, "f_2": 5, "2hf": 5, "draw": [5, 7, 15], "buoyant": 5, "droplet": [5, 6], "freeli": 5, "smallest": [5, 6, 7, 8, 15], "293": [5, 10], "2500": 5, "9000": 5, "basketbal": 5, "human": [5, 15], "halv": 5, "270": 5, "dental": 5, "machin": [5, 15], "oper": [5, 8], "theori": [6, 7, 8, 9, 12], "dat": 6, "featureless": 6, "har": 6, "address": 6, "search": [6, 15], "piec": 6, "belong": 6, "ancient": 6, "fire": 6, "70": [6, 15], "electrolysi": 6, "conductor": [6, 8], "hint": [6, 15], "indirect": [6, 12], "unravel": 6, "central": [6, 7, 9, 10], "question": [6, 7, 10], "arrang": [6, 7, 12], "wherein": 6, "uniformli": 6, "embed": 6, "background": [6, 16], "liken": 6, "raisin": 6, "plum": 6, "pud": 6, "radiat": [6, 7, 9], "correl": 6, "imposs": [6, 7, 9], "ernest": 6, "project": [6, 7], "thin": 6, "assist": [6, 7], "geiger": 6, "conceiv": 6, "marsden": 6, "surprisingli": 6, "leaf": 6, "greatli": 6, "latest": 6, "calib": 6, "rifl": 6, "bullet": [6, 14], "box": [6, 8], "homogen": 6, "ricochet": 6, "foil": 6, "v_e": 6, "targ": 6, "2m_": 6, "7000": 6, "hardli": 6, "2v_": [6, 10], "2m_ev_": 6, "016": 6, "rangle_": 6, "ia": [6, 9], "gieger": 6, "197": 6, "occupi": [6, 9, 10], "lattic": [6, 7, 8], "2300": 6, "79": [6, 15], "empti": [6, 9, 15], "core": [6, 9], "z_1e": 6, "z_2e": 6, "impact": 6, "closest": 6, "projectil": 6, "hyperbol": [6, 8], "besid": 6, "undeflect": [6, 9], "equiv": [6, 8, 10, 15], "mv_ob": 6, "instantan": [6, 7, 10], "impuls": 6, "appreci": 6, "_f": 6, "_i": [6, 9], "p_f": 6, "p_i": 6, "isoscel": 6, "2mv_o": [6, 8], "z_1": 6, "z_2": 6, "_r": 6, "mr": 6, "mv_o": 6, "v_ob": 6, "int_": [6, 7, 8, 9, 10], "phi_i": 6, "phi_f": 6, "cot": 6, "select": 6, "b_o": 6, "theta_o": 6, "circl": [6, 9], "nt": 6, "nta": 6, "n_m": 6, "m_g": 6, "n_": [6, 10], "ta": 6, "z_1z_2": 6, "epsilon_0": 6, "n_au": 6, "9e28": 6, "t_au": 6, "k_alpha": 6, "7e6": 6, "z_au": 6, "z_he": 6, "theta_alpha": 6, "f_au": 6, "db": [6, 9], "df": [6, 8, 10], "eq": [6, 9, 10], "csc": 6, "n_i": [6, 8], "ring": [6, 7], "width": [6, 7, 8, 9, 15], "da": [6, 10], "4th": 6, "basi": [6, 10, 12], "r_alpha": 6, "01": [6, 7, 8, 9, 10, 15], "ntheta_ni": 6, "ntheta_ni_mm2": 6, "15e": [6, 8], "verif": [6, 8], "planetari": [6, 9], "resembl": 6, "circular": [6, 7, 9], "centripet": 6, "a_r": 6, "tangenti": 6, "m_ev": 6, "justifi": [6, 7], "treatment": [6, 7], "whether": [6, 7, 8, 9, 12, 15], "r_hyd": 6, "25e": 6, "1836": 6, "crash": 6, "shortli": [6, 7], "niel": 6, "meet": 6, "ws": 6, "somehow": 6, "acquaint": 6, "govern": [6, 8, 9], "blackbodi": 6, "impress": 6, "wonder": 6, "laid": 6, "revolv": [6, 9], "fiction": 6, "intuit": 6, "analog": [6, 8, 9, 10], "physic": [6, 8, 15, 16], "1915": [6, 7], "conjunct": [6, 15], "e_2": [6, 7, 8, 9, 10], "dynam": [6, 10], "nhf_": 6, "orb": [6, 9], "equival": [6, 7, 12, 13, 15], "hbar": [6, 7, 8, 9], "pronounc": 6, "bar": [6, 8, 10], "self": [6, 15], "hardest": 6, "critic": 6, "m_evr": 6, "m_er": 6, "r_n": 6, "a_o": [6, 7, 9], "53": [6, 15], "2r_1": 6, "2a_o": [6, 7, 9], "suspect": 6, "shell": [6, 9, 10, 15], "64c": 6, "097373": 6, "absent": 6, "broad": [6, 7, 15], "displai": [6, 7, 8, 9, 12, 13], "v_n": 6, "v_1": [6, 8], "fine": [6, 9, 15], "137": 6, "shortest": 6, "denomin": [6, 8, 10], "0974": 6, "335": 6, "875": 6, "219": 6, "203": 6, "rydberg_eqn_bohr": 6, "r_infti": 6, "wave_num_max": 6, "wave_num_min": 6, "infin": [6, 8], "lambda_min": 6, "334e": 6, "219e": 6, "troubl": 6, "unimport": 6, "nearest": 6, "cascad": 6, "2n": 6, "2e_o": 6, "hn": 6, "r_e": 6, "analysi": [6, 7], "mu_e": 6, "m_em": 6, "999456": 6, "athough": 6, "h_": 6, "deuterium": 6, "tritium": 6, "007276": 6, "013553": 6, "triton": 6, "015500": 6, "0005485799": 6, "r_h": 6, "99946r_": 6, "r_d": 6, "99973r_": 6, "r_t": 6, "99982r_": 6, "2r": [6, 9], "wer": 6, "m_t": 6, "m_nucleu": 6, "l_alpha": 6, "5f": 6, "h_alpha": 6, "99946": 6, "99973": 6, "99982": 6, "ze": 6, "spectrograph": 6, "arnold": 6, "sommerfeld": [6, 7], "adapt": [6, 12, 16], "hypothes": 6, "ot": 6, "split": [6, 8, 9, 15], "stark": [6, 8], "broaden": [6, 9], "successfulli": [6, 8], "denigr": 6, "tha": 6, "stronger": [6, 9], "radii": 6, "roman": 6, "histor": 6, "heavi": 6, "dislodg": 6, "vacanc": 6, "descend": [6, 9], "full": [6, 7, 8, 9, 12, 13], "k_": [6, 7, 8, 10], "lab": 6, "european": [6, 12, 15], "moselei": 6, "engag": 6, "catalogu": 6, "cr": 6, "1914": 6, "discuss": [6, 7], "copenhagen": 6, "mention": 6, "extent": [6, 9, 12], "lambda_k": 6, "reorder": 6, "tabul": 6, "aluminum": [6, 7], "promethium": 6, "1940": 6, "firmer": 6, "foot": 6, "clarifi": 6, "l_": 6, "lambda_l": 6, "z_": 6, "eff": 6, "proce": 6, "crz_": 6, "rewrit": [6, 7, 9, 10], "rz_": 6, "4n": 6, "spectroscop": [6, 9], "franck": 6, "hot": 6, "mesh": 6, "regist": 6, "electromet": 6, "voltmet": 6, "instruct": [6, 10, 15], "assembl": 6, "hg": 6, "vapor": 6, "sudden": 6, "suddenli": 6, "ast": 6, "teh": [6, 9], "onset": 6, "arbitrari": [6, 9], "versu": 6, "graph": [6, 15], "context": [6, 12], "88": [6, 15], "inelast": 6, "promot": [6, 9], "sharpli": 6, "discer": 6, "revolut": [6, 9], "potassium": 6, "exercis": [6, 8, 12, 17, 18], "magnesium": 6, "barkla": 7, "exhibit": [7, 8], "von": 7, "laue": 7, "furthermor": 7, "thew": 7, "apertur": [7, 8], "obstruct": 7, "physicsopenlab": 7, "nacl": 7, "fcc": 7, "walter": 7, "friedrich": 7, "knip": 7, "solid": [7, 8, 10], "bragg": 7, "son": 7, "lawrenc": 7, "exploit": 7, "spot": 7, "dot": [7, 8, 14], "ste": 7, "Is": 7, "asymmetr": 7, "chare": 7, "dipol": [7, 9], "interf": 7, "rock": 7, "simplif": 7, "adjac": 7, "outgo": 7, "2d": [7, 15], "interatom": 7, "terminolog": [7, 9], "dash": [7, 8], "interplanar": 7, "father": 7, "orient": [7, 9], "su": 7, "dna": 7, "powder": 7, "xrd": 7, "crystallographi": 7, "282": 7, "varieti": 7, "noncub": 7, "098": 7, "calibr": 7, "1920": [7, 9], "crystallin": 7, "princ": 7, "debrogli": 7, "vers": 7, "encourag": [7, 12, 13], "prohibit": [7, 8, 10], "doctor": 7, "thesi": 7, "pari": 7, "arous": 7, "wavelik": [7, 8], "virtual": [7, 10], "tenni": 7, "057": 7, "2mk": 7, "2m_ek": 7, "9": [7, 8, 9, 10, 12, 15], "109": [7, 8], "2398": 7, "debroglie_wav": 7, "m_tb": 7, "v_tb": 7, "me_ev": 7, "k_ev": [7, 10], "k_j": [7, 10], "l_tb": 7, "l_e": 7, "73e": 7, "circumfer": 7, "mvr": [7, 9], "rp": 7, "nh": 7, "clinton": 7, "davisson": 7, "lester": 7, "germer": 7, "bottl": [7, 15], "explod": 7, "nickel": 7, "accid": 7, "breakag": 7, "oxid": 7, "repair": 7, "variat": 7, "polycrystallin": 7, "trigonometr": 7, "215": 7, "165": 7, "transmiss": [7, 8], "celluloid": 7, "platinum": 7, "1937": 7, "kinetic_energi": 7, "germeer": 7, "85e": 7, "cold": 7, "2m_n": 7, "3m_nkt": 7, "m_n": 7, "675": 7, "381": 7, "515": 7, "145": [7, 10], "287": 7, "suitabl": [7, 8], "supercold": 7, "extran": 7, "debroglie_wave_ga": 7, "t_room": 7, "l_room": 7, "t_cold": 7, "l_cold": 7, "452e": 7, "867e": 7, "heavili": 7, "sinusoid": [7, 8], "psi": [7, 8, 9, 10], "kx": [7, 8], "usag": 7, "spectroscopist": 7, "const": 7, "rcparam": [7, 8], "updat": [7, 8], "mathtext": [7, 8], "fontset": [7, 8], "sine_wav": 7, "sine": [7, 8, 9], "l_wave": 7, "v_wave": 7, "x_wave": 7, "psi_o": [7, 8], "psi_t": 7, "ncol": [7, 8, 10], "quarter": 7, "button": [7, 16], "harmon": 7, "crest": 7, "satisfi": [7, 8, 9, 12], "beat": 7, "psi_a": [7, 8], "psi_b": [7, 8], "overal": [7, 10], "bottom": [7, 8], "panel": 7, "envelop": 7, "ticker": 7, "maxnloc": 7, "offset": 7, "ax11": [7, 8], "321": 7, "ax12": [7, 8], "322": 7, "ax21": [7, 8], "323": 7, "ax22": [7, 8], "324": 7, "ax31": [7, 8], "325": 7, "ax32": [7, 8], "326": 7, "ax_list": [7, 10], "theta_a": 7, "theta_b": 7, "amp_a": 7, "amp_b": 7, "label_a": 7, "label_b": 7, "ph_off": 7, "psi_ab": 7, "k_diff": 7, "psi_beat": 7, "set_xticklabel": [7, 8], "yaxi": 7, "set_major_loc": 7, "bbox_to_anchor": [7, 8], "frameon": [7, 8], "subplots_adjust": [7, 10], "hspace": 7, "wspace": [7, 10], "omega_1": 7, "omega_2": 7, "psi_1": [7, 8], "psi_2": [7, 8], "k_1x": [7, 8], "k_2x": 7, "omega_1t": 7, "cosin": [7, 8, 9], "2a": [7, 8], "av": [7, 8], "omega_": 7, "u_": 7, "confin": [7, 8, 9], "fourier": [7, 10], "k_ix": 7, "omega_i": [7, 10], "gaussian": [7, 8], "easi": [7, 14, 15], "k_ox": 7, "k_o": 7, "exponenti": [7, 8, 9, 10, 15], "a_k": 7, "delta_k": 7, "i_k": 7, "psi_gauss": 7, "psi_wav": 7, "psi_x": [7, 8], "delta_x": [7, 8], "std": 7, "ax1": [7, 8, 10], "ax2": [7, 8, 10], "122": [7, 8, 10], "axvlin": [7, 8, 10], "linestyl": [7, 8, 9, 10], "x_o": [7, 8], "dk": 7, "dp": 7, "2pc": 7, "kv_": 7, "dw": 7, "dv_": 7, "nondispers": 7, "plai": [7, 10], "deep": [7, 8], "throw": 7, "pond": 7, "compton": 7, "charact": [7, 8, 13, 14, 15], "patter": 7, "minima": 7, "emerg": [7, 8], "contradict": 7, "christma": 7, "lectur": [7, 17, 18], "1961": 7, "clau": 7, "j\u00f6nsson": 7, "electrolyt": 7, "deposit": 7, "polym": 7, "strip": 7, "theta_1": 7, "y_1": 7, "68": [7, 15], "937": 7, "nake": 7, "magnifi": 7, "lens": 7, "d_slit": 7, "n_1": [7, 8], "d_screen": 7, "arcsin": 7, "32e": 7, "36e": 7, "68e": 7, "37e": 7, "destroi": 7, "devis": 7, "big": [7, 15], "complementari": 7, "complementar": 7, "readi": 7, "trade": 7, "dictat": 7, "werner": 7, "heisenberg": [7, 8, 10], "p_z": 7, "consequ": 7, "uncertain": 7, "exact": [7, 8, 15], "fenc": 7, "0546": 7, "96": [7, 12, 15], "004c": 7, "964e": 7, "004": 7, "45e": 7, "logic": [7, 15], "conjug": [7, 8, 9], "intrins": 7, "instrument": 7, "mew": 7, "lifetim": 7, "manag": [7, 15], "irregular": 7, "delta_t": 7, "l_ph": 7, "delta_": 7, "f_ph": 7, "delta_f": 7, "f_ratio": 7, "27e": 7, "29e": [7, 8], "96e": 7, "ce": [7, 8, 10], "file": [7, 13, 15], "propto": [7, 8], "likelihood": 7, "instant": 7, "somewher": [7, 8], "born": 7, "1926": 7, "erwin": 7, "schr\u00f6dinger": 7, "1928": 7, "mainstream": 7, "unveil": 7, "\u00fcber": 7, "den": 7, "anschaulichen": 7, "inhalt": 7, "der": 7, "quantentheoretischen": 7, "kinematik": 7, "mechanik": 7, "denmark": 7, "pertain": 7, "school": 7, "wolfgang": [7, 9], "pauli": [7, 9, 10], "argument": [7, 8, 9, 15], "choos": [7, 8, 9, 12, 15], "collaps": 7, "nondeterminist": 7, "chao": 7, "vagu": 7, "nonprobabilist": 7, "bother": 7, "relianc": 7, "god": [7, 10], "dice": [7, 10], "paradox": 7, "refut": 7, "cat": 7, "1935": 7, "live": [7, 10, 14, 16], "di": 7, "podolski": 7, "rosen": 7, "epr": 7, "bell": 7, "altern": [7, 10], "hugh": 7, "everett": 7, "graduat": 7, "1957": 7, "invok": 7, "favor": [7, 8], "trap": [7, 8], "vanish": 7, "boundari": [7, 8, 9], "reson": [7, 8], "ldot": [7, 8, 9], "lambda_n": 7, "k_n": [7, 8], "8m": 7, "psi_n": [7, 8], "x_rng": [7, 8], "axhlin": [7, 8, 9], "psi_": [7, 8, 9], "horizontalalign": 7, "fontweight": 7, "bold": [7, 13, 14], "p_n": 7, "p_1": 7, "aros": 7, "8m_e": 7, "e_3": [7, 9], "338": 7, "pib_en": 7, "ell_": 7, "02e": 7, "42e": 7, "thrown": 7, "slinki": 7, "0030": 7, "6x": 7, "300t": 7, "7x": 7, "250t": 7, "i_o": [7, 10], "de": [8, 9, 10], "brogli": 8, "peter": 8, "deby": 8, "strictli": 8, "sens": [8, 10, 15], "mita": 8, "2021": 8, "pde": 8, "nabla": [8, 9], "introduct": [8, 9, 17, 18], "restrict": [8, 9, 12], "compris": 8, "ae": [8, 9, 10], "ik": 8, "ka": 8, "negat": 8, "uniti": [8, 9, 10], "myst_nb": [8, 9], "glue": [8, 9], "psi_alpha": 8, "global": [8, 15], "norm_a": 8, "psi_al": 8, "fill_between": [8, 10], "set_yticklabel": [8, 9, 10], "psi_fig": 8, "symmetr": [8, 10], "2x": [8, 13], "biggr": 8, "rvert_0": 8, "p_a": 8, "432": 8, "p_b": 8, "rvert_": 8, "059": 8, "anywher": [8, 12], "everywher": [8, 15], "circumst": 8, "explicitli": 8, "sch\u00f6dinger": 8, "ordinari": [8, 9], "bt": 8, "ibt": 8, "iet": 8, "2me": [8, 10], "ikx": 8, "inher": [8, 10], "epxect": 8, "forth": 8, "x_i": 8, "xp": 8, "procedur": [8, 9], "coffe": 8, "twice": 8, "hard": 8, "explor": 8, "kl": 8, "yield": [8, 9, 10], "wea": 8, "2me_n": 8, "2ml": 8, "psi_0": 8, "bohr": [8, 9, 10], "dv": [8, 10, 13], "2ax": 8, "32l": 8, "sympi": 8, "57l": 8, "diff": 8, "var": 8, "exp_x": 8, "exp_x2": 8, "exp_p": 8, "exp_p2": 8, "arg": 8, "realist": 8, "constraint": [8, 9], "lim_": 8, "psi_i": 8, "v_ox": 8, "kc": 8, "z_o": 8, "fsw": 8, "fsw_prime": 8, "griffith": 8, "z1": 8, "z_guess": 8, "z_root": 8, "append": [8, 15], "fsw_fig": 8, "graphic": 8, "minim": [8, 9], "fsw_wave_func": 8, "calc_k": 8, "calc_alpha": 8, "region_i": 8, "region_ii": 8, "logical_and": 8, "region_iii": 8, "len": [8, 15], "calc_en": 8, "z_n": 8, "calc_coeff": 8, "a_n": 8, "term_1": 8, "term_2": 8, "c_n": 8, "v_pot": 8, "fsw_func_fig": 8, "mark": [8, 12], "remark": 8, "joint": 8, "smoothli": 8, "edg": 8, "depth": 8, "exceedingli": 8, "_x": [8, 10], "_y": [8, 10], "_z": [8, 10], "laplacian": 8, "usual": [8, 9], "shorthand": 8, "notat": [8, 9, 13, 15], "l_1": 8, "l_2": 8, "l_3": 8, "cube": [8, 15], "k_2y": 8, "k_3z": 8, "k_i": 8, "k_3": 8, "k_1l_1": 8, "n_3": 8, "k_1a": 8, "211": [8, 9], "ml": 8, "112": 8, "degener": [8, 9], "degeneraci": [8, 9], "eccentr": [8, 9], "perturb": 8, "therebi": [8, 15], "sho": 8, "kappa": [8, 10], "restor": 8, "hook": 8, "shm": 8, "diatom": [8, 10], "taylor": 8, "v_2": 8, "v_i": 8, "addition": [8, 9, 15], "hermit": 8, "sho_potenti": 8, "sho_wave_func": 8, "sho_fig": 8, "virial": 8, "scope": [8, 10, 12], "polynomi": [8, 9], "h_n": 8, "psi_3": 8, "3x": 8, "elif": [8, 15], "421": 8, "422": 8, "423": 8, "424": 8, "425": 8, "ax41": 8, "427": 8, "ax42": 8, "428": 8, "ax_psi": 8, "ax_prob": 8, "sho_wav": 8, "oscillatori": 8, "damp": 8, "heisenbergi": 8, "e_col": 8, "x_n": 8, "x_p": 8, "sho_energi": 8, "greatest": 8, "contrari": 8, "cdot1": 8, "5pt": 8, "odd": [8, 9, 10], "h_o": 8, "_o": 8, "invert": 8, "vallei": 8, "nasa": 8, "grace": 8, "satellit": 8, "bend": 8, "transmit": 8, "gg": [8, 10], "ik_ix": 8, "ik_": 8, "ge": 8, "ik_il": 8, "k_iae": 8, "k_ibe": 8, "k_ife": 8, "tediou": 8, "odeint": 8, "simpson": [8, 10], "fsolv": 8, "ksqr": 8, "k_squar": 8, "psi_func": 8, "coeff": 8, "k_x": [8, 10], "k_ii": 8, "x_coeff": 8, "psi_coeff": 8, "psi_iia": 8, "psi_iib": 8, "psi_iii": 8, "advance_psi": 8, "xm": 8, "numerov": 8, "k_xm": 8, "k_xp": 8, "psi_xm": 8, "psi_next": 8, "ymax": 8, "1e2": 8, "v_rng": [8, 10], "x_bound": 8, "ones": [8, 9, 15], "rng": 8, "opt": 8, "psi_coeff_left": 8, "full_idx": 8, "barrier_potenti": 8, "lot": [8, 15], "sinh": 8, "substanti": [8, 12], "semiconductor": 8, "tall": 8, "get_kappa": 8, "transmission_coeff": 8, "t_inv": 8, "l_bar": 8, "e_el": 8, "v_bar": 8, "elsewher": 8, "heavier": [8, 9], "wolfram": 8, "2_n": 8, "unnorm": 8, "fg": 9, "rg": 9, "rf": 9, "rfg": 9, "im_": 9, "laguerr": 9, "edmond": 9, "dr": [9, 10], "ra_o": 9, "adrien": 9, "mari": [9, 15], "legendr": 9, "3a_o": 9, "customari": 9, "y_": 9, "mp": [9, 10], "2i": 9, "105": 9, "3i": 9, "chose": 9, "minu": 9, "discard": 9, "24a": 9, "5_o": 9, "24a_o": 9, "semimajor": 9, "disagre": 9, "semiclass": 9, "choic": [9, 14], "harp": 9, "rincip": 9, "iffus": 9, "undament": 9, "alphabet": 9, "2p": 9, "l_z": 9, "arrow_len": 9, "ylabel": 9, "aw": 9, "hw": 9, "hl": 9, "m_idx": 9, "arrow": 9, "head_width": 9, "head_length": 9, "length_includes_head": 9, "lz_fig": 9, "Will": 9, "l_y": 9, "sum_": 9, "summat": 9, "nine": 9, "anomal": 9, "rough": 9, "circul": 9, "loop": [9, 15], "moment": 9, "dq": 9, "erv": 9, "el": 9, "tend": 9, "v_b": 9, "child": 9, "precess": 9, "customarili": 9, "mu_z": 9, "mu_b": 9, "magneton": 9, "otto": 9, "stern": 9, "gerlach": 9, "inhomogen": 9, "south": 9, "pole": 9, "north": 9, "torqur": 9, "f_z": 9, "dv_b": 9, "samuel": 9, "goudsmit": 9, "uhlenbeck": 9, "react": 9, "2s": [9, 15], "_s": 9, "incorpor": 9, "gyromagnet": 9, "g_": 9, "insignific": 9, "adequ": 9, "capit": [9, 15], "jeff": 9, "cronk": 9, "gonzaga": 9, "possess": 9, "nu": 9, "transiton": 9, "chapter": [9, 15, 16, 17, 18], "e_4": 9, "2g": 9, "3p": 9, "flip": 9, "interstellar": 9, "attribut": [12, 16, 17, 18], "creativ": [12, 16, 17, 18], "corpor": 12, "firm": [10, 12], "legal": 12, "servic": 12, "advic": 12, "public": 12, "licens": [12, 16, 17, 18], "lawyer": 12, "client": 12, "warranti": 12, "disclaim": [12, 15], "liabil": 12, "damag": 12, "fullest": 12, "creator": [12, 16], "holder": 12, "authorship": 12, "copyright": 12, "exhaust": 12, "licensor": 12, "intend": 12, "irrevoc": 12, "secur": 12, "reus": 12, "cc": [12, 16], "creativecommon": 12, "considerations_for_licensor": 12, "grant": 12, "request": [12, 15], "more_consider": 12, "considerations_for_license": 12, "benefit": 12, "1": [12, 14, 15], "record": 12, "synch": 12, "broadcast": 12, "sui": 12, "generi": 12, "databas": 12, "categor": [12, 15], "2": [10, 12, 14, 15], "technolog": 12, "circumv": 12, "fulfil": 12, "oblig": 12, "articl": 12, "wipo": 12, "treati": 12, "decemb": 12, "1996": 12, "fair": 12, "artist": 12, "literari": 12, "entiti": 12, "reproduct": 12, "dissemin": 12, "commun": [12, 15], "member": [12, 15], "ec": 12, "parliament": 12, "council": 12, "march": 12, "protect": 12, "amend": 12, "herebi": 12, "worldwid": 12, "royalti": 12, "sublicens": 12, "exclus": [9, 10, 12], "compli": 12, "3": [10, 12, 15, 17, 18], "6": [10, 12, 15], "format": [12, 13, 14, 15, 16], "technic": 12, "hereaft": 12, "waiv": 12, "assert": 12, "forbid": [9, 12], "5": [10, 12, 15], "recipi": 12, "offer": 12, "automat": [12, 15], "endors": 12, "constru": 12, "sponsor": 12, "offici": 12, "statu": 12, "moral": 12, "privaci": 12, "person": [12, 15], "patent": 12, "trademark": 12, "voluntari": 12, "waivabl": 12, "statutori": 12, "compulsori": 12, "expressli": 12, "retain": 12, "pseudonym": 12, "ii": 12, "iv": 12, "uri": 12, "hyperlink": 12, "resourc": 12, "supplement": 12, "undertaken": 12, "BY": [12, 16], "THE": 12, "TO": 12, "AS": 12, "IS": 12, "AND": 12, "NO": [10, 12], "represent": 12, "OR": 12, "OF": 12, "merchant": 12, "FOR": 12, "infring": 12, "latent": 12, "defect": 12, "NOT": 12, "IN": 12, "WILL": 12, "BE": [10, 12], "liabl": 12, "ON": 12, "incident": 12, "consequenti": 12, "punit": 12, "exemplari": 12, "cost": [12, 15], "expens": 12, "IF": 12, "advis": 12, "SUCH": 12, "shall": 12, "waiver": 12, "reinstat": 12, "date": 12, "cure": 12, "seek": 12, "remedi": 12, "herein": 12, "lawfulli": 12, "deem": 12, "unenforc": 12, "reform": 12, "enforc": 12, "consent": 12, "privileg": 12, "immun": 12, "jurisdict": 12, "parti": 12, "notwithstand": 12, "elect": 12, "instanc": [12, 15], "dedic": 12, "domain": 12, "cc0": 12, "polici": 12, "logo": 12, "unauthor": 12, "paragraph": 12, "jupyt": [13, 14, 15, 16], "notebook": [13, 14, 15, 16], "submit": 13, "ipynb": 13, "compil": [13, 14, 15], "pdf": [13, 14], "filenam": 13, "submiss": 13, "phys2700_chpt": 13, "_lastnam": 13, "cell": [13, 14, 15, 16], "markdown": [13, 16], "preambl": [13, 16], "math": [13, 15], "latex": 13, "verbatim": 13, "copi": [13, 15, 16], "recreat": 13, "templat": [13, 15], "slide": 13, "lightweight": 14, "markup": [14, 16], "editor": 14, "fly": [14, 15], "wsiwyg": 14, "implement": [14, 15, 17, 18], "websit": 14, "document": [14, 16], "book": 14, "alongsid": 14, "mathematica": [14, 15], "matlab": 14, "linux": 14, "mac": 14, "harmoni": 14, "mx": 14, "class": [14, 15], "homework": 14, "webpag": 14, "phrase": 14, "sublevel": 14, "render": 14, "blank": [14, 15], "ensur": 14, "compat": 14, "tag": 14, "br": 14, "indent": [10, 14, 15], "tab": [14, 15], "nbsp": 14, "mimic": 14, "trail": [14, 15], "broadest": 14, "emphasi": 14, "pop": 14, "ital": 14, "tripl": 14, "underscor": [14, 15], "emphas": 14, "nest": 14, "blockqout": 14, "subsect": 14, "item": [14, 15], "pick": 14, "enclos": 14, "url": 14, "github": [14, 16], "io": 14, "modernastro": 14, "home": 14, "output": 14, "undergrad": 14, "depart": 14, "saint": 14, "colleg": 14, "quick": 14, "friendli": 15, "readabl": 15, "fortran": 15, "effici": 15, "onc": 15, "luckili": 15, "hardwar": 15, "softwar": 15, "os": 15, "advantag": 15, "tweak": 15, "debug": 15, "store": 15, "memori": 15, "fledg": 15, "arithmet": 15, "task": 15, "4294967296": 15, "decim": 15, "rais": 15, "ambigu": 15, "expon": [10, 15], "programm": 15, "uncommon": 15, "comeback": 15, "month": 15, "unkind": 15, "mayb": 15, "yourself": 15, "hashtag": 15, "impract": [10, 15], "apostroph": 15, "googl": [15, 16], "colab": [15, 16], "king": 15, "britain": 15, "quest": 15, "holi": 15, "grail": 15, "airspe": 15, "laden": 15, "swallow": 15, "african": 15, "str": 15, "prompt": 15, "datatyp": 15, "ndarrai": 15, "probe": 15, "borrow": 15, "syntax": 15, "141592653589793": 15, "referenc": 15, "default": 15, "4f": [10, 15], "1416": 15, "14159265e": 15, "xd": 15, "yf": 15, "pre": 15, "alloc": 15, "xs": 15, "banana": 15, "realpython": 15, "groceri": 15, "bag": 15, "track": 15, "147": 15, "483": 15, "647": 15, "2j": 15, "tupl": 15, "immut": 15, "mutabl": 15, "newlin": 15, "dictionari": 15, "curli": 15, "header": 15, "index": 15, "clees": 15, "palin": 15, "idl": 15, "chapman": 15, "jone": 15, "gilliam": 15, "starti": 15, "slice": 15, "atkinson": 15, "typeerror": 15, "traceback": 15, "recent": 15, "row": 15, "clumsi": 15, "load": 15, "comma": 15, "tradit": 15, "0th": 15, "beforehand": 15, "longlist": 15, "overwrit": 15, "57079633": 15, "newvalu": 15, "handi": 15, "valuedata": 15, "stringdata": 15, "tommi": 15, "dick": 15, "harri": 15, "salli": 15, "nina": 15, "new_valuedata": 15, "mix": 15, "increment": 15, "49": [10, 15], "72": 15, "73": 15, "84": 15, "86": 15, "87": 15, "94": 15, "flexibl": 15, "np_axi": 15, "new_axi": 15, "unexpect": 15, "4000000000000001": 15, "7999999999999998": 15, "concaten": 15, "join": 15, "quirk": 15, "grade": 15, "floor": 15, "modulo": 15, "remaind": 15, "string_a": 15, "jack": 15, "jill": 15, "string_b": 15, "hill": 15, "list_a": 15, "list_b": 15, "shortcut": 15, "counter": 15, "harder": 15, "cautious": 15, "java": 15, "soft": 15, "statement": [15, 16], "hungri": 15, "eat": 15, "boolean": 15, "0l": 15, "aren": 15, "Not": 15, "congruent": 15, "bug": 15, "monti": 15, "impostor": 15, "stdinnotimplementederror": 15, "anaconda3": 15, "lib": 15, "python3": 15, "packag": [15, 16], "ipykernel": 15, "kernelbas": 15, "py": 15, "1201": 15, "kernel": 15, "raw_input": 15, "1199": 15, "_allow_stdin": 15, "1200": 15, "msg": 15, "frontend": 15, "1202": 15, "_input_request": 15, "1203": 15, "1204": 15, "_parent_id": 15, "1205": 15, "get_par": 15, "1206": 15, "password": 15, "1207": 15, "droid": 15, "colon": 15, "signifi": 15, "grab": 15, "superior": 15, "jedi": 15, "mind": 15, "execut": [15, 16], "trait": 15, "met": 15, "shampoo": 15, "hair": 15, "lather": 15, "rins": 15, "profit": 15, "manufactur": 15, "clean": 15, "keyword": 15, "exclud": 15, "delin": 15, "divisor": 15, "save": 15, "inherit": 15, "factori": 15, "anytim": 15, "7s": 15, "7d": 15, "120": 15, "720": 15, "5040": 15, "40320": 15, "362880": 15, "boss": 15, "deleg": 15, "morn": 15, "getup": 15, "getdress": 15, "eatbreakfast": 15, "spam": 15, "egg": 15, "bacon": 15, "baked_bean": 15, "continuesleep": 15, "entail": 15, "buri": 15, "modular": 15, "funciton": [10, 15], "sq": 15, "puttin": 15, "gthe": 15, "answer2everyth": 15, "road": 15, "whenev": 15, "older": 15, "stai": [9, 15], "occas": 15, "fn": 15, "nameerror": 15, "pass_trig": 15, "abil": 15, "plot_trig": 15, "xstep": 15, "xval": 15, "trig_func": 15, "trig": 15, "49999999999999994": 15, "8660254037844387": 15, "5773502691896257": 15, "emploi": 15, "drive": 15, "silli": 15, "brit": 15, "magic": 15, "pool": 15, "anyon": 16, "snippet": 16, "familiar": 16, "meant": 16, "runtim": 16, "panda": 16, "curios": 16, "publicli": 16, "repositori": 16, "evolv": 16, "collabor": 16, "welcom": 16, "billi": 16, "quarl": 16, "valdosta": [17, 18], "summari": [17, 18], "textbook": [17, 18], "accompani": 9, "accumul": 9, "subshel": 9, "eclus": 9, "aka": 9, "fermion": [9, 10], "elecron": 9, "mainli": 9, "1s": 9, "doublet": 9, "j_z": 9, "s_z": 9, "m_j": 9, "momenta": 9, "nl_j": 9, "uppercas": [9, 10], "sl": 9, "2p_": 9, "j_x": 9, "j_y": 9, "b_": [9, 10], "ext": 9, "002": 9, "589": 9, "plug": 9, "1240": 9, "experment": 9, "dlam": 9, "inert": 9, "ruls": 9, "hund": 9, "additon": 9, "momemnta": 9, "_1": 9, "_2": 9, "russel": 9, "saunder": 9, "replust": 9, "nuclu": 9, "antiparallel": 9, "fewer": 9, "l_j": 9, "singlet": 9, "triplet": 9, "predomin": 9, "ell_1": 9, "ell_2": 9, "12p": 9, "3s_1": 9, "1s_0": 9, "3p_0": 9, "3p_1": 9, "3p_2": 9, "1p_1": 9, "mechanist": 10, "wholli": 10, "determinist": 10, "lagrang": 10, "1790": 10, "hamilton": 10, "1840": 10, "enabl": 10, "pierr": 10, "simon": 10, "laplac": 10, "problem": 10, "belief": 10, "inspir": 10, "tandem": 10, "calori": 10, "1798": 10, "mere": 10, "substanc": 10, "ahead": 10, "1822": 10, "truli": 10, "prescott": 10, "equivlal": 10, "1843": 10, "paddl": 10, "wheel": 10, "relev": 10, "baptist": 10, "soon": 10, "probablist": 10, "perceiv": 10, "lack": 10, "worri": 10, "regardless": 10, "coint": 10, "toss": 10, "restitut": 10, "formid": 10, "pariticl": 10, "desir": 10, "v_z": 10, "componenet": 10, "thee": 10, "2mv": 10, "crucial": 10, "dv_x": 10, "dv_y": 10, "dv_z": 10, "aproportion": 10, "mv_x": 10, "mv_y": 10, "mv_z": 10, "wihtin": 10, "integrand": 10, "i_n": 10, "2i_n": 10, "dummi": 10, "tranform": 10, "rdr": 10, "4a": 10, "2i_o": 10, "woul": 10, "gaussian_int": [], "di_o": 10, "i_2": 10, "my": [], "sidebar": [], "temp_room": 10, "kmean": 10, "0379": 10, "monatom": 10, "o_2": 10, "rod": 10, "addtion": 10, "quadrat": 10, "propot": 10, "i_x": 10, "omega_x": 10, "k_y": 10, "i_i": 10, "straigthforward": 10, "617333262": 10, "380649": 10, "r_o": 10, "equlitbrium": 10, "nkt": 10, "c_": 10, "nk": 10, "lowercas": 10, "atm": [], "auto": [], "baz": [], "bim": [], "molar_heat_cap": [], "hcl": 10, "cl_2": 10, "co_2": 10, "cs_2": 10, "n_2o": 10, "so_2": 10, "polyatom": 10, "tranlat": 10, "harmoic": 10, "thre": 10, "3r": 10, "ne": 10, "rt": 10, "scalar": 10, "assymetri": 10, "probabilti": 10, "2ve": 10, "vf": 10, "8a": 10, "sigma_v": 10, "8kt": 10, "computr": 10, "radon": 10, "rn": 10, "isotop": 10, "222": 10, "01568": 10, "660539": 10, "5081": 10, "1750": 10, "166": 10, "mean_molecular_spe": 10, "mean_speed_const": 10, "m_h2": 10, "m_rn": 10, "mass_ratio": 10, "v_h2": 10, "v_h2_constant": 10, "v_rn": 10, "110": 10, "pm1": 10, "01v_": 10, "99v_": 10, "indefinit": 10, "02v_": 10, "window": 10, "wider": 10, "017": 10, "maxwell_spe": 10, "v_mp": 10, "0001": 10, "prob": 10, "set_titl": 10, "zoom": 10, "0166": 10, "proabil": 10, "exception": 10, "dilut": 10, "rare": 10, "noninteract": 10, "pack": 10, "pace": 10, "velcoc": 10, "mb": 10, "overlap": 10, "stastic": 10, "xx": 10, "princpl": 10, "spin": 10, "fd": 10, "b_i": 10, "b_ie": 10, "4he": 10, "boltmann": 10, "e1": 10, "404": 10, "175": 10, "118": 10, "relative_st": 10, "n1": 10, "n2": 10, "g2": 10, "g1": 10, "e2": 10, "21e": 10, "07e": 10}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"birth": 0, "modern": [0, 4, 17, 18], "physic": [0, 2, 3, 4, 5, 7, 9, 10, 17, 18], "classic": [0, 5, 6, 8, 10], "1890": 0, "mechan": [0, 7, 8], "electromagnet": [0, 4], "thermodynam": 0, "kinet": 0, "theori": [0, 4, 5, 10], "gase": [0, 10], "ideal": 0, "ga": 0, "law": 0, "statist": [0, 10], "maxwel": [0, 10], "boltzmann": 0, "distribut": [0, 10], "wave": [0, 7, 8, 9, 10], "particl": [0, 3, 4, 7, 8, 10], "energi": [0, 4, 7, 9], "transport": 0, "conserv": 0, "fundament": 0, "forc": 0, "unif": 0, "atom": [0, 4, 6, 9], "matter": 0, "develop": 0, "chemist": 0, "opposit": 0, "evid": 0, "unresolv": 0, "question": 0, "medium": 0, "electrodynam": 0, "blackbodi": [0, 5, 10], "radiat": [0, 5, 10], "earli": 0, "discoveri": [0, 5], "1900": 0, "homework": [0, 4, 5, 6, 7, 8, 9, 13], "problem": [0, 4, 5, 6, 7, 8, 9, 13], "1": [0, 4, 5, 6, 7, 8, 9, 10, 13], "2": [0, 4, 5, 6, 7, 8, 9, 13], "3": [0, 4, 5, 6, 7, 8, 9], "5": [0, 4, 5, 6, 7, 8, 9], "6": [0, 4, 5, 6, 7, 8, 9], "semiconductor": 1, "nuclear": 2, "special": 4, "rel": 4, "need": 4, "ether": 4, "michelson": 4, "morlei": 4, "experi": [4, 7], "s": [4, 5, 7], "interferomet": 4, "collabor": 4, "einstein": [4, 5, 10], "postul": 4, "lorentz": 4, "transform": 4, "time": [4, 7, 8], "dilat": 4, "length": 4, "contract": 4, "addit": 4, "veloc": [4, 10], "experiment": [4, 5], "verif": 4, "muon": 4, "decai": [4, 8], "clock": 4, "measur": 4, "actual": 4, "relativist": 4, "predict": 4, "observ": [4, 7], "differ": 4, "hefel": 4, "keat": 4, "1972a": 4, "1972b": 4, "twin": 4, "paradox": 4, "spacetim": 4, "doppler": 4, "effect": [4, 5, 9], "momentum": [4, 9], "total": [4, 9], "rest": 4, "equival": 4, "mass": [4, 6], "relationship": 4, "massless": 4, "comput": 4, "bind": 4, "4": [4, 5, 6, 7, 8, 9], "7": [4, 5, 6, 7, 8], "8": [4, 5, 6, 7], "9": [4, 5, 6], "10": [4, 5], "11": [4, 5], "quantum": [5, 7, 8, 9, 10], "x": [5, 6, 7], "rai": [5, 6, 7], "electron": [5, 6, 7, 9], "determin": 5, "charg": 5, "line": [5, 14, 15], "spectra": [5, 6, 9], "quantiz": [5, 7], "photoelectr": 5, "work": 5, "function": [5, 7, 8, 9, 10, 15], "from": 5, "handbook": 5, "chemistri": 5, "result": 5, "interpret": [5, 7], "product": 5, "compton": 5, "scatter": [5, 6, 7], "pair": 5, "annihil": 5, "structur": [6, 9, 15], "The": [6, 7, 8, 9], "model": 6, "thomson": 6, "rutherford": 6, "bohr": [6, 7], "hydrogen": [6, 9], "correspond": 6, "principl": [6, 7], "success": 6, "failur": 6, "reduc": 6, "correct": 6, "other": 6, "limit": 6, "characterist": 6, "number": [6, 9], "excit": 6, "part": [7, 8], "i": 7, "de": 7, "brogli": 7, "condit": 7, "motion": 7, "doubl": 7, "slit": 7, "light": 7, "anoth": 7, "gedanken": 7, "thought": 7, "uncertainti": 7, "probabl": [7, 8, 9, 10], "copenhagen": 7, "box": 7, "ii": 8, "schr\u00f6dinger": [8, 9], "equat": [8, 9], "normal": [8, 9], "properti": 8, "valid": 8, "independ": 8, "comparison": 8, "expect": [8, 13], "valu": 8, "infinit": 8, "squar": 8, "well": 8, "potenti": 8, "us": [8, 14], "integr": [8, 10], "finit": 8, "three": 8, "dimension": 8, "simpl": [8, 15], "harmon": [8, 9], "oscil": 8, "barrier": 8, "tunnel": 8, "e": 8, "v_o": 8, "alpha": 8, "applic": 9, "solut": 9, "separ": 9, "variabl": [9, 15], "radial": 9, "angular": 9, "azimuth": 9, "spheric": 9, "y": 9, "theta": 9, "phi": 9, "n": 9, "princip": 9, "orbit": 9, "ell": 9, "magnet": 9, "m_": 9, "zeeman": 9, "state": 9, "due": 9, "field": 9, "vec": 9, "b": [9, 10], "intrins": 9, "spin": 9, "level": 9, "select": [9, 10], "rule": 9, "histor": 10, "overview": 10, "equipartit": 10, "theorem": 10, "speed": 10, "fermi": 10, "dirac": 10, "introduct": [10, 14, 15], "electr": 10, "conduct": 10, "bose": 10, "liquid": 10, "helium": 10, "symmetri": 10, "boson": 10, "condens": 10, "molecul": 11, "laser": 11, "assign": 13, "style": 13, "chapter": 13, "markdown": 14, "what": [14, 15], "why": 14, "basic": 14, "syntax": 14, "section": 14, "head": 14, "best": 14, "practic": 14, "paragraph": 14, "break": 14, "font": 14, "typeset": 14, "blockquot": 14, "list": 14, "link": 14, "math": 14, "environ": 14, "latex": 14, "python": 15, "comment": 15, "input": 15, "output": 15, "type": 15, "sequenc": 15, "trick": 15, "iter": 15, "mathemat": 15, "oper": 15, "control": 15, "defin": 15, "pass": 15, "program": 15, "who": 16, "ar": 16, "note": 16, "interact": 16, "book": 16, "clone": 16, "how": 16, "cite": 16, "reus": 16, "thi": 16, "materi": 16, "phys2700": [17, 18], "singl": 9, "mani": 9, "ls": 9, "coupl": 9, "jj": 9, "molar": 10, "heat": 10, "capac": 10, "15": 10, "circ": 10, "c": 10, "rm": 10, "atm": 10, "tabl": 10, "two": 10, "distinguish": [], "A": 10, "indistinguish": 10}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 56}}) \ No newline at end of file