Zulip Chat Archive

Stream: general

Topic: list.take_subset and simp


Kevin Buzzard (Sep 18 2019 at 14:10):

I can't find take n l ⊆ l for lists, so I was going to add it; I found @[simp] lemma subset_append_left (l₁ l₂ : list α) : l₁ ⊆ l₁++l₂ := ... in core, and I was surprised to see it was a simp lemma. Am I right in thinking that my lemma is missing? Should it be a simp lemma too?


Last updated: Dec 20 2023 at 11:08 UTC