compactness

Solid

Problem-solving strategies for compactness in topology

AI & Automation 501 stars 42 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
90
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Compactness ## When to Use Use this skill when working on compactness problems in topology. ## Decision Tree 1. **Is X compact?** - If X subset R^n: Is X closed AND bounded? (Heine-Borel) - If X is metric: Does every sequence have convergent subsequence? - General: Does every open cover have finite subcover? - `z3_solve.py prove "bounded_and_closed"` 2. **Compactness Tests** - Heine-Borel (R^n): closed + bounded = compact - Sequential: every sequence has convergent subsequence - `sympy_compute.py limit "a_n" --var n` to check convergence 3. **Product Spaces** - Tychonoff: product of compact spaces is compact - Finite products preserve compactness directly 4. **Consequences of Compactness** - Continuous image of compact is compact - Continuous real function on compact attains max/min - `sympy_compute.py maximum "f(x)" --var x --domain "[a,b]"` ## Tool Commands ### Z3_Bounded_Closed ```bash uv run python -m runtime.harness scripts/z3_solve.py prove "bounded_and_closed" ``` ### Sympy_Limit ```bash uv run python -m runtime.harness scripts/sympy_compute.py limit "a_n" --var n --at oo ``` ### Sympy_Maximum ```bash uv run python -m runtime.harness scripts/sympy_compute.py maximum "f(x)" --var x --domain "[a,b]" ``` ## Key Techniques *From indexed textbooks:* - [Topology (Munkres, James Raymond) (Z-Library)] CompactSpaces163 164ConnectednessandCompactnessCh. Itisnotasnaturalorintu...

Details

Author
vibeeval
Repository
vibeeval/vibecosystem
Created
2 months ago
Last Updated
yesterday
Language
C#
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category