Definition of Brauer group of a field K #
We introduce the definition of Brauer group of a field K, which is the quotient of the set of
all finite-dimensional central simple algebras over K modulo the Brauer Equivalence where two
central simple algebras A
and B
are Brauer Equivalent if there exist n, m ∈ ℕ+
such
that Mₙ(A) ≃ₐ[K] Mₘ(B)
.
TODOs #
- Prove that the Brauer group is an abelian group where multiplication is defined as tensor product.
- Prove that the Brauer group is a functor from the category of fields to the category of groups.
- Prove that over a field, being Brauer equivalent is the same as being Morita equivalent.
References #
- [Algebraic Number Theory, J.W.S Cassels][cassels1967algebraic]
Tags #
Brauer group, Central simple algebra, Galois Cohomology
CSA
is the set of all finite dimensional central simple algebras over field K
, for its
generalisation over a CommRing
please find IsAzumaya
in Mathlib/Algebra/Azumaya/Defs.lean
.
- isCentral : Algebra.IsCentral K ↑self.toAlgCat
Any member of
CSA
is central. - isSimple : IsSimpleRing ↑self.toAlgCat
Any member of
CSA
is simple. - fin_dim : FiniteDimensional K ↑self.toAlgCat
Any member of
CSA
is finite-dimensional.
Instances For
theorem
IsBrauerEquivalent.symm
{K : Type u}
[Field K]
{A : CSA K}
{B : CSA K}
(h : IsBrauerEquivalent A B)
:
theorem
IsBrauerEquivalent.trans
{K : Type u}
[Field K]
{A : CSA K}
{B : CSA K}
{C : CSA K}
(hAB : IsBrauerEquivalent A B)
(hBC : IsBrauerEquivalent B C)
:
@[reducible, inline]
BrauerGroup
is the set of all finite-dimensional central simple algebras quotient
by Brauer Equivalence.