analytic-functions
SolidProblem-solving strategies for analytic functions in complex analysis
AI & Automation 496 stars
41 forks Updated 1 months ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Analytic Functions
## When to Use
Use this skill when working on analytic-functions problems in complex analysis.
## Decision Tree
1. **Is f analytic at z0?**
- Check Cauchy-Riemann equations: du/dx = dv/dy, du/dy = -dv/dx
- Check if f has power series expansion around z0
- Check if f is differentiable in neighborhood of z0
- `sympy_compute.py diff "u" --var x` and `sympy_compute.py diff "v" --var y`
2. **Cauchy-Riemann Verification**
- Write f(z) = u(x,y) + iv(x,y)
- Compute partial derivatives
- Verify: du/dx = dv/dy AND du/dy = -dv/dx
- `z3_solve.py prove "cauchy_riemann"`
3. **Power Series**
- f(z) = sum_{n=0}^{inf} a_n (z - z0)^n
- Radius of convergence: R = 1/limsup |a_n|^(1/n)
- `sympy_compute.py series "f(z)" --var z --at z0`
4. **Analytic Continuation**
- Extend f beyond original domain via power series
- Identity theorem: if f = g on set with limit point, then f = g everywhere
## Tool Commands
### Sympy_Diff_U
```bash
uv run python -m runtime.harness scripts/sympy_compute.py diff "u(x,y)" --var x
```
### Sympy_Diff_V
```bash
uv run python -m runtime.harness scripts/sympy_compute.py diff "v(x,y)" --var y
```
### Sympy_Series
```bash
uv run python -m runtime.harness scripts/sympy_compute.py series "exp(z)" --var z --at 0
```
### Z3_Cauchy_Riemann
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "diff(u,x) == diff(v,y)"
```
## Key Techniques
...
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 2 months ago
- Last Updated
- 1 months ago
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
analytic-functions
Problem-solving strategies for analytic functions in complex analysis
3,795 Updated 4 months ago
parcadei AI & Automation Solid
convergence
Problem-solving strategies for convergence in real analysis
496 Updated 1 months ago
vibeeval AI & Automation Solid
contour-integrals
Problem-solving strategies for contour integrals in complex analysis
496 Updated 1 months ago
vibeeval AI & Automation Solid
contour-integrals
Problem-solving strategies for contour integrals in complex analysis
3,795 Updated 4 months ago
parcadei AI & Automation Solid
hilbert-spaces
Problem-solving strategies for hilbert spaces in functional analysis
496 Updated 1 months ago
vibeeval