compactness

Solid

Problem-solving strategies for compactness in topology

AI & Automation 3,809 stars 297 forks Updated 4 months ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
100
Recency 20%
50
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. Itisnotasnaturalorintuitiveastheformer;somefamiliaritywithitisneededbefor...

Details

Author
parcadei
Repository
parcadei/Continuous-Claude-v3
Created
5 months ago
Last Updated
4 months ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category