Zulip Chat Archive
Stream: new members
Topic: extracting information from hypothesis
Elias Fåkvam (Oct 01 2021 at 11:02):
Given the two hypotheses:
x: Z
h1: x ∈ {b : Z | ∃ (a : X), a ∈ S ∧ (g ∘ f) a = b}
I would like to extract the following hypothesis:
∃ (a : X), a ∈ S ∧ (g ∘ f) a = x
How can i do this?
Kevin Buzzard (Oct 01 2021 at 11:06):
cases h1 with a ha shows you that h1 is already this.
Kevin Buzzard (Oct 01 2021 at 11:07):
#mwe is best btw
Kevin Buzzard (Oct 01 2021 at 11:08):
Oh if you just want the existence statement, that is by definition h1 so you can just use change. Alternatively you can just pretend that h1 is what you want it to say. Can you write a #mwe? i.e. put in all the imports and the variables etc
Last updated: May 02 2025 at 03:31 UTC