---
© 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 Feyn-Wolfgang inverse algebra
---

# Feyn-Wolfgang Notation Sheet
## Complete Inverse Algebra for the Feyn-Wolfgang Coupling Equation

**Wesley Long — Synergy Research**

---

## 1. Base Structure

$$\mathrm{Fe}(n) = \frac{1}{a(a+1)} \qquad\text{with}\qquad a = n + k$$

where

$$k = \frac{1084554109}{5000000000} = 0.2169108218$$

In direct form:

$$\boxed{\mathrm{Fe}(n) = \frac{1}{(n+k)(n+k+1)}}$$

---

## 2. Algebraic Skeleton

Substitute $m = n + k$:

$$\mathrm{Fe}(n) = \frac{1}{m(m+1)}$$

This is the **reciprocal of the product of two consecutive terms** — a well-known classical structure. It expands to a quadratic denominator:

$$f(x) = \frac{1}{(x+c)^2 + (x+c)}$$

So $\mathrm{Fe}(n)$ belongs to the family of **quadratic rational functions**, not linear fractional (Möbius) like Syπ.

---

## 3. Partial Fraction Decomposition

The core form admits the standard telescoping identity:

$$\frac{1}{m(m+1)} = \frac{1}{m} - \frac{1}{m+1}$$

This is the hidden engine of the form. It shows that $\mathrm{Fe}(n)$ is a shifted version of a classical telescoping rational expression, directly adjacent to triangular-number algebra.

---

## 4. The Inverse — Fi(v)

Start with:

$$v = \frac{1}{(n+k)(n+k+1)}$$

Let $m = n + k$:

$$v = \frac{1}{m(m+1)}$$

Invert:

$$m(m+1) = \frac{1}{v}$$

Quadratic in $m$:

$$m^2 + m - \frac{1}{v} = 0$$

Quadratic formula (positive branch):

$$m = \frac{\sqrt{1 + \frac{4}{v}} - 1}{2}$$

Substitute back ($n = m - k$):

$$\boxed{\mathrm{Fi}(v) = \frac{\sqrt{1 + 4/v} - 1}{2} - k}$$

With the constant inserted:

$$\mathrm{Fi}(v) = \frac{\sqrt{1 + \frac{4}{v}} - 1}{2} - \frac{1084554109}{5000000000}$$

---

## 5. The Pair

$$\boxed{\mathrm{Fe}(n) = \frac{1}{(n+k)(n+k+1)}} \qquad\Longleftrightarrow\qquad \boxed{\mathrm{Fi}(v) = \frac{\sqrt{1+4/v}-1}{2} - k}$$

The roundtrip identity holds at float64 precision:

$$\mathrm{Fe}(\mathrm{Fi}(v)) = v$$

---

## 6. Mathematical Classification

The simplified Feyn-Wolfgang coupling equation,

$$\mathrm{Fe}(n) = \frac{1}{(n+k)(n+k+1)}, \qquad k = 0.2169108218,$$

is a shifted quadratic rational function. In normalized form, it is a translated instance of the classical reciprocal-consecutive-product expression $1/[x(x+1)]$, which also admits the partial-fraction decomposition

$$\frac{1}{x(x+1)} = \frac{1}{x} - \frac{1}{x+1}.$$

Its inverse is obtained by solving a quadratic, yielding

$$\mathrm{Fi}(v) = \frac{\sqrt{1+4/v}-1}{2} - k.$$

Thus, as with the Syπ equation, the mathematical family is classical, while the specific constant choice and interpretive role are particular to the Synergy framework.

> **Slide caption:** $\mathrm{Fe}(n)$ is not a Möbius form like Syπ; it is a shifted reciprocal quadratic of the classical type $1/[x(x+1)]$. Its inverse follows directly from the quadratic formula. The structure is standard; the offset constant and application are custom.

---

## 7. Comparison with Syπ

| Property | Syπ — $\Pi(n)$ | Feyn-Wolfgang — $\mathrm{Fe}(n)$ |
|---|---|---|
| **Form** | $a/(bx+c)$ | $1/[(x+c)(x+c+1)]$ |
| **Family** | Linear fractional (Möbius) | Quadratic rational |
| **Denominator degree** | 1 | 2 |
| **Inverse method** | Linear algebra | Quadratic formula |
| **Partial fractions** | Already irreducible | $1/m - 1/(m+1)$ (telescoping) |
| **Adjacent classical structure** | Möbius transformations | Triangular numbers |
| **Custom part** | Constants A, B, C | Offset constant $k$ |
| **Classification** | Retrospective | Retrospective |

Both equations: classical form, custom constants, retrospective classification.

---

## 8. The Offset Constant k

$$k = \frac{1084554109}{5000000000} = 0.2169108218$$

In the full (non-simplified) form, $k$ is not a literal but is derived from the geometric chain:

$$k = \sqrt{m_x} - 1$$

where $m_x$ comes from the Quadrian angle construction:

$$m_x = \sqrt{2} + \frac{1}{\sqrt{(15^2 + \frac{1}{\sqrt{(n+5) \times 20 - 1/20}})}}$$

evaluated at $n = 11$. The simplified Fe(n) freezes this to the decimal literal for performance; the full Fw(n) recomputes it from geometry.

See `js/ssm.js`: `Fe(n)` uses the literal, `Fw(n)` uses the full chain.

---

## 9. Implementation Reference

```javascript
// Feyn-Wolfgang Coupling (Simplified) — Fe(n)
Fe(n = 11) {
    let a = n + (1084554109 / 5000000000);
    return 1 / (a * (a + 1));
}

// Feyn-Wolfgang Coupling (Full Geometric Chain) — Fw(n)
Fw(n = 11) {
    let mx = Math.sqrt(2) + (1 / Math.sqrt(((15) ** 2) +
        (1 / Math.sqrt(((n + 5) * 20) - (1 / 20)))));
    let a = n + (Math.sqrt(mx) - 1);
    return 1 / (a * (a + 1));
}

// Feyn-Wolfgang Inverse — Fi(v)
Fi(n = 1) {
    return ((Math.sqrt(1 + (4 / n)) - 1) / 2) - (1084554109 / 5000000000);
}
```

Key values:

| Input | Output | Physical meaning |
|---|---|---|
| Fe(11) | 0.007297352563... | Fine-structure constant α |
| 1/Fe(11) | 137.035999206... | Inverse fine-structure constant |
| Fi(Fe(11)) | 11.0000000000... | Roundtrip identity |

---

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