Skip to content

Commit

Permalink
feat(algebra/algebra/subalgebra): subalgebra.map commutes with supr…
Browse files Browse the repository at this point in the history
…emum (#10899)

This PR proves `(S ⊔ T).map f = S.map f ⊔ T.map f`.



Co-authored-by: tb65536 <tb65536@users.noreply.github.com>
  • Loading branch information
tb65536 and tb65536 committed Dec 19, 2021
1 parent 41ced1c commit 5dd3537
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/algebra/algebra/subalgebra.lean
Expand Up @@ -540,6 +540,9 @@ lemma mul_mem_sup {S T : subalgebra R A} {x y : A} (hx : x ∈ S) (hy : y ∈ T)
x * y ∈ S ⊔ T :=
(S ⊔ T).mul_mem (mem_sup_left hx) (mem_sup_right hy)

lemma map_sup (f : A →ₐ[R] B) (S T : subalgebra R A) : (S ⊔ T).map f = S.map f ⊔ T.map f :=
(subalgebra.gc_map_comap f).l_sup

@[simp, norm_cast]
lemma coe_inf (S T : subalgebra R A) : (↑(S ⊓ T) : set A) = S ∩ T := rfl

Expand Down

0 comments on commit 5dd3537

Please sign in to comment.