Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

Global and Local Pell Behavior

Abstract

A concrete Pell orbit is globally unbounded and locally pure-periodic.

Theorem 1.1 (A concrete Pell orbit is globally unbounded).

Proof. Machine-checked in Lean as D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.sqrt_three_pell_orbit_is_unbounded (✓ std3). ∎

Source. Repository-derived.

Commentary.

Take the multiplication matrix of 2 + sqrt(3) and start at the integral seed (1, 0). Its second coordinate is the standard Pell y-sequence from pinned Mathlib.

Mathlib’s lower bound n <= y_n supplies a coordinate above every prescribed natural bound, without a limit or a new induction proving growth.

Lemma 1.2 (The unit one orbit is a necessary degeneracy).

Proof. Machine-checked in Lean as D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.unit_one_pell_orbit_is_not_unbounded (✓ std3). ∎

Source. Repository-derived.

Commentary.

For unit coordinates (1, 0), the Pell multiplication matrix is the identity. Starting from the nonzero seed (1, 0) therefore gives a constant orbit, which is not unbounded.

Theorem 1.3 (Global growth and local cycles coexist).

Proof. Machine-checked in Lean as D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.global_unboundedness_and_prime_power_local_periodicity (✓ std3). ∎

Source. Repository-derived.

Commentary.

The first conjunct is the global unboundedness result for the single named integer matrix orbit.

For every prime p and exponent k, reduction of that same orbit modulo p^k is identified with the mapped matrix orbit. The existing local Pell periodicity theorem then gives a positive pure period, including p = 2 and k = 0.

References

  • Truth anchor: D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.global_unboundedness_and_prime_power_local_periodicity
  • Truth anchor: D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.sqrt_three_pell_orbit_is_unbounded
  • Truth anchor: D5/S3/PrimeForms/PellFamilies/GlobalPellUnboundedness.unit_one_pell_orbit_is_not_unbounded
  • Dependency: D5/S3/PrimeForms/PellFamilies/LocalPellPeriodicity