Problem-solving strategies for operator theory in functional analysis
Use this skill when working on operator-theory problems in functional analysis.
Bounded operator verification
z3_solve.py prove "operator_bounded"Adjoint operator
sympy_compute.py simplify "<Tx, y> - <x, T*y>"Spectral Theory
z3_solve.py prove "self_adjoint_real_spectrum"Compact operators
sympy_compute.py limit "||T - T_n||" --var nSpectral Theorem
uv run python -m runtime.harness scripts/z3_solve.py prove "norm(Tx) <= M*norm(x)"
uv run python -m runtime.harness scripts/sympy_compute.py simplify "<Tx, y> - <x, T_star_y>"
uv run python -m runtime.harness scripts/z3_solve.py prove "self_adjoint implies real_spectrum"
uv run python -m runtime.harness scripts/sympy_compute.py limit "norm(T - T_n)" --var n --at oo
From indexed textbooks:
See .claude/skills/math-mode/SKILL.md for full tool documentation.