PhysLean Documentation

PhysLean.Electromagnetism.Dynamics.Basic

Free space #

i. Overview #

In this module we define a type FreeSpace which encapsulates the electric permittivity and magnetic permeability of free space, that is the physical constants which make it up.

We prove basic properties from this definition, and define the speed of light in free space in terms of these constants.

ii. Key results #

iii. Table of contents #

iv. References #

A. The definition of the free space type #

Free space consists of the specification of the electric permittivity and the magnetic permeability.

  • ε₀ :

    The permittivity.

  • μ₀ :

    The permeability.

  • ε₀_pos : 0 < self.ε₀
  • μ₀_pos : 0 < self.μ₀
Instances For

    B. Positivity properties #

    C. The speed of light #

    The speed of light in free space.

    Equations
    Instances For
      theorem Electromagnetism.FreeSpace.c_val (𝓕 : FreeSpace) :
      𝓕.c.val = 1 / (𝓕.ε₀ * 𝓕.μ₀)
      theorem Electromagnetism.FreeSpace.c_sq (𝓕 : FreeSpace) :
      𝓕.c.val ^ 2 = 1 / (𝓕.ε₀ * 𝓕.μ₀)
      @[simp]