Encyclopedia Physics Physics Quantum Capacitance From Jcost

ARTICLE 5 claims 3 theorems 2 models

Physics Quantum Capacitance From Jcost

Quantum capacitance measures how a material's electron density responds to voltage; a machine-checked library proves three basic facts about the cost function that Recognition Science associates with it.

Quantum capacitance and its cost

Quantum capacitance is a concept from mesoscopic physics. For a small conductor or a sheet of material, the usual geometric capacitance comes from the physical separation of charges. Quantum capacitance, written C_Q, comes from the material's electronic structure itself: it is defined as C_Q = e² × D(E_F), where e is the electron charge and D(E_F) is the density of states at the Fermi energy, the number of available electron energy levels per unit energy at the material's highest occupied level. It matters when a device is so small that the energy cost of adding one electron is set by the material's quantum levels, not by the classical geometry of the plates.

The concept emerged in the 1980s and 1990s as researchers studied quantum dots and two-dimensional electron gases. In those systems, the density of states can be very small, and the quantum capacitance can dominate the total capacitance of a device. A common textbook result is that the total capacitance of a quantum dot is the series combination of the geometric and quantum capacitances, so the smaller one limits the total. The quantum term becomes important when the density of states is low, for example in a single quantum level or in graphene near the Dirac point, where D(E_F) approaches zero.

In Recognition Science, the framework models the ratio of quantum to geometric capacitance as a cost function. The framework's cost, a measure of how expensive a recognition event is, is written J(x) = (x + 1/x)/2 - 1. The module defines its domain cost as J(m/e), where m and e are real numbers standing for two quantities. The machine-checked library of formal theorems proves three general facts about this cost: it vanishes when m equals e, it is never negative for positive inputs, and the threshold value φ - 3/2 is positive, where φ is the golden ratio. These are properties of the cost function itself, not of any specific physical system.

The library's docstring is explicit about what the module does not do. It proves nothing specific to quantum capacitance, because the definition of domainCost as J(m/e) does not reference any physical definition of m or e. The research note in the module records the intended direction: that at the recognition crossover from geometric to quantum capacitance regime, the ratio C_Q/C_geo equals J(φ) ≈ 0.118. But that note is a research hypothesis, not a proved theorem. What would make the module a theorem about its subject is a definition of m and e in the subject's own terms, for example identifying m with a density of states or an energy scale.

The practical lesson is that a formal proof of a cost function's properties does not by itself establish a physical law. The three proved facts, the vanishing at equality, the nonnegativity, and the positive threshold, are real and machine-checked, but they are generic. The bridge from the cost function to quantum capacitance, the identification of the variables, remains open. This is the difference between mathematics and physics: the mathematics is airtight, the physics is a proposal waiting for a definition.

MODEL domainCost · IndisputableMonolith/Physics/QuantumCapacitanceFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
MODEL domainCost · IndisputableMonolith/Physics/QuantumCapacitanceFromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
THEOREM domainCost_at_eq · IndisputableMonolith/Physics/QuantumCapacitanceFromJCost.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/Physics/QuantumCapacitanceFromJCost.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/Physics/QuantumCapacitanceFromJCost.lean
theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
  unfold canonicalThreshold; linarith [phi_gt_onePointFive]

What this page does not claim

The module does not prove any physical fact about quantum capacitance; it proves properties of a generic cost function. The value J(φ) ≈ 0.118 is a research note, not a proved or measured result. The framework does not derive the definition of quantum capacitance from first principles.

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/Physics/QuantumCapacitanceFromJCost.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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND