Commit 2024-11-13 07:59 5b7d4f67
View on Github →feat: some results on dimension of field adjoin (#18515)
In Mathlib/FieldTheory/Adjoin.lean
:
IntermediateField.rank_sup_le_of_isAlgebraic
: ifA
andB
are intermediate fields, and at least one them are algebraic, then the rank ofA ⊔ B
is less than or equal to the product of that ofA
andB
. (Note that this result is also true without algebraic assumption, but the proof becomes very complicated, and which is out of scope of this PR.)IntermediateField.finrank_sup_le
: ifA
andB
are intermediate fields, then theModule.finrank
ofA ⊔ B
is less than or equal to the product of that ofA
andB
. Move the resultSubalgebra.[fin]rank_sup_le_of_free
fromMathlib/LinearAlgebra/TensorProduct/Subalgebra.lean
to a new fileMathlib/RingTheory/Adjoin/Dimension.lean
, as their proofs don't use tensormulMap
anymore.