Skip to content

Commit e45e748

Browse files
committed
cleanup etc
1 parent e876bab commit e45e748

File tree

6 files changed

+124
-88
lines changed

6 files changed

+124
-88
lines changed

content/complex-numbers.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
+++
2+
bibfile = "mechphys.json"
3+
+++
4+
5+
{id="figure_complex" style="height:20em"}
6+
![Complex numbers are just a way of representing two real values with one number, where these two values are aligned along two separate orthogonal dimensions. The imaginary number $i$, where $i^2 = -1$, is what keeps these two values orthogonal --- the first value $a$ is along the real axis, and the second value $b$ is along the imaginary axis. The complex conjugate, $c^*$, is simply subtracting the imaginary part instead of adding it (i.e., it represents a reflection along the imaginary dimension). Multiplying $c c^*$ gives the squared magnitude of the vector, which is a single real-valued scalar number. It is the (squared) length of the hypotenuse of the vector.](media/fig_complex_numbers.png)
7+
8+
The symbol $\phi$ (another variant of the Greek symbol "phi", like $\varphi$) is used to represent a complex-valued state variable:
9+
10+
- $\phi = a + i b $
11+
- $= \varphi_a + i \varphi_b $
12+
13+
So, $\phi$ is composed of two separate real-valued numbers, designated $a$ and $b$ (or $\varphi_a$ and $\varphi_b$, to indicate that they are scalar state variables). A complex number is really just a way of representing two separate real valued numbers, aligned along orthogonal dimensions, in an efficient and compact manner ([[#figure_complex]]). It is essential to appreciate that, despite the presence of the imaginary number $i$ (where $i^2 = -1$ or $i = \sqrt{-1}$), _all you ever really have is two real-valued numbers._ There is nothing "imaginary" or mysterious or spooky about the second number in a complex number: all the $i$ does is keep these two values separate from each other.
14+
15+
In the end, we will deconstruct all of our complex numbers into their real-valued components, and write purely real-valued expressions that determine their update rules. These expressions will be more complicated than the ones using complex numbers, but they are required for actually implementing the equations on the computer, and they also provide a more explicit and obvious indication of exactly what drives each value.
16+
17+
Here's a few interesting facts about complex numbers:
18+
19+
To do algebra on them, you just have to remember to _keep the real-values sorted separately from the imaginary ones,_ but otherwise treat them just like a pair of numbers:
20+
21+
- $y = a + ib $
22+
- $z = c + id $
23+
- $y + z = (a + c) + i(b + d) $
24+
- $y z = a c + i a d + i b c - b d $
25+
- $= (ac - bd) + i (ad + bc) $
26+
27+
Notice that this multiplication rule is the same as $(a + b)(c + d) = ac + ad + bc + bd$, where you just multiply everything through, except that you end up with these $i$ terms crossing over, and when you multiply $ib$ and $id$, you end up with $i^2bd$, at which point the $i^2$ disappears into a $-1$ (i.e., it crosses over from the imaginary world into the real one).
28+
29+
As you should expect from [[#figure_complex]], adding two complex numbers is like adding two vectors, and multiplication is just like multiplying vectors. Complex numbers really are just a compact way of writing vectors!
30+
31+
Multiplication by $i$: If you multiply a complex number by $i$, then you basically switch the real and imaginary parts: the real moves to the imaginary position, and the imaginary becomes real:
32+
33+
- $i(a + ib) = ia - b = -b + ia $
34+
35+
Geometrically, this is equivalent to rotating a vector by 90 degrees! If you do this four times, you'll end up back where you started (as you would expect by doing a 360).
36+
37+
The **complex conjugate** of a complex number is just that number with imaginary dimension inverted:
38+
39+
- $y^\* = a - i b $
40+
41+
The primary use of such a thing is to find the magnitude of a complex number (i.e., the length of the vector that it represents), as:
42+
43+
- $y y^\* = (a + i b)(a - i b) $
44+
- $= a^2 - iab + iab + b^2 $
45+
- $= a^2 + b^2 $
46+
47+
This should be recognizable as simply the pythagorean theorem for the squared length of the hypotenuse of a right triangle ($a^2 + b^2 = c^2$). Again, complex numbers have no mystery: they just represent a two-valued vector.
48+

content/dirac.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ bibfile = "mechphys.json"
44

55
<!--- TODO: intro, also [[@MallickChandrashekar16]] -->
66

7-
# Complex Klein-Gordon Waves: Charge!
8-
97
We have mentioned that a major problem with the scalar KG equation developed so far is that it doesn't represent any kind of conserved value: you cannot compute some constant, unchanging value from the $\varphi$ state variables under this equation. Why is this a problem? If you want to develop a probabilistic interpretation of the wave, as in Schrodinger's equation, then you need this. But the conserved value that emerges naturally from the KG equation comes with two different signs, positive and negative, whereas Schrodinger's equation always produces a positive value. This is one of the major reasons why the KG equation is not widely discussed in quantum physics: it doesn't quite fit with the standard probabilistic framework.
108

119
Instead, it seems to make much more sense to interpret the KG waves as **waves of charge**, because charge is also strictly conserved, and it comes in both positive and negative varieties. Indeed, the authors that do write extensively about the KG equation adopt this interpretation (Greiner, 2000; Gingrich, 2004; Mandl and Shaw, 1984). Furthermore, we will see that this charge interpretation fits naturally with the coupling of this KG equation to the electromagnetic field, where the conserved charge value acts just like the electric charge in driving the field. Interestingly, this idea was pursued initially by Schrodinger in 1926, and has been pursued more recently in neoclassical self-coupled field theory (Jaynes & Cummings, 1963; Crisp & Jaynes, 1969; Barut & Van Huele, 1985; Barut & Dowling, 1990; Crisp, 1996; Finster, Smoller & Yau, 1999c; Radford, 2003; Masiello, Deumens & Ohrn, 2005). We discuss this approach, which is essentially an analytic version of our computational model, in more detail later.

content/hamiltonian.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
# Energy and Momentum Operators and the Hamiltonian
1+
+++
2+
bibfile = "mechphys.json"
3+
+++
24

3-
Using what we have just reviewed about special relativity, plus the notion of **conservation of energy** --- i.e., that the **total energy** of the system is strictly conserved over time, we can actually derive the KG from first principles. In keeping with physicist's penchant for assigning people's names to concepts that would otherwise be very easy to understand if just spelled out, the total energy of the system is also called the *Hamiltonian*' ($H$), and standard Newtonian physics can all be derived from the appropriate Hamiltonian (which is what W. R. Hamilton did). This motif of using the total energy of the system to derive basic physical laws seems to work quite well in many cases, and is thus the primary way that such laws are derived for different definitions of the total energy. Essentially, the physical laws are latent in any given definition of total energy, and really just amount again to specifying the dynamics by which energy gets moved around in different ways, without ever gaining or losing any total energy.
5+
Using [[special relativity]], plus the notion of **conservation of energy** --- i.e., that the **total energy** of the system is strictly conserved over time, we can derive the [[Klein-Gordon]] equation from first principles. In keeping with physicist's penchant for assigning people's names to concepts that would otherwise be very easy to understand if just spelled out, the total energy of the system is also called the **Hamiltonian** ($H$), and standard Newtonian physics can all be derived from the appropriate Hamiltonian (which is what W. R. Hamilton did).
46

5-
After we derive the KG equations from a relativistic total energy Hamiltonian here, we will then derive the Schrodinger equation from a different Hamiltonian at the end of this chapter, and then we'll extend the Hamiltonian to include spin and coupling to the EM field in the next chapter where we derive the [Dirac equation](ch05_dirac.md) (which is just a more complicated version of the KG equation). You will see that the total energy equation and the corresponding wave equation are very directly related mathematically, and thus this overall approach of using the total energy to derive the wave equation is a very powerful tool that is important to understand if you want to really understand what these wave equations are doing.
7+
This motif of using the total energy of the system to derive basic physical laws seems to work quite well in many cases, and is thus the primary way that such laws are derived for different definitions of the total energy. Essentially, the physical laws are latent in any given definition of total energy, and really just amount again to specifying the dynamics by which energy gets moved around in different ways, without ever gaining or losing any total energy.
68

7-
You should be familiar with our computation of the total energy associated with a simple wave, which we calculated in the [Waves Chapter](ch02_waves.md). There we saw that for each cell element in our wave matrix, the total energy was the sum of the **kinetic** and **potential** energy, where kinetic energy is a function of how fast the state value is moving, and potential energy is a function of how much stress or tension there was between the state and its neighbors (i.e., the curvature of the space).
9+
After we derive the KG equations from a relativistic total energy Hamiltonian here, we will then derive the Schrodinger equation from a different Hamiltonian at the end of this chapter, and then we'll extend the Hamiltonian to include spin and coupling to the EM field in the next chapter where we derive the [[Dirac]] equation (which is just a more complicated version of the KG equation). You will see that the total energy equation and the corresponding wave equation are very directly related mathematically, and thus this overall approach of using the total energy to derive the wave equation is a very powerful tool that is important to understand if you want to really understand what these wave equations are doing.
10+
11+
You should be familiar with our computation of the total energy associated with a simple wave, which we calculated in [[waves]]. There we saw that for each cell element in our wave matrix, the total energy was the sum of the **kinetic** and **potential** energy, where kinetic energy is a function of how fast the state value is moving, and potential energy is a function of how much stress or tension there was between the state and its neighbors (i.e., the curvature of the space).
812

913
Now, we're going to try to formulate the total energy associated with *the "particle" represented by the entire wave function*, instead of thinking in terms of each individual cell within the wave state. We'll see that we can compute the resulting total particle energy using local cell-level calculations, but the motivations and logic are different. There are still kinetic and potential contributions to this overall particle energy, but it is the overall velocity (actually momentum, which is just velocity times mass) of the particle, not the individual cell state, that we are concerned with in computing the kinetic energy.
1014

11-
As discussed in the [Special Relativity](#special_relativity) section, the relativistic total energy of a particle moving with momentum $\vec{p}$ and having a rest mass $m_0$ is given by the following equation:
15+
As discussed in [[special relativity]], the relativistic total energy of a particle moving with momentum $\vec{p}$ and having a rest mass $m_0$ is given by the following equation:
1216

1317
- **total relativistic energy:** $E^2 = \vec{p}^2 c^2 + (m_0 c^2)^2 $
1418
- $E = \sqrt{\vec{p}^2 c^2 + (m_0 c^2)^2} $
@@ -19,7 +23,7 @@ To do anything with this total energy equation, we need to be able to compute th
1923

2024
- $\hat{p} = -i \hbar \vec{\nabla} $
2125

22-
We highlight this because we'll keep using it again and again as we work our way up to the Dirac equation. Do not be alarmed by the presence of the $-i$ *imaginary number* at the start of this equation --- we'll get rid of it soon enough. See [Complex_Numbers](#complex_numbers) for more information if you want to brush up on your knowledge of these seemingly strange numbers at this point --- you'll need to really understand them in detail to understand the Schrodinger equation later in this chapter. They really are very simple once you get past all the imaginary business and recognize their actual practical application.
26+
We highlight this because we'll keep using it again and again as we work our way up to the Dirac equation. Do not be alarmed by the presence of the $-i$ *imaginary number* at the start of this equation --- we'll get rid of it soon enough. See [[complex numbers]] for more information if you want to brush up on your knowledge of these seemingly strange numbers at this point --- you'll need to really understand them in detail to understand the Schrodinger equation later in this chapter. They really are very simple once you get past all the imaginary business and recognize their actual practical application.
2327

2428
The total energy operator for the wave state is computed in terms of the overall rate of change across all the wave cells, consistent with the notion that energy is a function of the velocity (kinetic energy) of the cell states:
2529

0 commit comments

Comments
 (0)