Radical ideals of rings

Content created by Jonathan Prieto-Cubides, Fredrik Bakke, Egbert Rijke and Maša Žaucer

Created on 2022-05-20.
Last modified on 2023-06-08.

module ring-theory.radical-ideals-rings where
Imports
open import foundation.propositions
open import foundation.universe-levels

open import ring-theory.ideals-rings
open import ring-theory.invertible-elements-rings
open import ring-theory.rings

Idea

A radical ideal in a ring R is an ideal I such that 1 + x is a multiplicative unit for every x ∈ I.

Definition

module _
  {l1 l2 : Level} (R : Ring l1) (I : ideal-Ring l2 R)
  where

  is-radical-ideal-ring-Prop : Prop (l1  l2)
  is-radical-ideal-ring-Prop =
    Π-Prop
      ( type-ideal-Ring R I)
      ( λ x 
        is-invertible-element-ring-Prop R
          ( add-Ring R (one-Ring R) (inclusion-ideal-Ring R I x)))

  is-radical-ideal-Ring : UU (l1  l2)
  is-radical-ideal-Ring =
    type-Prop is-radical-ideal-ring-Prop

  is-prop-is-radical-ideal-Ring :
    is-prop is-radical-ideal-Ring
  is-prop-is-radical-ideal-Ring =
    is-prop-type-Prop is-radical-ideal-ring-Prop

Recent changes