/- Copyright 2025 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

Exponentials conjectures and theorems

Reference: Wikipedia

open Complex namespace Exponentials

Four exponentials conjecture Let $x_0, x_1$ and $y_0, y_1$ be $\mathbb Q$-linearly independent pairs of complex numbers, then some $e^{x_i y_j}$ is transcendental.

@[category research open, AMS 33] theorem declaration uses 'sorry'four_exponentials_conjecture (x : Fin 2 ) (y : Fin 2 ) (h1 : LinearIndependent x) (h2 : LinearIndependent y) : i j : Fin 2, Transcendental (exp (x i * y j)) := x:Fin 2 y:Fin 2 h1:LinearIndependent xh2:LinearIndependent y i j, Transcendental (cexp (x i * y j)) All goals completed! 🐙

The four exponential conjecture would imply that for any irrational number $t$, at least one of the numbers $2^t$ and $3^t$ is transcendental.

@[category research open, AMS 11] theorem declaration uses 'sorry'two_pow_three_pow_transcendental (t : ) (h : Irrational t) : Transcendental (2 ^ t : ) Transcendental (3 ^ t : ) := t:h:Irrational tTranscendental (2 ^ t) Transcendental (3 ^ t) All goals completed! 🐙 end Exponentials