Classify and reconstruct quantum particle statistics types: bosonic, fermionic, and exotic statistics. Analyze symmetrization postulates and commutation relations. Activation: particle statistics, quantum statistics, 粒子统计, boson fermion, exchange symmetry, commutation relation.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill quantum-particle-statistics-classification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quantum Particle Statistics Classification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-quantum-particle-statistics-classification-ai-collection)More formats (shields.io, HTML) on the badges page.
---
name: quantum-particle-statistics-classification
description: "Classify and reconstruct quantum particle statistics types: bosonic, fermionic, and exotic statistics. Analyze symmetrization postulates and commutation relations. Activation: particle statistics, quantum statistics, 粒子统计, boson fermion, exchange symmetry, commutation relation."
---
# Quantum Particle Statistics Classification
## Description
A skill for classifying and reconstructing quantum particle statistics types. Analyzes identical particle systems to determine bosonic, fermionic, or exotic statistics through symmetrization postulates and commutation relation constraints.
## Activation Keywords
- particle statistics
- quantum statistics
- 粒子统计
- boson fermion
- exchange symmetry
- commutation relation
- identical particles
- anyonic statistics
- para-statistics
- exchange operator
## Recommended Model
- **opus4.5** (For theoretical particle statistics analysis)
- **sonnet4.5** (For practical classification tasks)
## Tools Used
- **exec**: Run Python simulations for particle statistics
- **write**: Create classification reports and mathematical derivations
- **read**: Load quantum mechanics references
- **web_search**: Search for exotic particle statistics research
## Core Concepts
### Quantum Particle Statistics Types
| Statistics | Exchange Symmetry | Commutation | Example |
|------------|------------------|-------------|---------|
| **Bosonic** | Symmetric | [a, a†] = 1 | Photons, gluons |
| **Fermionic** | Antisymmetric | {a, a†} = 1 | Electrons, protons |
| **Anyonic** | Phase factor | Generalized | 2D particles |
| **Para-statistics** | Mixed | Para-commutation | Exotic particles |
### Symmetrization Postulate
Identical quantum particles exhibit exchange symmetry:
- **Bosons**: |ψ⟩ = +|ψ'⟩ under particle exchange
- **Fermions**: |ψ⟩ = -|ψ'⟩ under particle exchange
- **General**: |ψ⟩ = e^{iθ}|ψ'⟩ for anyons
### Classification Framework
```
┌──────────────────────────────────────────┐
│ Particle Statistics Analysis │
│ │
│ 1. Identify exchange symmetry │
│ ├─ Symmetric → Bosonic │
│ ├─ Antisymmetric → Fermionic │
│ └─ Phase factor → Anyonic │
│ │
│ 2. Analyze commutation relations │
│ ├─ Commutator [a,a†] = 1 → Boson │
│ ├─ Anticommutator {a,a†} = 1 → Fermion│
│ ├─ Para-commutation → Para-statistics│
│ │
│ 3. Determine dimension constraints │
│ ├─ 3D → Boson or Fermion only │
│ ├─ 2D → Anyonic statistics possible │
│ │
│ 4. Classify particle statistics │
│ ├─ Standard: Boson/Fermion │
│ ├─ Exotic: Anyon/Para-statistics │
└──────────────────────────────────────────┘
```
## Usage Patterns
### Pattern 1: Classify Particle Statistics
```
分类粒子统计类型:分析电子、光子的统计性质
```
### Pattern 2: Reconstruct Statistics from Exchange Symmetry
```
从交换对称性重构粒子统计
```
### Pattern 3: Analyze Exotic Statistics
```
分析 exotic statistics:para-statistics 和 anyons
```
## Instructions for Agents
### Step 1: Identify Particle System
Analyze the particle system characteristics:
| Question | Implication |
|----------|-------------|
| What particles? | Species and properties |
| Identical? | Same quantum numbers |
| Dimension? | 2D (anyons) vs 3D (bosons/fermions) |
| Exchange behavior? | Symmetry type |
Ask clarifying questions:
- What type of particles?
- Are particles identical?
- What's the spatial dimension?
- What exchange behavior observed?
### Step 2: Analyze Exchange Symmetry
Determine exchange operator behavior:
**Exchange Operator:**
```
P_ij |ψ(r_1, r_2)⟩ = |ψ(r_2, r_1)⟩
```
**Classification by Eigenvalue:**
| Eigenvalue λ | Statistics | Physical Meaning |
|--------------|-----------|------------------|
| λ = +1 | Bosonic | Symmetric wavefunction |
| λ = -1 | Fermionic | Antisymmetric wavefunction |
| λ = e^{iθ} | Anyonic | 2D fractional statistics |
**Calculation:**
```python
def analyze_exchange_symmetry(wavefunction, particle_indices):
"""Analyze exchange symmetry of wavefunction."""
i, j = particle_indices
# Original wavefunction
psi_original = wavefunction
# Exchanged wavefunction
psi_exchanged = exchange_particles(wavefunction, i, j)
# Calculate eigenvalue
if psi_exchanged == psi_original:
return "bosonic", lambda=1.0
elif psi_exchanged == -psi_original:
return "fermionic", lambda=-1.0
else:
# Check for phase factor (anyonic)
phase = psi_exchanged / psi_original
if abs(phase) == 1: # Pure phase
return "anyonic", phase
else:
return "exotic", phase # Para-statistics or other
```
### Step 3: Analyze Commutation Relations
Study creation/annihilation operator algebra:
**Standard Commutation Relations:**
| Type | Relation | Occupation |
|------|----------|-----------|
| Boson | [a_i, a_j†] = δ_ij | n ∈ {0, 1, 2, ...} |
| Fermion | {a_i, a_j†} = δ_ij | n ∈ {0, 1} |
**Para-statistics Relations:**
```python
# Para-commutation of order p
[a_i, a_j†] = (1 + (p-1) δ_ij) δ_ij
# Allows intermediate statistics
```
**Classification Code:**
```python
def classify_by_commutation(creation_ops, annihilation_ops):
"""Classify statistics by commutation relations."""
# Test commutator
commutator = creation_ops @ annihilation_ops - annihilation_ops @ creation_ops
# Test anticommutator
anticommutator = creation_ops @ annihilation_ops + annihilation_ops @ creation_ops
if commutator == identity:
return "bosonic"
elif anticommutator == identity:
return "fermionic"
else:
# Check for para-commutation
order = infer_para_order(commutator)
return f"para-statistics (order {order})"
```
### Step 4: Apply Dimension Constraints
Consider spatial dimension restrictions:
**Spin-Statistics Theorem:**
- **3D space**: Only bosonic (λ=+1) or fermionic (λ=-1) statistics
- **2D space**: Anyonic statistics (λ=e^{iθ}) possible
**Reason:**
- In 3D, particle exchange path has 2 possibilities (clockwise/anticlockwise)
- In 2D, exchange path is unique, allows fractional statistics
**Analysis:**
```python
def apply_dimension_constraint(statistics_type, dimension):
"""Apply spin-statistics theorem constraints."""
if statistics_type == "anyonic" and dimension == 3:
return "Error: Anyonic statistics only valid in 2D"
if dimension == 3:
allowed = ["bosonic", "fermionic"]
exotic = []
elif dimension == 2:
allowed = ["bosonic", "fermionic", "anyonic"]
exotic = ["anyonic"]
return {
"allowed": allowed,
"exotic": exotic,
"dimension": dimension
}
```
### Step 5: Reconstruct Statistics Model
Create mathematical model for particle statistics:
**State Space Construction:**
```python
def construct_state_space(particle_type, num_particles, statistics):
"""Construct state space for given statistics."""
if statistics == "bosonic":
# Fock space with arbitrary occupation
states = construct_fock_space(max_occupation=inf)
elif statistics == "fermionic":
# Fock space with occupation 0 or 1
states = construct_fock_space(max_occupation=1)
# Apply Pauli exclusion principle
elif statistics == "anyonic":
# 2D state space with fractional statistics
states = construct_anyon_space(phase_factor)
elif statistics.startswith("para"):
# Para-statistics with order p
order = extract_para_order(statistics)
states = construct_para_fock_space(order)
return states
```
### Step 6: Generate Classification Report
Create comprehensive classification analysis:
```markdown
# Quantum Particle Statistics Classification
## Particle System
- **Type**: [Particle species]
- **Number**: [Particle count]
- **Identical**: [Yes/No]
- **Dimension**: [2D/3D]
## Exchange Symmetry Analysis
- **Exchange eigenvalue**: λ = [value]
- **Symmetry type**: [Symmetric/Antisymmetric/Phase]
- **Classification**: [Bosonic/Fermionic/Anyonic]
## Commutation Relations
- **Creation/annihilation**: [Relation type]
- **Algebra**: [Commutator/Anticommutator/Para-commutation]
- **Occupation number**: [n ∈ {0,1,2,...}]
## Dimension Constraints
- **Space dimension**: [2D/3D]
- **Allowed statistics**: [List]
- **Spin-statistics theorem**: [Applied]
## Reconstruction Model
- **State space**: [Fock space type]
- **Wavefunction**: [Symmetry form]
- **Operators**: [Creation/annihilation algebra]
## Classification Result
- **Statistics type**: [Final classification]
- **Physical examples**: [Similar particles]
## References
- arXiv:2306.05919 (Reconstruction of Quantum Particle Statistics)
```
## Error Handling
### Inconsistent Exchange Symmetry
```
Error: Exchange symmetry inconsistent with commutation relations.
Solution:
1. Verify both exchange eigenvalue and commutation relations
2. Check for mixed statistics (para-statistics)
3. Re-examine wavefunction normalization
4. Consider dimension constraint violations
```
### Dimension-Statistics Violation
```
Error: Anyonic statistics in 3D space (invalid).
Solution:
1. Confirm particle system dimension
2. If 3D: restrict to bosonic/fermionic
3. If 2D: anyonic statistics allowed
4. Check for topological effects (anyons in 2D materials)
```
### Para-Statistics Order Inconsistent
```
Error: Para-commutation order doesn't match occupation numbers.
Solution:
1. Verify occupation number constraints
2. Check para-commutation algebra consistency
3. Determine para-order from commutator structure
4. Validate with Green's ansatz for para-fields
```
## Mathematical Framework
### Exchange Operator Algebra
```
P_ij² = I (for 3D)
P_ij² = e^{iθ} (for 2D anyons)
Pauli exclusion: n_i ∈ {0,1} for fermions
No exclusion: n_i ∈ {0,1,2,...} for bosons
```
### Creation/Annihilation Operators
**Bosonic:**
```
a_i a_j† - a_j† a_i = δ_ij
[a_i, a_j] = 0, [a_i†, a_j†] = 0
```
**Fermionic:**
```
a_i a_j† + a_j† a_i = δ_ij
{a_i, a_j} = 0, {a_i†, a_j†} = 0
```
**Para-statistics (order p):**
```
[a_i, a_j†] = δ_ij + (p-1) δ_ij²
Maximum occupation: n ≤ p
```
### Wavefunction Forms
**Bosonic:**
```
ψ_B(r_1, r_2, ..., r_N) = (1/√N!) Σ_P ψ(r_P(1), ..., r_P(N))
Symmetrized sum over all permutations
```
**Fermionic:**
```
ψ_F(r_1, r_2, ..., r_N) = (1/√N!) Σ_P (-1)^P ψ(r_P(1), ..., r_P(N))
Antisymmetrized sum with sign factor
```
**Anyonic (2D):**
```
ψ_A(r_1, r_2) = e^{iθ n(r_1,r_2)} ψ(r_1, r_2)
Phase factor from winding number
```
## Examples
### Example 1: Electron Classification
```
User: "分类电子的粒子统计类型"
Agent:
1. 识别粒子: 电子(自旋1/2)
2. 分析交换对称性:
- Exchange eigenvalue: λ = -1
- Antisymmetric wavefunction
3. 分析对易关系:
- {a, a†} = 1 (anticommutator)
- Occupation: n ∈ {0,1}
4. 维度约束: 3D → fermionic
5. 分类结果: Fermionic statistics
6. 物理例子: Pauli exclusion principle
```
### Example 2: Photon Classification
```
User: "分析光子的统计性质"
Agent:
1. 识别粒子: 光子(自旋1,玻色子)
2. 交换对称性: λ = +1 (symmetric)
3. 对易关系: [a, a†] = 1 (commutator)
4. 维度约束: 3D → bosonic
5. Occupation: n ∈ {0,1,2,...}
6. 物理例子: Laser (boson condensation)
```
### Example 3: 2D Anyon Analysis
```
User: "分析二维材料中的任意子统计"
Agent:
1. 识别粒子: 2D quasi-particles (anyons)
2. 交换对称性: λ = e^{iπ/3} (fractional phase)
3. 统计角度: θ = π/3 (Abelian anyon)
4. 维度约束: 2D → anyonic allowed
5. 物理例子: Fractional quantum Hall effect
6. 统计类型: Abelian anyon (θ = π/3)
```
### Example 4: Para-Statistics Reconstruction
```
User: "重构para-statistics模型,order=2"
Agent:
1. Para-order: p = 2
2. Para-commutation:
[a_i, a_j†] = δ_ij + δ_ij²
3. Occupation: n ≤ 2
4. State space: Para-Fock space
5. 物理例子: Quons (intermediate statistics)
6. 统计类型: Para-statistics of order 2
```
## Resources
### Key Paper
- **arXiv:2306.05919** - Reconstruction of Quantum Particle Statistics: Bosons, Fermions, and Transtatistics
### Reference Books
- "Quantum Mechanics" by Landau & Lifshitz (Chapter on identical particles)
- "Quantum Field Theory" by Weinberg (Spin-statistics theorem)
- "Anyons" by Wilczek (Fractional statistics in 2D)
### Related Topics
- Spin-statistics theorem
- Pauli exclusion principle
- Bose-Einstein condensation
- Fractional quantum Hall effect
- Topological order
## Related Skills
- **quantum-mechanics**: General quantum mechanics foundations
- **quantum-field-theory**: Field theory and particle physics
- **topological-quantum-computing**: Anyon-based quantum computing
- **condensed-matter-physics**: Many-body particle systems
- **symmetry-analysis**: Symmetry groups and representations
## Limitations
- Classification limited to known statistics types
- Para-statistics may not have physical realizations
- Anyonic statistics only valid in 2D
- Spin-statistics theorem requires relativistic QFT
- Exotic statistics may violate standard assumptions
## Notes
- Focus on mathematical reconstruction from exchange symmetry
- Dimension is crucial: 2D allows exotic statistics
- Commutation relations provide algebraic classification
- Physical motivation for symmetrization postulate is key
- Standard bosons/fermions are most common in natureIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!