MCP HubMCP Hub
스킬 목록으로 돌아가기

formulate-quantum-problem

pjt222
업데이트됨 2 days ago
7 조회
17
2
17
GitHub에서 보기
기타general

정보

이 스킬은 힐베르트 공간, 연산자, 경계 조건을 포함한 수학적 프레임워크를 정의하여 개발자들이 양자 역학이나 화학 문제를 공식화하는 데 도움을 줍니다. 물리적 시나리오를 슈뢰딩거 방정식과 같은 형식주의로 변환하는 과정을 안내하며, 섭동 이론이나 DFT와 같은 적절한 해법 방법을 선택합니다. 해석적 또는 수치적 해법을 위한 양자 문제를 설정할 때 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/formulate-quantum-problem

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Formulate Quantum Problem

Turn physical system into well-posed quantum problem. Find relevant degrees of freedom. Build Hamiltonian + state space. Set boundary conditions. Pick approximation method. Validate formulation vs known limits.

When Use

  • Set up quantum mechanics problem for analytic or numerical solution
  • Formulate quantum chemistry calculation (molecular orbitals, electronic structure)
  • Translate physical scenario into Dirac or Schrodinger formalism
  • Pick between perturbation theory, variational, DFT, exact diagonalization
  • Prep theoretical model for comparison with experimental spectroscopic or scattering data

Inputs

  • Required: Physical system description (atom, molecule, solid, field)
  • Required: Observables (energy spectrum, transition rates, ground state)
  • Optional: Experimental constraints or data (spectral lines, binding energies)
  • Optional: Desired accuracy or computational budget
  • Optional: Preferred formalism (wave mechanics, matrix mechanics, second quantization, path integral)

Steps

Step 1: Find Physical System + Relevant Degrees of Freedom

Characterize system before writing equations:

  1. Particle content: List particles (electrons, nuclei, photons, phonons) + quantum numbers (spin, charge, mass).
  2. Symmetries: Find spatial (spherical, cylindrical, translational, crystal group), internal (spin rotation, gauge), discrete (parity, time reversal).
  3. Energy scales: Find relevant energy scales. Decide which degrees of freedom active, which frozen or adiabatic.
  4. Degrees of freedom shrink: Apply Born-Oppenheimer if nuclear + electronic timescales separate. Find collective coordinates if many-body simplify.
## System Characterization
- **Particles**: [list with quantum numbers]
- **Active degrees of freedom**: [coordinates, spins, fields]
- **Frozen degrees of freedom**: [and justification for freezing]
- **Symmetry group**: [continuous and discrete]
- **Energy scale hierarchy**: [e.g., electronic >> vibrational >> rotational]

Got: Complete inventory — particles, quantum numbers, symmetries, justified active vs frozen degrees of freedom.

If fail: Energy scale hierarchy unclear? Keep all degrees of freedom, flag need for scale analysis. Premature truncation → qualitatively wrong physics.

Step 2: Build Hamiltonian + State Space

Build math framework from degrees of freedom in Step 1:

  1. Hilbert space: Define state space. Finite-dim → specify basis (spin-1/2 |up>, |down>). Infinite-dim → specify function space (L2(R^3) for single particle in 3D).
  2. Kinetic terms: Kinetic operator each particle. Position: T = -hbar^2/(2m) nabla^2.
  3. Potential terms: All interaction potentials (Coulomb, harmonic, spin-orbit, external). Explicit functional form + coupling constants.
  4. Composite Hamiltonian: Assemble H = T + V, group by interaction type. Multi-particle → include exchange + correlation or note approximation entry.
  5. Operator algebra: Verify Hamiltonian Hermitian. Find constants of motion ([H, O] = 0) for block-diagonalization.
## Hamiltonian Structure
- **Hilbert space**: [definition and basis]
- **H = T + V decomposition**:
  - T = [kinetic terms]
  - V = [potential terms, grouped by type]
- **Constants of motion**: [operators commuting with H]
- **Symmetry-adapted basis**: [if block diagonalization is possible]

Got: Complete Hermitian Hamiltonian, all terms explicit. Hilbert space defined. Constants of motion identified.

If fail: Not manifestly Hermitian? Check missing conjugate terms or gauge phases. Hilbert space ambiguous (relativistic)? Specify formalism explicit, note issue.

Step 3: Set Boundary + Initial Conditions

Constrain problem for unique solution:

  1. Boundary conditions: Bound state → normalizability (psi -> 0 at infinity). Scattering → incoming wave boundary. Periodic → Bloch or Born-von Karman.
  2. Domain restrictions: Spatial domain. Particle in box → walls. Hydrogen atom → radial + angular. Lattice models → lattice + topology.
  3. Initial state (time-dependent): State at t=0 as expansion in energy eigenbasis or wave packet with center + width.
  4. Constraint equations: Indistinguishable particles → symmetrize (bosons) or antisymmetrize (fermions). Gauge theories → gauge-fixing.
## Boundary and Initial Conditions
- **Spatial domain**: [definition]
- **Boundary type**: [Dirichlet / Neumann / periodic / scattering]
- **Normalization**: [condition]
- **Particle statistics**: [bosonic / fermionic / distinguishable]
- **Initial state** (if time-dependent): [specification]

Got: Boundary conditions physically motivated, mathematically consistent with Hamiltonian domain, sufficient for unique solution (or well-defined scattering matrix).

If fail: Over- or under-determined? Check self-adjointness of Hamiltonian on chosen domain. Non-self-adjoint → careful treatment of deficiency indices.

Step 4: Pick Approximation Method

Pick solution strategy for problem structure:

  1. Check exact solvability: Problem reduces to known exactly solvable model (harmonic oscillator, hydrogen atom, Ising)? Yes → use exact + perturbation for corrections.

  2. Perturbation theory (weak coupling):

    • Split H = H0 + lambda V, H0 exactly solvable
    • Verify lambda V small vs level spacing of H0
    • Check degeneracy; degenerate perturbation theory if needed
    • Good for: weak interaction, few-body, analytic results
  3. Variational methods (ground state):

    • Trial wave function with adjustable parameters
    • Trial function satisfies boundary + symmetry
    • Good for: ground state energy target, many-body
  4. Density Functional Theory (many-electron):

    • Exchange-correlation functional (LDA, GGA, hybrid)
    • Basis set (plane waves, Gaussian, numerical atomic orbitals)
    • Good for: many-electron, ground state density + energy
  5. Numerical exact methods (small, benchmarking):

    • Exact diagonalization for small Hilbert spaces
    • Quantum Monte Carlo for ground state sampling
    • DMRG for 1D or quasi-1D
    • Good for: high accuracy, small system
## Approximation Method Selection
- **Method chosen**: [name]
- **Justification**: [why this method fits the problem structure]
- **Expected accuracy**: [order of perturbation, variational bound quality, DFT functional accuracy]
- **Computational cost**: [scaling with system size]
- **Alternatives considered**: [and why they were rejected]

Got: Justified choice with clear accuracy + cost. Alternatives documented.

If fail: No single method clearly right? Formulate for two methods + compare. Disagreement reveals difficulty + guides refinement.

Step 5: Validate Formulation vs Known Limits

Before solving, verify formulation reproduces known physics:

  1. Classical limit: Take hbar -> 0 (or large quantum numbers), verify Hamiltonian reduces to correct classical mechanics.
  2. Non-interacting limit: Set couplings to zero, verify solution = product of single-particle states.
  3. Symmetry limits: Verify formulation respects all identified symmetries. Check Hamiltonian transforms correctly under symmetry group.
  4. Dimensional analysis: Verify every term has units of energy. Check characteristic length, energy, time scales physically reasonable.
  5. Known exact results: Special cases (hydrogen atom Z=1, harmonic oscillator quadratic potential)? Verify formulation reproduces them.
## Validation Checks
| Check | Expected Result | Status |
|-------|----------------|--------|
| Classical limit (hbar -> 0) | [classical Hamiltonian] | [Pass/Fail] |
| Non-interacting limit | [product states] | [Pass/Fail] |
| Symmetry transformation | [correct representation] | [Pass/Fail] |
| Dimensional analysis | [all terms in energy units] | [Pass/Fail] |
| Known exact case | [reproduced result] | [Pass/Fail] |

Got: All validation checks pass. Formulation self-consistent, ready to solve.

If fail: Failed check = error in Hamiltonian construction or boundary. Trace to term or condition, fix before solving.

Checks

  • All particles + quantum numbers explicit
  • Hilbert space defined with clear basis
  • Hamiltonian Hermitian + all terms correct units
  • Constants of motion identified + used for simplification
  • Boundary conditions physically motivated + mathematically sufficient
  • Particle statistics (bosonic/fermionic) correctly enforced
  • Approximation method choice justified + accuracy stated
  • Classical, non-interacting, symmetry limits checked
  • Known exact results reproduced special cases
  • Formulation complete for implementation

Pitfalls

  • Dropping degrees of freedom early: Freezing without energy scale check misses physics. Always justify with scale argument.
  • Non-Hermitian Hamiltonian: Forgetting conjugate terms in spin-orbit or complex potentials. Verify H = H-dagger explicit.
  • Wrong boundary for scattering: Bound-state boundary (normalizability) for scattering discards continuous spectrum. Match boundary to physical question.
  • Ignoring degeneracy in perturbation theory: Non-degenerate on degenerate level → divergent corrections. Check degeneracy before expanding.
  • Over-rely on single approximation: Different methods = complementary failure modes. Variational → upper bounds but miss excited states. Perturbation diverges at strong coupling. Cross-validate when possible.
  • Dimensional inconsistency: Mixing natural units (hbar = 1) with SI in same expression. Pick unit system at start, state it explicit.

See Also

  • derive-theoretical-result -- derive analytic results from formulated problem
  • survey-theoretical-literature -- prior work on similar quantum systems

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman/skills/formulate-quantum-problem
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

llamaguard

기타

LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.

스킬 보기

cost-optimization

기타

이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.

스킬 보기

quantizing-models-bitsandbytes

기타

이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.

스킬 보기

dispatching-parallel-agents

기타

이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.

스킬 보기