operator-theory

GitHub

提供泛函分析中算子理论的解题策略,涵盖有界性验证、伴随算子、谱理论及紧算子等核心概念。结合Z3定理证明与SymPy符号计算工具辅助数学推导与分析。

.claude/skills/math/functional-analysis/operator-theory/SKILL.md parcadei/Continuous-Claude-v3

Trigger Scenarios

进行泛函分析中的算子性质证明 计算算子的范数或伴随算子 分析算子的谱集特征 验证算子的紧性或自伴性

Install

npx skills add parcadei/Continuous-Claude-v3 --skill operator-theory -g -y
More Options

Non-standard path

npx skills add https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/math/functional-analysis/operator-theory -g -y

Use without installing

npx skills use parcadei/Continuous-Claude-v3@operator-theory

指定 Agent (Claude Code)

npx skills add parcadei/Continuous-Claude-v3 --skill operator-theory -a claude-code -g -y

安装 repo 全部 skill

npx skills add parcadei/Continuous-Claude-v3 --all -g -y

预览 repo 内 skill

npx skills add parcadei/Continuous-Claude-v3 --list

SKILL.md

Frontmatter
{
    "name": "operator-theory",
    "description": "Problem-solving strategies for operator theory in functional analysis",
    "allowed-tools": [
        "Bash",
        "Read"
    ]
}

Operator Theory

When to Use

Use this skill when working on operator-theory problems in functional analysis.

Decision Tree

  1. Bounded operator verification

    • ||Tx|| <= M||x|| for some M
    • Operator norm: ||T|| = sup{||Tx|| : ||x|| = 1}
    • z3_solve.py prove "operator_bounded"
  2. Adjoint operator

    • <Tx, y> = <x, Ty> defines T
    • For matrices: T* = conjugate transpose
    • sympy_compute.py simplify "<Tx, y> - <x, T*y>"
  3. Spectral Theory

    • Spectrum: sigma(T) = {lambda : T - lambda*I not invertible}
    • Self-adjoint: spectrum is real
    • z3_solve.py prove "self_adjoint_real_spectrum"
  4. Compact operators

    • T compact if T(bounded set) has compact closure
    • Approximable by finite-rank operators
    • sympy_compute.py limit "||T - T_n||" --var n
  5. Spectral Theorem

    • Self-adjoint compact: T = sum(lambda_n * P_n)
    • eigenvalues -> 0, eigenvectors form orthonormal basis

Tool Commands

Z3_Bounded_Operator

uv run python -m runtime.harness scripts/z3_solve.py prove "norm(Tx) <= M*norm(x)"

Sympy_Adjoint

uv run python -m runtime.harness scripts/sympy_compute.py simplify "<Tx, y> - <x, T_star_y>"

Z3_Spectral

uv run python -m runtime.harness scripts/z3_solve.py prove "self_adjoint implies real_spectrum"

Sympy_Compact

uv run python -m runtime.harness scripts/sympy_compute.py limit "norm(T - T_n)" --var n --at oo

Key Techniques

From indexed textbooks:

  • [Introductory Functional Analysis with Applications] Spectral theory is one of the main branches of modern functional analysis and its applications. Roughly speaking, it is concerned with certain inverse operators, their general properties and their relations to the original operators. Such inverse operators arise quite naturally in connection with the problem of solving equations (systems of linear algebraic equations, differential equations, integral equations).
  • [Introductory Functional Analysis with Applications] Unbounded linear operators in Hilb,ert spaces will be considered in Chap. Brief orientation about main content of Chap. We begin with finite dimensional vector spaces.
  • [Introductory Functional Analysis with Applications] Most unbounded linear operators occurring in practical problems are closed or have closed linear extensions (Sec. Unbounded Linear Operators in Hilbert Space The spectrum of a self-adjoint linear operator is real, also in the unbounded case (d. T is obtained by means of the Cayley transform U= (T- iI)(T+ iI)-1 of T (d.
  • [Introductory Functional Analysis with Applications] Compact Operators and Their Spectrum is called a degenerate kernel. Here we may assume each of the two sets {ab· . If an equation (1) with such a kernel has a solution x, show that it must be of the form n x(s' = ji(s) + lot L cjaj(s), jl and the unknown constants must satisfy cj - n lot L ajkCk = Yj' kl where j= 1,···, n.
  • [Introductory Functional Analysis with Applications] As indicated before, our key to the application of complex analysis to spectral theory will be Theorem 7. The theorem states that for every value AoEp(n the resolvent R>. TE B(X, X) on a complex Banach space X has a power series repre- sentation (4) R>.

Cognitive Tools Reference

See .claude/skills/math-mode/SKILL.md for full tool documentation.

Version History

  • d07ff4b Current 2026-08-20 12:48

Same Skill Collection

.claude/plugins/braintrust-tracing/skills/trace-claude-code/SKILL.md
.claude/skills/agentica-claude-proxy/SKILL.md
.claude/skills/agentica-infrastructure/SKILL.md
.claude/skills/agentica-prompts/SKILL.md
.claude/skills/agentica-sdk/SKILL.md
.claude/skills/agentica-server/SKILL.md
.claude/skills/archive/leann-search/SKILL.md
.claude/skills/ast-grep-find/SKILL.md
.claude/skills/braintrust-tracing/SKILL.md
.claude/skills/cli-reference/SKILL.md
.claude/skills/commit/SKILL.md
.claude/skills/compound-learnings/SKILL.md
.claude/skills/continuity_ledger/SKILL.md
.claude/skills/create_handoff/SKILL.md
.claude/skills/dead-code/SKILL.md
.claude/skills/debug-hooks/SKILL.md
.claude/skills/debug/SKILL.md
.claude/skills/describe_pr/SKILL.md
.claude/skills/discovery-interview/SKILL.md
.claude/skills/explore/SKILL.md
.claude/skills/firecrawl-scrape/SKILL.md
.claude/skills/fix/SKILL.md
.claude/skills/github-search/SKILL.md
.claude/skills/help/SKILL.md
.claude/skills/hook-developer/SKILL.md
.claude/skills/implement_plan_micro/SKILL.md
.claude/skills/implement_plan/SKILL.md
.claude/skills/implement_task/SKILL.md
.claude/skills/loogle-search/SKILL.md
.claude/skills/math-help/SKILL.md
.claude/skills/math-router/SKILL.md
.claude/skills/math-unified/SKILL.md
.claude/skills/math/abstract-algebra/fields/SKILL.md
.claude/skills/math/abstract-algebra/groups/SKILL.md
.claude/skills/math/abstract-algebra/rings/SKILL.md
.claude/skills/math/category-theory/categories-functors/SKILL.md
.claude/skills/math/category-theory/limits-colimits/SKILL.md
.claude/skills/math/category-theory/natural-transformations/SKILL.md
.claude/skills/math/complex-analysis/analytic-functions/SKILL.md
.claude/skills/math/complex-analysis/contour-integrals/SKILL.md
.claude/skills/math/complex-analysis/residues/SKILL.md
.claude/skills/math/functional-analysis/banach-spaces/SKILL.md
.claude/skills/math/functional-analysis/hilbert-spaces/SKILL.md
.claude/skills/math/graph-number-theory/graph-algorithms/SKILL.md
.claude/skills/math/graph-number-theory/modular-arithmetic/SKILL.md
.claude/skills/math/graph-number-theory/prime-numbers/SKILL.md
.claude/skills/math/information-theory/channel-capacity/SKILL.md
.claude/skills/math/information-theory/entropy/SKILL.md
.claude/skills/math/information-theory/source-coding/SKILL.md

Metadata

Files
0
Version
d07ff4b
Hash
45f932ab
Indexed
2026-08-20 12:48

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 04:24
浙ICP备14020137号-1 $Гость$