compactness
SolidProblem-solving strategies for compactness in topology
AI & Automation 501 stars
42 forks Updated yesterday MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
AI & Automation Solid
compactness
Problem-solving strategies for compactness in topology
3,809 Updated 4 months ago
parcadei AI & Automation Solid
connectedness
Problem-solving strategies for connectedness in topology
501 Updated yesterday
vibeeval AI & Automation Solid
connectedness
Problem-solving strategies for connectedness in topology
3,809 Updated 4 months ago
parcadei