PhysLean Documentation

PhysLean.Electromagnetism.Potential

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 #

iii. Table of contents #

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.

@[reducible, inline]

The electricomagnetic potential is a tensor A^μ.

Equations
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) κ.

    theorem Electromagnetism.ElectromagneticPotential.spaceTime_deriv_action_eq_sum {x : SpaceTime} {μ ν : Fin 1 Fin 3} (Λ : (LorentzGroup 3)) (A : ElectromagneticPotential) (hA : Differentiable A) :
    SpaceTime.deriv μ (fun (x : SpaceTime) => Λ A (Λ⁻¹ x)) x ν = κ : Fin 1 Fin 3, ρ : Fin 1 Fin 3, Λ ν κ * Λ⁻¹ ρ μ * SpaceTime.deriv ρ 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.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
    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.

        @[reducible, inline]

        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.

          theorem Electromagnetism.ElectromagneticPotential.fieldStrengthMatrix_equivariant (A : ElectromagneticPotential) (Λ : (LorentzGroup 3)) (hf : Differentiable A) (x : SpaceTime) (μ ν : Fin 1 Fin 3) :
          (fieldStrengthMatrix (fun (x : SpaceTime) => Λ A (Λ⁻¹ x)) x) (μ, ν) = κ : Fin 1 Fin 3, ρ : Fin 1 Fin 3, Λ μ κ * Λ ν ρ * (A.fieldStrengthMatrix (Λ⁻¹ x)) (κ, ρ)

          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
          Instances For

            E.2. The vector potential #

            The vector potential from the electromagnetic potential.

            Equations
            Instances For

              E.3. The electric field #

              The electric field from the electromagnetic potential.

              Equations
              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
                Instances For

                  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 #

                  theorem Electromagnetism.ElectromagneticPotential.fieldStrengthMatrix_eq_electric_magnetic (A : ElectromagneticPotential) (t : Time) (x : Space) (hA : Differentiable A) (μ ν : Fin 1 Fin 3) :
                  (A.fieldStrengthMatrix (SpaceTime.toTimeAndSpace.symm (t, x))) (μ, ν) = match μ, ν with | Sum.inl 0, Sum.inl 0 => 0 | Sum.inl 0, Sum.inr i => -A.electricField t x i | Sum.inr i, Sum.inl 0 => A.electricField t x i | Sum.inr i, Sum.inr j => match i, j with | 0, 0 => 0 | 0, 1 => -A.magneticField t x 2 | 0, 2 => A.magneticField t x 1 | 1, 0 => A.magneticField t x 2 | 1, 1 => 0 | 1, 2 => -A.magneticField t x 0 | 2, 0 => -A.magneticField t x 1 | 2, 1 => A.magneticField t x 0 | 2, 2 => 0
                  theorem Electromagnetism.ElectromagneticPotential.fieldStrengthMatrix_eq_electric_magnetic_of_spaceTime (A : ElectromagneticPotential) (x : SpaceTime) (hA : Differentiable A) (μ ν : Fin 1 Fin 3) :
                  have tx := SpaceTime.toTimeAndSpace x; (A.fieldStrengthMatrix x) (μ, ν) = match μ, ν with | Sum.inl 0, Sum.inl 0 => 0 | Sum.inl 0, Sum.inr i => -A.electricField tx.1 tx.2 i | Sum.inr i, Sum.inl 0 => A.electricField tx.1 tx.2 i | Sum.inr i, Sum.inr j => match i, j with | 0, 0 => 0 | 0, 1 => -A.magneticField tx.1 tx.2 2 | 0, 2 => A.magneticField tx.1 tx.2 1 | 1, 0 => A.magneticField tx.1 tx.2 2 | 1, 1 => 0 | 1, 2 => -A.magneticField tx.1 tx.2 0 | 2, 0 => -A.magneticField tx.1 tx.2 1 | 2, 1 => A.magneticField tx.1 tx.2 0 | 2, 2 => 0