Every finite division ring is commutative
Wedderburn's little theorem. The striking part is the hypothesis: pure finiteness. Commutativity is assumed nowhere and falls out anyway.
import Mathlib
theorem finite_division_ring_comm (D : Type*) [DivisionRing D] [Finite D] (a b : D) :
a * b = b * a :=
(littleWedderburn D).mul_comm a b
∎ verified by the kernel8469 ms
No comments yet.