The Electromagnetic Potential #
i. Overview #
The electromagnetic potential A^μ
is the fundamental objects in
electromagnetism. Mathematically it is related to a connection
on a U(1)
-bundle.
We define the electromagnetic potential as a function from spacetime to contravariant Lorentz vectors. from this we can define the field strength tensor, the kinetic energy, and the electric and magnetic fields.
ii. Key results #
ElectromagneticPotential
: is the type of electromagnetic potentials.ElectromagneticPotential.deriv
: the derivative tensor∂_μ A^ν
.ElectromagneticPotential.toFieldStrength
: the field strength tensorF_μ^ν
.ElectromagneticPotential.scalarPotential
: the scalar potentialφ
.ElectromagneticPotential.vectorPotential
: the vector potentialA_i
.ElectromagneticPotential.electricField
: the electric fieldE
.ElectromagneticPotential.magneticField
: the magnetic fieldB
.
iii. Table of contents #
- A. The electromagnetic potential
- A.1. The action on the space-time derivatives
- A.2. Differentiability
- A.3. Varitational adjoint derivative of component
- A.4. Variational adjoint derivative of derivatives of the potential
- B. The derivative tensor of the electricomagnetic potential
- B.1. Equivariance of the derivative tensor
- B.2. The elements of the derivative tensor in terms of the basis
- C. The field strength tensor
- C.1. Basic equalitites
- C.2. Elements of the field strength tensor in terms of basis
- C.3. The field strength matrix
- C.3.1. Differentiability of the field strength matrix
- C.4. The antisymmetry of the field strength tensor
- C.5. Equivariance of the field strength tensor
- E. The electric and magnetic fields
- E.1. The scalar potential
- E.2. The vector potential
- E.3. The electric field
- E.3.1. Relation between the electric field and the field strength matrix
- E.3.2. Differentiability of the electric field
- E.4. The magnetic field
- E.4.1. Relation between the magnetic field and the field strength matrix
- E.5. Field strength matrix in terms of the electric and magnetic fields
iv. References #
A. The electromagnetic potential #
We define the electromagnetic potential as a function from spacetime to contravariant Lorentz vectors, and prove some simple results about it.
The electricomagnetic potential is a tensor A^μ
.
Instances For
A.1. The action on the space-time derivatives #
Given a ElectromagneticPotential A^μ
, we can consider its derivative ∂_μ A^ν
.
Under a Lorentz transformation Λ
, this transforms as
∂_ μ (fun x => Λ • A (Λ⁻¹ • x))
, we write an expression for this in terms of the tenosr.
∂_ ρ A (Λ⁻¹ • x) κ
.
A.2. Differentiability #
We show that the components of field strength tensor are differentiable if the potential is.
A.3. Varitational adjoint derivative of component #
We find the variational adjoint derivative of the components of the potential. This will be used to find e.g. the variational derivative of the kinetic term, and derive the equations of motion.
A local instance of the inner product structure on SpaceTime
.
Equations
Instances For
A.4. Variational adjoint derivative of derivatives of the potential #
We find the variational adjoint derivative of the derivatives of the components of the potential. This will again be used to find the variational derivative of the kinetic term, and derive the equations of motion (Maxwell's equations).
B. The derivative tensor of the electricomagnetic potential #
We define the derivative as a tensor in Lorentz.CoVector ⊗[ℝ] Lorentz.Vector
for the
electromagnetic potential A^μ
. We then prove that this tensor transforms correctly
under Lorentz transformations.
The derivative of the electric potential, ∂_μ A^ν
.
Equations
- A.deriv x = ∑ μ : Fin 1 ⊕ Fin 3, ∑ ν : Fin 1 ⊕ Fin 3, SpaceTime.deriv μ A x ν • Lorentz.CoVector.basis μ ⊗ₜ[ℝ] Lorentz.Vector.basis ν
Instances For
B.1. Equivariance of the derivative tensor #
We show that the derivative tensor is equivariant under the action of the Lorentz group.
That is, ∂_μ (fun x => Λ • A (Λ⁻¹ • x)) = Λ • (∂_μ A (Λ⁻¹ • x))
, or in words:
applying the Lorentz transformation to the potential and then taking the derivative is the same
as taking the derivative and then applying the Lorentz transformation to the resulting tensor.
B.2. The elements of the derivative tensor in terms of the basis #
We show that in the standard basis, the elements of the derivative tensor
are just equal to ∂_ μ A x ν
.
C. The field strength tensor #
We define the field strength tensor F_μ^ν
in terms of the derivative of the
electromagnetic potential A^μ
. We then prove that this tensor transforms correctly
under Lorentz transformations.
The field strength from an electromagnetic potential, as a tensor F_μ^ν
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
C.1. Basic equalitites #
C.2. Elements of the field strength tensor in terms of basis #
C.3. The field strength matrix #
We define the field strength matrix to be the matrix representation of the field strength tensor in the standard basis.
This is currently not used as much as it could be.
The matrix corresponding to the field strength in the standard basis.
Equations
Instances For
C.3.1. Differentiability of the field strength matrix #
C.4. The antisymmetry of the field strength tensor #
We show that the field strength tensor is antisymmetric.
C.5. Equivariance of the field strength tensor #
We show that the field strength tensor is equivariant under the action of the Lorentz group. That is transforming the potential and then taking the field strength is the same as taking the field strength and then transforming the resulting tensor.
E. The electric and magnetic fields #
We now define the scalar and vector potentials, and the electric and magnetic fields in terms of the electromagnetic potential. This breaks the manifest Lorentz covariance.
The scalar potential from the electromagnetic potential.
Equations
- A.scalarPotential = SpaceTime.timeSlice fun (x : SpaceTime) => A x (Sum.inl 0)
Instances For
E.2. The vector potential #
The vector potential from the electromagnetic potential.
Equations
- A.vectorPotential = SpaceTime.timeSlice fun (x : SpaceTime) (i : Fin 3) => A x (Sum.inr i)
Instances For
E.3. The electric field #
The electric field from the electromagnetic potential.
Equations
- A.electricField t x = -Space.grad (A.scalarPotential t) x - Time.deriv (fun (t : Time) => A.vectorPotential t x) t
Instances For
E.3.1. Relation between the electric field and the field strength matrix #
E.3.2. Differentiability of the electric field #
E.4. The magnetic field #
The magnetic field from the electromagnetic potential.
Equations
- A.magneticField t x = Space.curl (A.vectorPotential t) x