-
Notifications
You must be signed in to change notification settings - Fork 279
add problems from book: Bugeaud, Distribution Modulo One and Diophant… #3799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
26d16f2
add problems from book: Bugeaud, Distribution Modulo One and Diophant…
rwst 956252f
typos
rwst 30aca2c
Problem 3 attribution
rwst f401416
Update FormalConjectures/Books/BugeaudDistributionsModuloOne/IntDista…
rwst f506cb2
address reviewer's comments
rwst 81ec6ce
Merge branch 'main' into bugeaud01
Paul-Lez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
83 changes: 83 additions & 0 deletions
83
FormalConjectures/Books/BugeaudDistributionsModuloOne/IntDistanceDistribution.lean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| /- | ||
| Copyright 2026 The Formal Conjectures Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| https://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| -/ | ||
|
|
||
| import FormalConjectures.Util.ProblemImports | ||
| /-! | ||
| # Bugeaud Collection of Conjectures and Open Questions: Fractional Parts of Powers | ||
|
|
||
| Chapter 10 of the book collects open questions. This file formalizes Problems 10.1, | ||
| 10.2, 10.3 and the unnumbered conjecture by Waldschmidt. | ||
|
|
||
| *References:* | ||
| - [Bug12] Bugeaud, Yann. "Distribution modulo one and Diophantine approximation." | ||
| Vol. 193. Cambridge University Press, 2012. Chapter 10. | ||
| - [Har19] Hardy, Gr H. "A problem of Diophantine approximation." | ||
| J. Indian Math. Soc 11 (1919): 162-166. | ||
| - [Kok45] Koksma, J. F. "Sur la théorie métrique des approximations diophantiques." | ||
| Indag. Math 7 (1945): 54-70. | ||
| - [Mah53] Mahler, Kurt. "On the approximation of logarithms of algebraic numbers." | ||
| Philosophical Transactions of the Royal Society of London. Series A, | ||
| Mathematical and Physical Sciences 245.898 (1953): 371-398. | ||
| - [Wal03](http://webusers.imj-prg.fr/~michel.waldschmidt/articles/pdf/Cetraro.pdf) | ||
| Waldschmidt, Michel. "Linear independence measures for logarithms of algebraic numbers." | ||
| Diophantine Approximation: Lectures given at the CIME Summer School held in Cetraro, Italy, | ||
| June 28–July 6, 2000. Berlin, Heidelberg: Springer Berlin Heidelberg, 2003. 249-344. | ||
| -/ | ||
|
|
||
| namespace Bugeaud | ||
|
|
||
| noncomputable def nearestInt (x : ℝ) : ℝ := ‖(x : UnitAddCircle)‖ | ||
|
|
||
| /-- | ||
| Problem 10.1. Are there a transcendental number $\alpha$ and a positive real | ||
| number $\xi$ such that $\lVert \xi \alpha^n \rVert$ tends to~$0$ as~$n$ tends to infinity? [Har19] | ||
| (Trivial for $|\alpha| < 1$). | ||
|
rwst marked this conversation as resolved.
Outdated
|
||
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem problem_10_1 : answer(sorry) ↔ | ||
| ∃ (α ξ : ℝ), 1 < α ∧ Transcendental ℚ α ∧ 0 < ξ ∧ | ||
|
rwst marked this conversation as resolved.
Outdated
|
||
| Filter.Tendsto (fun n : ℕ ↦ nearestInt (ξ * α ^ n)) Filter.atTop (nhds 0) := by | ||
| sorry | ||
|
|
||
| /-- | ||
| Problem 10.2. To prove that $\lVert e^n \rVert$ does not tend to 0 as n tends to | ||
| infinity. | ||
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem problem_10_2 : | ||
| ¬ Filter.Tendsto (fun n : ℕ ↦ nearestInt (Real.exp n)) Filter.atTop (nhds 0) := by | ||
| sorry | ||
|
|
||
| /-- | ||
| Problem 10.3. To prove that there exists a positive real number~$c$ such | ||
| that $\lVert e^n \rVert > e^{−cn}$, for every~$n \ge 1$. Posed by Mahler [Mah53]. | ||
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem problem_10_3 : | ||
| ∃ c : ℝ, 0 < c ∧ ∀ n : ℕ, 1 ≤ n → Real.exp (-c * n) < nearestInt (Real.exp n) := by | ||
| sorry | ||
|
|
||
| /-- | ||
| Waldschmidt [Wal02] conjectured that a stronger result holds, namely | ||
|
rwst marked this conversation as resolved.
Outdated
rwst marked this conversation as resolved.
Outdated
|
||
| that there exists a positive real number~$c$ such that $\lVert e^n \rVert > n^{−c}$ for | ||
| every~$n \ge 1$. This is supported by metrical results [Kok45]. | ||
| -/ | ||
| @[category research open, AMS 11] | ||
| theorem waldschmidt : | ||
| ∃ c : ℝ, 0 < c ∧ ∀ n : ℕ, 1 ≤ n → (n : ℝ) ^ (-c) < nearestInt (Real.exp n) := by | ||
| sorry | ||
|
|
||
| end Bugeaud | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.