Encyclopedia Foundation Foundation Euler Number E Rs
ARTICLE 4 claims 3 theorems 1 model
Foundation Euler Number E Rs
Euler's number e is the base of natural logarithms, roughly 2.71828, and it appears throughout mathematics and physics.
The Euler constant and its role
Euler's number e, approximately 2.71828, is the unique real number for which the exponential function e^x has a slope of 1 at x = 0. It is the base of natural logarithms, and it arises naturally in problems of continuous growth, compound interest, and the normal distribution. The constant was first studied by Jacob Bernoulli in 1683 while examining compound interest, and the notation e was introduced by Leonhard Euler in the 1720s. Its decimal expansion begins 2.718281828459045, and it is irrational, meaning it cannot be expressed as a ratio of two integers.
The number also appears in the differential equation dy/dx = y, whose solution is y = e^x, and in the formula for the normal distribution, where e appears in the exponent. In physics, e appears in the decay law N(t) = N₀e^(−λt), which describes radioactive decay and many other exponential processes. The constant is fundamental because it is the unique base for which the exponential function is its own derivative, a property that makes it the natural choice for describing continuous change.
In Recognition Science, the framework models a ledger, a discrete record of recognition events, and a cost, a forced penalty for each recognition. The framework's library, a machine-checked collection of formal theorems, proves three general facts about the cost function when it is evaluated at the ratio m/e. The first is that the cost is zero when m equals e, meaning there is no penalty when the two quantities agree. The second is that the cost is never negative for positive inputs, so the penalty never rewards a mismatch. The third is that the quantity phi − 3/2, called the canonical threshold, is positive, where phi is the golden ratio.
These three facts are proved for any positive real numbers m and e, because the cost function is defined as J(m/e) without any special property of e itself. The framework does not derive e from its own principles, nor does it show that e is special within the framework. Its only claim is that the cost function behaves sensibly when its input is a ratio, and that a particular threshold involving the golden ratio is positive. The framework is a template, shared with 2383 sibling modules, that records what would need to be true for e to be a subject-specific constant.
What the framework establishes, in plain language, is that the cost function is well-behaved: it vanishes at agreement, it never goes negative, and a certain threshold is positive. It does not establish that e is the correct constant for any recognition process. That would require defining m and e in terms of the subject itself, which the framework explicitly does not do. The reader can now see that the framework's cost function is mathematically consistent, but the special role of e remains an open question.
THEOREM domainCost_at_eq · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM canonicalThreshold_pos · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
unfold canonicalThreshold; linarith [phi_gt_onePointFive]
MODEL domainCost · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The framework does not derive e from its own principles. The framework does not show that e is special within the framework. The cost function's behavior at m/e is not evidence that e is the correct constant for any recognition process.
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/Foundation/Euler_Number_e_RS.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 definition of m and e in terms of a recognition process would make e a subject-specific constant?
- Does any physical or mathematical process have a natural cost function whose zero occurs at e?
- How does the canonical threshold phi − 3/2 relate to other thresholds in the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The cost is zero when m equals e, meaning there is no penalty when the two quantities agree. domainCost_at_eq · IndisputableMonolith/Foundation/Euler_Number_e_RS.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)The cost is never negative for positive inputs, so the penalty never rewards a mismatch. domainCost_nonneg · IndisputableMonolith/Foundation/Euler_Number_e_RS.leanTHEOREM canonicalThreshold_pos · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by unfold canonicalThreshold; linarith [phi_gt_onePointFive]The quantity phi − 3/2, called the canonical threshold, is positive, where phi is the golden ratio. canonicalThreshold_pos · IndisputableMonolith/Foundation/Euler_Number_e_RS.leanMODEL domainCost · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)The framework is a template, shared with 2383 sibling modules, that records what would need to be true for e to be a subject-specific constant. domainCost · IndisputableMonolith/Foundation/Euler_Number_e_RS.lean