home / skills / plurigrid / asi / stable-manifold
This skill analyzes the stable manifold of dynamical systems to describe convergence to equilibria and informs long-term behavior and stability.
npx playbooks add skill plurigrid/asi --skill stable-manifoldReview the files below or copy the command above to add this skill to your agents.
---
name: stable-manifold
description: Manifold of points converging to equilibrium
trit: 0
geodesic: true
moebius: "μ(n) ≠ 0"
---
# Stable Manifold
**Trit**: 0 (ERGODIC)
**Domain**: Dynamical Systems Theory
**Principle**: Manifold of points converging to equilibrium
## Overview
Stable Manifold is a fundamental concept in dynamical systems theory, providing tools for understanding the qualitative behavior of differential equations and flows on manifolds.
## Mathematical Definition
```
STABLE_MANIFOLD: Phase space × Time → Phase space
```
## Key Properties
1. **Local behavior**: Analysis near equilibria and invariant sets
2. **Global structure**: Long-term dynamics and limit sets
3. **Bifurcations**: Parameter-dependent qualitative changes
4. **Stability**: Robustness under perturbation
## Integration with GF(3)
This skill participates in triadic composition:
- **Trit 0** (ERGODIC): Neutral/ergodic
- **Conservation**: Σ trits ≡ 0 (mod 3) across skill triplets
## AlgebraicDynamics.jl Connection
```julia
using AlgebraicDynamics
# Stable Manifold as compositional dynamical system
# Implements oapply for resource-sharing machines
```
## Related Skills
- equilibrium (trit 0)
- stability (trit +1)
- bifurcation (trit +1)
- attractor (trit +1)
- lyapunov-function (trit -1)
---
**Skill Name**: stable-manifold
**Type**: Dynamical Systems / Stable Manifold
**Trit**: 0 (ERGODIC)
**GF(3)**: Conserved in triplet composition
## Non-Backtracking Geodesic Qualification
**Condition**: μ(n) ≠ 0 (Möbius squarefree)
This skill is qualified for non-backtracking geodesic traversal:
1. **Prime Path**: No state revisited in skill invocation chain
2. **Möbius Filter**: Composite paths (backtracking) cancel via μ-inversion
3. **GF(3) Conservation**: Trit sum ≡ 0 (mod 3) across skill triplets
4. **Spectral Gap**: Ramanujan bound λ₂ ≤ 2√(k-1) for k-regular expansion
```
Geodesic Invariant:
∀ path P: backtrack(P) = ∅ ⟹ μ(|P|) ≠ 0
Möbius Inversion:
f(n) = Σ_{d|n} g(d) ⟹ g(n) = Σ_{d|n} μ(n/d) f(d)
```
This skill describes the stable manifold: the set of initial conditions whose trajectories converge to an equilibrium under a flow or map. It frames local and global behavior around invariant sets and links stability analysis with compositional constraints in a triadic GF(3) framework. The presentation emphasizes practical checks for convergence, bifurcation sensitivity, and non-backtracking traversal qualifications.
The skill inspects phase space structure near equilibria and computes or characterizes the manifold of points that asymptotically approach those equilibria. It highlights local linearization, invariant manifold theorems, and global limit-set relationships. It also encodes a modular composition rule (trit 0) used when combining skills in triplets, and provides non-backtracking/geodesic qualifications using Möbius filtering and spectral-gap criteria.
What does trit 0 (ERGODIC) mean here?
Trit 0 signals a neutral or ergodic role in compositional rules; when combined in triplets it preserves a GF(3) conservation law (sum ≡ 0 mod 3).
How does the Möbius filter apply to paths?
Composite or backtracking paths cancel via Möbius inversion: only squarefree path lengths (μ(n) ≠ 0) survive the filter, enforcing a non-backtracking prime-path criterion.