open-sets
SolidProblem-solving strategies for open sets 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
# Open Sets
## When to Use
Use this skill when working on open-sets problems in topology.
## Decision Tree
1. **Is f: X -> Y continuous?**
- For metric spaces: x_n -> x implies f(x_n) -> f(x)?
- For general spaces: f^(-1)(open) = open?
- For products: Check each coordinate function
- `z3_solve.py prove "preimage_open"`
2. **Open Set Verification**
- For metric spaces: for all x in U, exists epsilon > 0 with B(x,epsilon) subset U
- `z3_solve.py prove "ball_contained"` with epsilon witnesses
3. **Topological Properties**
- Interior: int(A) = largest open subset of A
- Closure: cl(A) = smallest closed superset of A
- Boundary: bd(A) = cl(A) \ int(A)
4. **Continuity Tests**
- Epsilon-delta: for all epsilon > 0, exists delta > 0: d(x,a) < delta implies d(f(x),f(a)) < epsilon
- `z3_solve.py prove "epsilon_delta_bound"`
## Tool Commands
### Z3_Preimage_Open
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "preimage_open"
```
### Z3_Epsilon_Delta
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "ForAll(eps, Exists(delta, d(x,a) < delta implies d(f(x),f(a)) < eps))"
```
### Z3_Ball_Contained
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "ball_contained"
```
## Key Techniques
*From indexed textbooks:*
- [Introduction to Topological Manifolds... (Z-Library)] Show that every local homeomorphism is an open map. Show that every homeomor...
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
open-sets
Problem-solving strategies for open sets 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