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

Conjecture 8.8

by R. I. Grigorchuk

Both parts of the problem are due to D. V. Anosov.

Reference: The Kourovka Notebook

namespace Kourovka.«8.8»

Does there exist a non-cyclic finitely-generated group $G$ containing an element $a$ such that every element of $G$ is conjugate to a power of $a$?

Here a power of $a$ means $a^n$ for some $n \in \mathbb{Z}$.

Answered affirmatively by V. S. Guba, Math. USSR-Izv. 29 (1986), 233–277.

@[category research solved, AMS 20] theorem kourovka_8_8a : answer(True) (G : Type) (_ : Group G), ¬ IsCyclic G Group.FG G a : G, g : G, n : , IsConj g (a ^ n) := True G x, ¬IsCyclic G Group.FG G a, (g : G), n, IsConj g (a ^ n) All goals completed! 🐙

Does there exist a non-cyclic finitely presented group $G$ which contains an element $a$ such that each element of $G$ is conjugate to some power of $a$?

Here a power of $a$ means $a^n$ for some $n \in \mathbb{Z}$.

@[category research open, AMS 20] theorem kourovka_8_8b : answer(sorry) (G : Type) (_ : Group G), ¬ IsCyclic G Group.IsFinitelyPresented G a : G, g : G, n : , IsConj g (a ^ n) := True G x, ¬IsCyclic G Group.IsFinitelyPresented G a, (g : G), n, IsConj g (a ^ n) All goals completed! 🐙end Kourovka.«8.8»