/- 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 FormalConjecturesUtil

Mathoverflow 17560

Reference: mathoverflow/17560 asked by user Alon-Amit

namespace Mathoverflow17560

If $2^x$ and $3^x$ are integers, then $x$ must be an integer.

@[category research open, AMS 11 13] theorem declaration uses 'sorry'mathoverflow_17560 {x : } (hx : m : , (2 : ) ^ x = m) (hx' : m : , (3 : ) ^ x = m) : m : , x = m := x:hx: m, 2 ^ x = mhx': m, 3 ^ x = m m, x = m All goals completed! 🐙

If for each natural number $n$ the number $n^x$ is an integer then $x$ must also be an integer.

@[category textbook, AMS 11 13] theorem declaration uses 'sorry'mathoverflow_17560.variants.all_nats {x : } (hx : n : , m : , (n : ) ^ x = m) : m : , x = m := x:hx: (n : ), m, n ^ x = m m, x = m All goals completed! 🐙

If $2^x$, $3^x$ and $5^x$ are integers, then $x$ must be an integer.

@[category textbook, AMS 11 13] theorem declaration uses 'sorry'mathoverflow_17560.variants.with_5 {x : } (hx : m : , (2 : ) ^ x = m) (hx' : m : , (3 : ) ^ x = m) (hx'' : m : , (5 : ) ^ x = m) : m : , x = m := x:hx: m, 2 ^ x = mhx': m, 3 ^ x = mhx'': m, 5 ^ x = m m, x = m All goals completed! 🐙end Mathoverflow17560-- TODO(Paul-Lez): add the implications