|
| 1 | +# Large commutative rings |
| 2 | + |
| 3 | +```agda |
| 4 | +module commutative-algebra.large-commutative-rings where |
| 5 | +``` |
| 6 | + |
| 7 | +<details><summary>Imports</summary> |
| 8 | + |
| 9 | +```agda |
| 10 | +open import commutative-algebra.commutative-rings |
| 11 | +
|
| 12 | +open import foundation.dependent-pair-types |
| 13 | +open import foundation.identity-types |
| 14 | +open import foundation.large-binary-relations |
| 15 | +open import foundation.large-similarity-relations |
| 16 | +open import foundation.sets |
| 17 | +open import foundation.universe-levels |
| 18 | +
|
| 19 | +open import group-theory.large-commutative-monoids |
| 20 | +
|
| 21 | +open import ring-theory.large-rings |
| 22 | +``` |
| 23 | + |
| 24 | +</details> |
| 25 | + |
| 26 | +## Idea |
| 27 | + |
| 28 | +A {{#concept "large commutative ring" Agda=Large-Commutative-Ring}} is a |
| 29 | +[large ring](ring-theory.large-rings.md) with a commutative multiplicative |
| 30 | +operation. |
| 31 | + |
| 32 | +## Definition |
| 33 | + |
| 34 | +```agda |
| 35 | +record Large-Commutative-Ring |
| 36 | + (α : Level → Level) (β : Level → Level → Level) : UUω where |
| 37 | +
|
| 38 | + constructor |
| 39 | + make-Large-Commutative-Ring |
| 40 | +
|
| 41 | + field |
| 42 | + large-ring-Large-Commutative-Ring : Large-Ring α β |
| 43 | +
|
| 44 | + type-Large-Commutative-Ring : (l : Level) → UU (α l) |
| 45 | + type-Large-Commutative-Ring = |
| 46 | + type-Large-Ring large-ring-Large-Commutative-Ring |
| 47 | +
|
| 48 | + set-Large-Commutative-Ring : (l : Level) → Set (α l) |
| 49 | + set-Large-Commutative-Ring = set-Large-Ring large-ring-Large-Commutative-Ring |
| 50 | +
|
| 51 | + add-Large-Commutative-Ring : |
| 52 | + {l1 l2 : Level} → |
| 53 | + type-Large-Commutative-Ring l1 → |
| 54 | + type-Large-Commutative-Ring l2 → |
| 55 | + type-Large-Commutative-Ring (l1 ⊔ l2) |
| 56 | + add-Large-Commutative-Ring = add-Large-Ring large-ring-Large-Commutative-Ring |
| 57 | +
|
| 58 | + zero-Large-Commutative-Ring : type-Large-Commutative-Ring lzero |
| 59 | + zero-Large-Commutative-Ring = |
| 60 | + zero-Large-Ring large-ring-Large-Commutative-Ring |
| 61 | +
|
| 62 | + sim-prop-Large-Commutative-Ring : |
| 63 | + Large-Relation-Prop β type-Large-Commutative-Ring |
| 64 | + sim-prop-Large-Commutative-Ring = |
| 65 | + sim-prop-Large-Ring large-ring-Large-Commutative-Ring |
| 66 | +
|
| 67 | + sim-Large-Commutative-Ring : Large-Relation β type-Large-Commutative-Ring |
| 68 | + sim-Large-Commutative-Ring = sim-Large-Ring large-ring-Large-Commutative-Ring |
| 69 | +
|
| 70 | + raise-Large-Commutative-Ring : |
| 71 | + {l1 : Level} (l2 : Level) (x : type-Large-Commutative-Ring l1) → |
| 72 | + type-Large-Commutative-Ring (l1 ⊔ l2) |
| 73 | + raise-Large-Commutative-Ring = |
| 74 | + raise-Large-Ring large-ring-Large-Commutative-Ring |
| 75 | +
|
| 76 | + mul-Large-Commutative-Ring : |
| 77 | + {l1 l2 : Level} → |
| 78 | + type-Large-Commutative-Ring l1 → |
| 79 | + type-Large-Commutative-Ring l2 → |
| 80 | + type-Large-Commutative-Ring (l1 ⊔ l2) |
| 81 | + mul-Large-Commutative-Ring = mul-Large-Ring large-ring-Large-Commutative-Ring |
| 82 | +
|
| 83 | + field |
| 84 | + commutative-mul-Large-Commutative-Ring : |
| 85 | + {l1 l2 : Level} → |
| 86 | + (a : type-Large-Commutative-Ring l1) → |
| 87 | + (b : type-Large-Commutative-Ring l2) → |
| 88 | + mul-Large-Commutative-Ring a b = mul-Large-Commutative-Ring b a |
| 89 | +
|
| 90 | +open Large-Commutative-Ring public |
| 91 | +``` |
| 92 | + |
| 93 | +## Properties |
| 94 | + |
| 95 | +### Small commutative rings from large commutative rings |
| 96 | + |
| 97 | +```agda |
| 98 | +module _ |
| 99 | + {α : Level → Level} {β : Level → Level → Level} |
| 100 | + (R : Large-Commutative-Ring α β) |
| 101 | + where |
| 102 | +
|
| 103 | + commutative-ring-Large-Commutative-Ring : (l : Level) → Commutative-Ring (α l) |
| 104 | + commutative-ring-Large-Commutative-Ring l = |
| 105 | + ( ring-Large-Ring (large-ring-Large-Commutative-Ring R) l , |
| 106 | + commutative-mul-Large-Commutative-Ring R) |
| 107 | +``` |
| 108 | + |
| 109 | +### The multiplicative large commutative monoid of a large commutative ring |
| 110 | + |
| 111 | +```agda |
| 112 | +module _ |
| 113 | + {α : Level → Level} {β : Level → Level → Level} |
| 114 | + (R : Large-Commutative-Ring α β) |
| 115 | + where |
| 116 | +
|
| 117 | + multiplicative-large-commutative-monoid-Large-Commutative-Ring : |
| 118 | + Large-Commutative-Monoid α β |
| 119 | + multiplicative-large-commutative-monoid-Large-Commutative-Ring = |
| 120 | + make-Large-Commutative-Monoid |
| 121 | + ( multiplicative-large-monoid-Large-Ring |
| 122 | + ( large-ring-Large-Commutative-Ring R)) |
| 123 | + ( commutative-mul-Large-Commutative-Ring R) |
| 124 | +``` |
0 commit comments