Zulip Chat Archive

Stream: Is there code for X?

Topic: Pullback well-foundedness


Yaël Dillies (Jun 17 2022 at 16:26):

Do we have this? Maybe it requires f injective.

variables {α β : Type*}

/-- Pullback well-foundedness. -/
protected lemma well_founded.inv_image {r : β  β  Prop} (f : α  β) (h : well_founded r) :
  well_founded (inv_image r f) := sorry

Chris Bailey (Jun 17 2022 at 16:37):

Is this docs#inv_image.wf

Yaël Dillies (Jun 17 2022 at 17:13):

Yep, thanks!


Last updated: Dec 20 2023 at 11:08 UTC