-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Algebra/Azumaya/Defs): Define Azumaya algebras (#20489)
Co-authored-by: Whysoserioushah <[email protected]> Co-authored-by: Jujian Zhang <[email protected]>
- Loading branch information
1 parent
5718270
commit e1f9f04
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/- | ||
Copyright (c) 2025 Yunzhou Xie. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Yunzhou Xie, Jujian Zhang | ||
-/ | ||
import Mathlib.Algebra.Module.Projective | ||
import Mathlib.RingTheory.Finiteness.Defs | ||
import Mathlib.RingTheory.TensorProduct.Basic | ||
|
||
/-! | ||
# Azumaya Algebras | ||
An Azumaya algebra over a commutative ring `R` is a finitely generated, projective | ||
and faithful R-algebra where the tensor product `A ⊗[R] Aᵐᵒᵖ` is isomorphic to the | ||
`R`-endomorphisms of A via the map `f : a ⊗ b ↦ (x ↦ a * x * b.unop)`. | ||
TODO : Add the three more definitions and prove they are equivalent: | ||
· There exists an `R`-algebra `B` such that `B ⊗[R] A` is Morita equivalent to `R`; | ||
· `Aᵐᵒᵖ ⊗[R] A` is Morita equivalent to `R`; | ||
· The center of `A` is `R` and `A` is a separable algebra. | ||
## Reference | ||
* [Benson Farb , R. Keith Dennis, *Noncommutative Algebra*][bensonfarb1993] | ||
## Tags | ||
Azumaya algebra, central simple algebra, noncommutative algebra | ||
-/ | ||
|
||
variable (R A : Type*) [CommSemiring R] [Semiring A] [Algebra R A] | ||
|
||
open TensorProduct MulOpposite | ||
|
||
/-- `A` as a `A ⊗[R] Aᵐᵒᵖ`-module (or equivalently, an `A`-`A` bimodule). -/ | ||
noncomputable abbrev instModuleTensorProductMop : | ||
Module (A ⊗[R] Aᵐᵒᵖ) A := TensorProduct.Algebra.module | ||
|
||
/-- The canonical map from `A ⊗[R] Aᵐᵒᵖ` to `Module.End R A` where | ||
`a ⊗ b` maps to `f : x ↦ a * x * b`. -/ | ||
noncomputable def AlgHom.mulLeftRight : (A ⊗[R] Aᵐᵒᵖ) →ₐ[R] Module.End R A := | ||
letI : Module (A ⊗[R] Aᵐᵒᵖ) A := TensorProduct.Algebra.module | ||
letI : IsScalarTower R (A ⊗[R] Aᵐᵒᵖ) A := { | ||
smul_assoc := fun r ab a ↦ by | ||
change TensorProduct.Algebra.moduleAux _ _ = _ • TensorProduct.Algebra.moduleAux _ _ | ||
simp } | ||
Algebra.lsmul R (A := A ⊗[R] Aᵐᵒᵖ) R A | ||
|
||
@[simp] | ||
lemma AlgHom.mulLeftRight_apply (a : A) (b : Aᵐᵒᵖ) (x : A) : | ||
AlgHom.mulLeftRight R A (a ⊗ₜ b) x = a * x * b.unop := by | ||
simp only [AlgHom.mulLeftRight, Algebra.lsmul_coe] | ||
change TensorProduct.Algebra.moduleAux _ _ = _ | ||
simp [TensorProduct.Algebra.moduleAux, ← mul_assoc] | ||
|
||
/-- An Azumaya algebra is a finitely generated, projective and faithful R-algebra where | ||
`AlgHom.mulLeftRight R A : (A ⊗[R] Aᵐᵒᵖ) →ₐ[R] Module.End R A` is an isomorphism. -/ | ||
class IsAzumaya extends Module.Projective R A, FaithfulSMul R A, Module.Finite R A : Prop where | ||
bij : Function.Bijective <| AlgHom.mulLeftRight R A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters