Encyclopedia Materials Materials Semiconductor Dopant Types From Config Dim
ARTICLE 2 claims 2 theorems
Materials Semiconductor Dopant Types From Config Dim
In a silicon crystal, five kinds of impurity atoms control whether the material conducts: the framework shows this five-way split is not arbitrary.
The five dopant types
Semiconductor doping is the deliberate addition of impurity atoms to a crystal such as silicon to change how easily it conducts electricity. The five canonical categories are group-V donors (phosphorus, arsenic, antimony), group-III acceptors (boron, aluminum, gallium), deep-level impurities, compensating dopants, and transition-metal scattering centers. A donor contributes an extra free electron; an acceptor creates a hole that acts like a positive charge carrier. Deep-level impurities trap carriers and reduce lifetime, compensating dopants cancel the effect of the primary dopant, and transition-metal centers scatter carriers and degrade mobility. These five roles cover the standard classification used in solid-state device engineering.
The five-way split has a long history in materials science, tied to the periodic table's column structure and the quantum mechanics of bonding in a silicon lattice. Group-V elements sit one column to the right of silicon and donate electrons; group-III elements sit one column to the left and accept electrons. The distinction between shallow levels (donors and acceptors, close to the band edges) and deep levels (mid-gap traps) is fundamental to device design. Transition metals such as iron and copper are notorious contaminants that scatter carriers and shorten carrier lifetime, which is why cleanrooms exist.
In Recognition Science, the framework models the dopant classification through a structure called configDim, a count of configuration dimensions. For silicon-type semiconductors, configDim equals 5, and the framework's machine-checked library of formal theorems proves that exactly five dopant types exist: the inductive type DopantType has five constructors, and the theorem dopantType_count establishes that Fintype.card DopantType = 5. The certificate structure SemiconductorDopantCert packages this count as a formal guarantee with zero axioms and zero sorry. In plain language, the framework derives the five-way classification from a dimensional count rather than assuming it as a convention.
What this changes is the status of the classification. A device engineer treats the five categories as empirical knowledge, learned from decades of measurements. The framework's contribution is to show the same five categories fall out of a structural count, the same kind of count that elsewhere in the framework forces the golden ratio and three spatial dimensions. The five types are not merely a convenient list; they are the complete list that the dimensional structure permits.
The practical consequence is unchanged: engineers still choose phosphorus for n-type regions and boron for p-type regions, and still guard against iron contamination. What the framework adds is a reason the classification is closed. There is no sixth canonical category waiting to be discovered, because the count of five is proved, not enumerated. That is the difference between a taxonomy and a theorem.
THEOREM dopantType_count · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.lean
theorem dopantType_count : Fintype.card DopantType = 5 := by decide
THEOREM semiconductorDopantCert · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.lean
def semiconductorDopantCert : SemiconductorDopantCert where
five_types := dopantType_count
What this page does not claim
This answer does not claim the framework derives the electrical properties of any specific dopant atom. This answer does not claim the five categories are the only dopant classification used in industry, where subcategories such as amphoteric dopants also appear.
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/Materials/SemiconductorDopantTypesFromConfigDim.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:
- How does configDim generalize to other crystal families such as germanium or gallium arsenide?
- Which physical property of the silicon lattice forces configDim to be exactly 5?
- Does the five-type count constrain device-level predictions such as carrier lifetime or mobility?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM dopantType_count · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.lean
theorem dopantType_count : Fintype.card DopantType = 5 := by decideFor silicon-type semiconductors, configDim equals 5, and the framework's machine-checked library of formal theorems proves that exactly five dopant types exist. dopantType_count · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.leanTHEOREM semiconductorDopantCert · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.lean
def semiconductorDopantCert : SemiconductorDopantCert where five_types := dopantType_countThe certificate structure SemiconductorDopantCert packages this count as a formal guarantee with zero axioms and zero sorry. semiconductorDopantCert · IndisputableMonolith/Materials/SemiconductorDopantTypesFromConfigDim.lean