Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Erdős-Straus Conjecture — Lean 4 Small-n Formalization + Infinite Mod-4 Family

This article is a re-publication of Rei-AIOS Paper 117 for the dev.to community. The canonical version with full reference list is in the permanent archives below: Zenodo (DOI, canonical):…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

This article is a re-publication of Rei-AIOS Paper 117 for the dev.to community.

The canonical version with full reference list is in the permanent archives below:






Authors: Nobuki Fujimoto (ORCID 0009-0004-6019-9258), Claude Code (Lean 4 formalization)

Date: 2026-04-19

Status: DRAFT — partial formalization. Not a proof of the full conjecture.

License: CC-BY-4.0

Repository: fc0web/rei-aios

Key file: data/lean4-mathlib/CollatzRei/ErdosStraus.lean (22 theorems, 0 sorry)

Related: Paper 109 (S-category Ricci-flow attack, 2026-04-17).







Abstract



The Erdős-Straus conjecture (1948) states that for every integer n ≥ 2 there exist positive integers a, b, c with 4/n = 1/a + 1/b + 1/c. It is empirically verified for n < 10^17 (Salez and others) and closed for many residue classes, but remains open in full generality. We provide a Lean 4 Mathlib-native formalization with 22 zero-sorry theorems: explicit witnesses for all n ∈ [2, 20] found by brute-force search and verified via decide, plus a structural infinite family showing every multiple of 4 is solvable via the triple (3k, 3k, 3k) at n = 4k.



The implementation uses the integer-arithmetic form 4·a·b·c = n·(b·c + a·c + a·b) which is decidable, and an interval_cases aggregate derives solvability uniformly for n ∈ [2, 20]. Extending to arbitrary n requires the classical mod-residue-class analysis (Mordell, Terzi, Elsholtz) which is not re-formalized here.



Keywords: Erdős-Straus, unit fractions, Lean 4, Mathlib, formal verification.





1. Background





1.1 Statement



Erdős and Straus (1948) asked: is it true that for every n ≥ 2 there are positive integers a ≤ b ≤ c with 4/n = 1/a + 1/b + 1/c?





1.2 Clearing denominators



Multiplying through:



4 a b c = n (b c + a c + a b)



This is a pure integer identity and is the form we formalize.





1.3 Known partial results




  • Empirically verified for n < 10^17.

  • Completely handled for n ≡ 0, 1, 2, 3, 4, 5, 8, 11 (mod 840) — Mordell 1969 + Terzi 1971.

  • Open residue classes: {1, 121, 169, 289, 361, 529} (mod 840) when combined with additional obstructions.

  • Elsholtz-Tao (2013) showed the number of representations is unbounded for certain sparse n.





1.4 Paper 109 background (Rei 2026-04-17)



Paper 109 applied the Rei-AIOS Ricci-flow 3-category taxonomy and found that 84.3% of classifiable small n fall into Category S (stable). This paper formalizes the complementary direction: explicit Lean 4 witnesses at the small-n frontier.





2. Lean 4 formalization



File: data/lean4-mathlib/CollatzRei/ErdosStraus.lean. 22 theorems, 0 sorry, Mathlib v4.27.0.





2.1 Predicate





def erdosStraus (n a b c : Nat) : Prop :=
0 < a 0 < b 0 < c
4 * a * b * c = n * (b * c + a * c + a * b)

def erdosStrausSolvable (n : Nat) : Prop :=
a b c : Nat, erdosStraus n a b c





Both are decidable (Mathlib infrastructure).





2.2 Explicit witnesses for n = 2..20



Found by brute-force search (smallest a, then smallest b, c):




















































































































































n a b c 4abc = n(bc+ac+ab) check
2 1 2 2 16 = 16 ✓
3 1 4 12 192 = 192 ✓
4 2 3 6 144 = 144 ✓
5 2 4 20 640 = 640 ✓
6 2 7 42 2352 = 2352 ✓
7 2 15 210 25200 = 25200 ✓
8 3 7 42 3528 = 3528 ✓
9 3 10 90 10800 = 10800 ✓
10 3 16 240 46080 = 46080 ✓
11 3 34 1122 457776 = 457776 ✓
12 4 13 156 32448 = 32448 ✓
13 4 18 468 134784 = 134784 ✓
14 4 29 812 376768 = 376768 ✓
15 4 63 1260 1270080 = 1270080 ✓
16 5 21 420 176400 = 176400 ✓
17 5 30 510 306000 = 306000 ✓
18 5 48 720 691200 = 691200 ✓
19 5 114 570 1299600 = 1299600 ✓
20 6 31 930 692160 = 692160 ✓


All verified by decide in Lean 4.





2.3 Aggregate theorem





theorem es_small_solvable :
n : Nat, 2 n n 20 erdosStrausSolvable n





Proof: interval_cases n + per-case explicit triple. Elementary.





2.4 Structural infinite family



For multiples of 4, the universal triple is (3k, 3k, 3k):




theorem es_four_k (k : Nat) (hk : 1  k) :
erdosStraus (4 * k) (3 * k) (3 * k) (3 * k)

theorem es_solvable_mul_four (k : Nat) (hk : 1 k) :
erdosStrausSolvable (4 * k)






Verification: 4·(3k)³ = 108k³ = 4k·27k² = 4k·(3k·3k + 3k·3k + 3k·3k). Proved by ring.



This closes all multiples of 4 ≥ 4 (i.e., n ∈ {4, 8, 12, 16, 20, ...}) with a single uniform witness.






3. Summary theorem






theorem ErdosStraus_summary :
( n : Nat, 2 n n 20 erdosStrausSolvable n)
( k : Nat, 1 k erdosStrausSolvable (4 * k))






Combined coverage:




  • All n ∈ [2, 20] individually verified.

  • All multiples of 4 (≥ 4) uniformly solvable via one triple.






4. Scope and limitations






What this paper does




  1. 22 zero-sorry theorems: 19 explicit cases + aggregate + structural family + summary.

  2. Mathlib v4.27.0 native.

  3. Small-case "frontier" (n ≤ 20) concrete and machine-checkable.

  4. Proves an infinite class (multiples of 4) uniformly.






What this paper does not




  1. Does NOT prove the full conjecture. Open n residue classes remain (e.g., n ≡ 1 (mod 840) combined with specific constraints).

  2. Does NOT re-prove the Mordell/Terzi residue-class coverage — this would need a much larger formalization.

  3. Does NOT give new number-theoretic progress. The contribution is Lean 4 formalization, not new math.






Honest claim



This is an elementary Lean 4 snapshot of the small-n frontier plus one universal family. The Mathlib community does not currently have a coherent-sieve or residue-class-coverage library for Erdős-Straus-style partial results, which is why this paper stops at (2) above.






5. Connection to Paper 109



Paper 109 (2026-04-17) applied discrete Ollivier-Ricci flow to Erdős-Straus partition graphs and classified 84.3% of classifiable n as Category S. Paper 117 (present) provides the complementary direction: formal witnesses rather than flow-category labels.






6. Reproducibility





  • data/lean4-mathlib/CollatzRei/ErdosStraus.lean


    • Build: cd data/lean4-mathlib && lake build CollatzRei.ErdosStraus

    • 22 theorems, 0 sorry, ~48s to build (interval_cases + ring elaboration)






  • Brute-force witness search: tmp/find-erdos-straus.ts (removed post-verification; triples are embedded in the Lean file)







7. Future work





  1. Extended witness table for n = 21..100 via compiled routine.


  2. Residue-class coverage proof for n ≡ 0, 1, 2, 3, 4, 5, 8, 11 (mod 840) — requires substantial Mathlib modular-arithmetic development.


  3. Integration with Paper 109 Ricci-flow: classify each of the 19 cases by Category S/M/E.


  4. Paper 118 candidate: Erdős-Straus vs Collatz structural comparison (via Ricci-flow signatures).






Paper 117 draft prepared 2026-04-19 by Claude Code under Nobuki Fujimoto's direction. This is an elementary formalization paper; the full conjecture remains open. Rei-AIOS research programme.

IoC Intelligence (1 Indikatoren)
dev[.]to
CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
IR-PLAYBOOK-RCE
HIGH
SOC Incident Playbook: Remote Code Execution (RCE) Defense
1-Click Detection Engineering: Sigma & YARA Rules
SOC Ready
title: Detect Exploitation - Erdős-Straus Conjecture — Lean 4 Small-n Formalization + Infinite Mod-4 Family
id: 59f52a9c-9f70-4353-ab42-bb2304407044
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-23
logsource:
  category: network_connection
  product: any
detection:
  selection:
      DestinationHostname:
        - 'dev.to'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-23"
        description = "YARA Signature for "
    strings:
        $str = "Erdős-Straus Conjecture — Lean" ascii wide
    condition:
        any of them
}
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Erdős-Straus Conjecture — Lean 4 Small-n Formalization + Infinite Mod-4 Family

Thematisch verwandte Begriffe: ErdősStraus, Conjecture, Lean, Smalln · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-90904 | Joomla Extension - joomshaper.com - Broken Access Control (ACL Bypass) i…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick