Encyclopedia Mathematics Mathematics Complex Analysis From Rs Complex Theorem Rs
ARTICLE 3 claims 2 theorems 1 model
Mathematics Complex Analysis From Rs Complex Theorem Rs
Complex analysis rests on five central theorems, and a machine-checked library records that count as a structural fact.
A catalog of five theorems
Complex analysis is the study of functions of a complex variable, where the input and output are two-dimensional numbers with a real part and an imaginary part. Its power comes from a handful of deep results that hold for differentiable complex functions. The Cauchy integral theorem and the residue theorem describe how integrals around closed loops behave. The Riemann mapping theorem says which regions can be transformed into a disk. Liouville's theorem and the maximum modulus principle constrain how large such functions can grow. Together these five are often called the pillars of the subject, and they appear in every serious course on it.
The history runs from Augustin-Louis Cauchy's work in the 1820s, through Bernhard Riemann's mapping theorem in 1851, to Joseph Liouville's boundedness result and the maximum modulus principle refined by later analysts. Each theorem has its own proof and its own conditions, but they share a common setting: the complex plane as a two-dimensional space. That shared dimension is not accidental. A differentiable complex function is far more rigid than a differentiable function of two real variables, and this rigidity is what makes the theorems so strong.
In Recognition Science, the framework models the complex plane as a recognition phase space, a space where each point records an amplitude and a phase, and the cost of recognizing an amplitude follows the framework's forced cost function. Its machine-checked library of formal theorems defines an inductive type named ComplexTheoremRS with exactly five constructors: cauchy, residue, riemannMapping, liouville, and maximumModulus. A proved theorem in the library, complexTheoremCount, derives that the number of constructors is five. A separate definition sets the complex dimension to 2, and a proved theorem, complexDim_eq_Dm1, derives that this equals 3 minus 1, the spatial dimension of the framework minus one.
The declaration ComplexTheoremRS itself is only a catalog. It names the five theorems as an inductive type, and the library proves the count is five. It does not prove any of the five theorems. The Cauchy integral theorem, the residue theorem, the Riemann mapping theorem, Liouville's theorem, and the maximum modulus principle are not derived inside the library; they are listed as labels. The connection between the count of five and the dimension of complex analysis is a structural observation recorded by the framework, not a proof of the classical theorems themselves.
What the declaration does establish is a correspondence. The framework's forcing chain derives three spatial dimensions, and the complex plane is two-dimensional, one less than three. The library records that the five canonical theorems match the framework's configurational dimension of five. This is a bookkeeping fact about how the framework labels its objects, not a new proof of classical analysis. A reader who wants the actual proofs of Cauchy's theorem or the Riemann mapping theorem must still open a standard textbook.
THEOREM complexTheoremCount · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
theorem complexTheoremCount : Fintype.card ComplexTheoremRS = 5 := by decide
THEOREM complexDim_eq_Dm1 · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
theorem complexDim_eq_Dm1 : complexDim = 3 - 1 := by decide
MODEL ComplexTheoremRS · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
inductive ComplexTheoremRS where
| cauchy | residue | riemannMapping | liouville | maximumModulus
deriving DecidableEq, Repr, BEq, Fintype
What this page does not claim
The Cauchy integral theorem, residue theorem, Riemann mapping theorem, Liouville's theorem, or maximum modulus principle are not proved in the library. The complex plane being two-dimensional is not derived from the framework; it is a definition. The declaration does not establish that complex analysis itself is derived from Recognition Science.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What does the framework's cost function have to do with the amplitude of a complex number?
- Does the framework derive the Cauchy integral theorem from its own axioms, or only label it?
- Why does the framework associate the number five with a configurational dimension?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM complexTheoremCount · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
theorem complexTheoremCount : Fintype.card ComplexTheoremRS = 5 := by decideA proved theorem in the library, complexTheoremCount, derives that the number of constructors is five. complexTheoremCount · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.leanTHEOREM complexDim_eq_Dm1 · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
theorem complexDim_eq_Dm1 : complexDim = 3 - 1 := by decideA proved theorem, complexDim_eq_Dm1, derives that this equals 3 minus 1, the spatial dimension of the framework minus one. complexDim_eq_Dm1 · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.leanMODEL ComplexTheoremRS · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean
inductive ComplexTheoremRS where | cauchy | residue | riemannMapping | liouville | maximumModulus deriving DecidableEq, Repr, BEq, FintypeThe declaration ComplexTheoremRS itself is only a catalog. ComplexTheoremRS · IndisputableMonolith/Mathematics/ComplexAnalysisFromRS.lean