Commit 2026-03-06 15:35 1bb9634b

View on Github โ†’

feat(RingTheory): two constructions about base change and restriction of graded algebra (#36226) In the below, S is an R-algebra. First construction (๐’œ is a graded R-algebra, โ„ฌ is a graded S-algebra):

/-- A map from the base change of a graded algebra is the same as a map to the scalar restriction.
In category-theoretical terms, this is an adjunction between:
1. `๐’œ โ†ฆ (๐’œ ยท |>.baseChange S)`, a functor from Graded `R`-Algebra to Graded `S`-Algebra; and:
2. `โ„ฌ โ†ฆ (โ„ฌ ยท |>.restrictScalars R)`, a functor from Graded `S`-Algebra to Graded `R`-Algebra.
-/
GradedAlgHom.liftEquiv : (๐’œ โ†’โ‚แต[R] (โ„ฌ ยท |>.restrictScalars R)) โ‰ƒ
    ((๐’œ ยท |>.baseChange S) โ†’โ‚แต[S] โ„ฌ)

Second construction (๐’œ and โ„ฌ are graded S-algebras):

/-- Restrict the base ring to a "smaller" ring. -/
GradedAlgHom.restrictScalars (f : ๐’œ โ†’โ‚แต[S] โ„ฌ) :
    (๐’œ ยท |>.restrictScalars R) โ†’โ‚แต[R] (โ„ฌ ยท |>.restrictScalars R)

In categorical terms, the second construction is the functoriality of restriction (S-GAlg โฅค R-GAlg), and the first construction is the adjunction with base change (R-GAlg โฅค S-GAlg, by tensor product).

Estimated changes