/-
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
open scoped Nat Group
namespace Kourovka.«19.25»
Let $G$ and $H$ be finite groups of the same order with $\sum_{g \in G} \phi(|g|) = \sum_{h \in H} \phi(|h|)$, where $\phi$ is the Euler totient function. Suppose that $G$ is simple. Is $H$ necessarily simple?
@[category research open, AMS 20]
theorem kourovka.«19.25» : answer(sorry) ↔
∀ (G H : Type) [Group G] [Group H] [Fintype G] [Fintype H],
∑ g : G, φ (orderOf g) = ∑ h : H, φ (orderOf h) →
IsSimpleGroup G → IsSimpleGroup H := ⊢ True ↔
∀ (G H : Type) [inst : Group G] [inst_1 : Group H] [inst_2 : Fintype G] [inst_3 : Fintype H],
∑ g, φ (orderOf g) = ∑ h, φ (orderOf h) → IsSimpleGroup G → IsSimpleGroup H
All goals completed! 🐙
end Kourovka.«19.25»