Large function rings

Content created by Louis Wasserman.

Created on 2025-11-16.
Last modified on 2025-11-16.

module ring-theory.large-function-rings where
Imports
open import foundation.function-extensionality
open import foundation.universe-levels

open import group-theory.large-function-abelian-groups

open import ring-theory.large-rings

Idea

Given a large ring R and an arbitrary type A, A → R forms a large ring.

Definition

module _
  {l1 : Level}
  {α : Level  Level}
  {β : Level  Level  Level}
  (A : UU l1)
  (R : Large-Ring α β)
  where

  function-Large-Ring : Large-Ring  l  l1  α l)  l2 l3  l1  β l2 l3)
  large-ab-Large-Ring function-Large-Ring =
    function-Large-Ab A (large-ab-Large-Ring R)
  mul-Large-Ring function-Large-Ring f g a = mul-Large-Ring R (f a) (g a)
  preserves-sim-mul-Large-Ring function-Large-Ring f f' f~f' g g' g~g' a =
    preserves-sim-mul-Large-Ring R (f a) (f' a) (f~f' a) (g a) (g' a) (g~g' a)
  one-Large-Ring function-Large-Ring a = one-Large-Ring R
  associative-mul-Large-Ring function-Large-Ring f g h =
    eq-htpy  a  associative-mul-Large-Ring R (f a) (g a) (h a))
  left-unit-law-mul-Large-Ring function-Large-Ring f =
    eq-htpy  a  left-unit-law-mul-Large-Ring R (f a))
  right-unit-law-mul-Large-Ring function-Large-Ring f =
    eq-htpy  a  right-unit-law-mul-Large-Ring R (f a))
  left-distributive-mul-add-Large-Ring function-Large-Ring f g h =
    eq-htpy  a  left-distributive-mul-add-Large-Ring R (f a) (g a) (h a))
  right-distributive-mul-add-Large-Ring function-Large-Ring f g h =
    eq-htpy  a  right-distributive-mul-add-Large-Ring R (f a) (g a) (h a))

Recent changes