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

complexDim_eq_Dm1

proved
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.ComplexAnalysisFromRS
domain
Mathematics
line
30 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Mathematics.ComplexAnalysisFromRS on GitHub at line 30.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  27
  28/-- Complex plane dimension = D-1 = 2. -/
  29def complexDim : ℕ := 2
  30theorem complexDim_eq_Dm1 : complexDim = 3 - 1 := by decide
  31
  32structure ComplexAnalysisCert where
  33  five_theorems : Fintype.card ComplexTheoremRS = 5
  34  complex_dim : complexDim = 3 - 1
  35
  36def complexAnalysisCert : ComplexAnalysisCert where
  37  five_theorems := complexTheoremCount
  38  complex_dim := complexDim_eq_Dm1
  39
  40end IndisputableMonolith.Mathematics.ComplexAnalysisFromRS