-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed48931
commit 1cb7ca5
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
Cubical/Algebra/CommRing/Instances/Polynomials/Typevariate/CommQuotient.agda
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,25 @@ | ||
{-# OPTIONS --safe #-} | ||
{- | ||
The goal of this module is to show that for a ring R, type I and ideal J there is an | ||
isomorphism of algebras | ||
(R/J)[I] ≃ R[I]/J | ||
-} | ||
module Cubical.Algebra.CommRing.Instances.Polynomials.Typevariate.CommQuotient where | ||
|
||
open import Cubical.Foundations.Prelude | ||
open import Cubical.Foundations.Function using (_∘_; _$_) | ||
open import Cubical.Foundations.Structure using (⟨_⟩) | ||
|
||
open import Cubical.Data.Sum as ⊎ | ||
open import Cubical.Data.Sigma | ||
|
||
open import Cubical.Algebra.CommRing | ||
open import Cubical.Algebra.CommRing.Quotient | ||
open import Cubical.Algebra.CommRing.Instances.Polynomials.Typevariate.Base | ||
open import Cubical.Algebra.CommRing.Instances.Polynomials.Typevariate.UniversalProperty | ||
|
||
private | ||
variable | ||
ℓ ℓ' : Level |