---
© 2015-2026 Wesley Long & Daisy Hope. All rights reserved.
Synergy Research — FairMind DNA
License: CC BY-SA 4.0
Originality: 95% — Original notation; formalizes the Syπ inverse algebra
---

# Syπ Notation Sheet
## Complete Inverse Algebra for the Syπ Equation

**Wesley Long — Synergy Research**

---

## 1. Base Syπ Structure

$$\Pi(n) = \frac{A}{Bn + C}$$

The inverse with respect to $n$ is:

$$\Pi_x(v) = \frac{A - Cv}{Bv}$$

and the split form is:

$$\Pi_x(v) = \frac{A}{Bv} - \frac{C}{B}$$

So the core pair is:

$$\boxed{\Pi(n) = \frac{A}{Bn + C}} \qquad\Longleftrightarrow\qquad \boxed{\Pi_x(v) = \frac{A - Cv}{Bv}}$$

---

## 2. Specific Syπ Equation

$$\Pi(n) = \frac{3{,}940{,}245{,}000{,}000}{2{,}217{,}131\,n + 1{,}253{,}859{,}750{,}000}$$

The inverse is:

$$\Pi_x(v) = \frac{3{,}940{,}245{,}000{,}000 - 1{,}253{,}859{,}750{,}000\,v}{2{,}217{,}131\,v}$$

which is also:

$$\Pi_x(v) = \frac{20{,}250{,}000\,(194{,}580 - 61{,}919\,v)}{2{,}217{,}131\,v}$$

---

## 3. Generalized Denominator Form

$$\Pi(a, b, c, d) = \frac{a}{bc + d}$$

You only get an inverse after choosing the unknown. In compact Syπ notation:

$$\boxed{\Pi_c(v) = \frac{a - dv}{bv}}$$

$$\boxed{\Pi_b(v) = \frac{a - dv}{cv}}$$

$$\boxed{\Pi_d(v) = \frac{a}{v} - bc}$$

$$\boxed{\Pi_a(v) = v(bc + d)}$$

---

## 4. Universal Inverse Pattern

$$\Pi(z) = \frac{a}{mz + n} \qquad\Longleftrightarrow\qquad \Pi_z(v) = \frac{a - nv}{mv}$$

That is the universal inverse pattern. Same machine, different label on the unknown.

---

## 5. Clean Symbolic Set

$$\boxed{\Pi(n) = \frac{A}{Bn + C}}$$

$$\boxed{\Pi_x(v) = \frac{A - Cv}{Bv}}$$

$$\boxed{\Pi(b, c, d) = \frac{a}{bc + d}}$$

$$\boxed{\Pi_c(v) = \frac{a - dv}{bv}}$$

$$\boxed{\Pi_b(v) = \frac{a - dv}{cv}}$$

$$\boxed{\Pi_d(v) = \frac{a}{v} - bc}$$

$$\boxed{\Pi_a(v) = v(bc + d)}$$

This is the clean symbolic set behind the form shown in the slides and the `PI` / `Px` functions in `js/ssm.js`.

---

## 6. Mathematical Classification

The Syπ equation is a specific instance of the classical rational form $f(x) = \frac{a}{bx + c}$, equivalently a special case of a linear fractional (Möbius) transformation. This classification appears to be retrospective rather than intentional. The equation was not introduced as an application of Möbius-transform theory, but arose in the process of addressing a geometric problem involving tangent-circle configurations: namely, replacing the standard single-circle $C/r = 2\pi$ framing with a construction that solves for an additional radius or radial offset across variable multi-circle contact arrangements. Thus, the mathematical form is standard, while its naming, constant selection, and interpretive use as the Syπ equation are specific to the Synergy framework.

> **Slide caption:** The Syπ equation is mathematically recognizable as a linear fractional rational form, $f(x) = \frac{a}{bx + c}$. This was not the design premise. The form emerged while solving a tangent-circle radius problem that reframed $\pi$ from a single-circle ratio into a variable multi-position geometry. Its mathematical family is classical; its application here is custom.

---

## 7. Implementation Reference

```javascript
// Syπ Equation — Π(n)
PI(n = 162) {
    return 3940245000000 / ((2217131 * n) + 1253859750000);
}

// Syπ Position Equation — Πx(v)
Px(n = 1) {
    return 20250000 * (194580 - (61919 * n)) / (2217131 * n);
}
```

The roundtrip identity holds at float64 precision:

$$\Pi(\Pi_x(v)) = v$$

---

*Synergy Standard Model v2.0 — © 2015–2026 Synergy Research. All rights reserved.*
