Skip to content

Commit

Permalink
feat(ring_theory/ideal/operations): annihilator_smul (#9151)
Browse files Browse the repository at this point in the history


Co-authored-by: Chris Hughes <chrishughes24@gmail.com>
  • Loading branch information
ChrisHughes24 and ChrisHughes24 committed Sep 12, 2021
1 parent f863703 commit 04d2b12
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/ring_theory/ideal/operations.lean
Expand Up @@ -113,6 +113,15 @@ smul_mono h (le_refl N)
theorem smul_mono_right (h : N ≤ P) : I • N ≤ I • P :=
smul_mono (le_refl I) h

@[simp] theorem annihilator_smul (N : submodule R M) : annihilator N • N = ⊥ :=
eq_bot_iff.2 (smul_le.2 (λ r, mem_annihilator.1))

@[simp] theorem annihilator_mul (I : ideal R) : annihilator I * I = ⊥ :=
annihilator_smul I

@[simp] theorem mul_annihilator (I : ideal R) : I * annihilator I = ⊥ :=
by rw [mul_comm, annihilator_mul]

variables (I J N P)
@[simp] theorem smul_bot : I • (⊥ : submodule R M) = ⊥ :=
eq_bot_iff.2 $ smul_le.2 $ λ r hri s hsb,
Expand Down

0 comments on commit 04d2b12

Please sign in to comment.