pith. machine review for the scientific record. sign in
def

dftModes

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.AcousticsFromRS
domain
Physics
line
31 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Physics.AcousticsFromRS on GitHub at line 31.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

used by

formal source

  28theorem acousticPhenomenonCount : Fintype.card AcousticPhenomenon = 5 := by decide
  29
  30/-- DFT-8 modes = 2^3. -/
  31def dftModes : ℕ := 2 ^ 3
  32theorem dftModes_8 : dftModes = 8 := by decide
  33
  34structure AcousticsCert where
  35  five_phenomena : Fintype.card AcousticPhenomenon = 5
  36  eight_modes : dftModes = 8
  37
  38def acousticsCert : AcousticsCert where
  39  five_phenomena := acousticPhenomenonCount
  40  eight_modes := dftModes_8
  41
  42end IndisputableMonolith.Physics.AcousticsFromRS