Zulip Chat Archive

Stream: new members

Topic: Applying to hypotheses


Ben Nale (Oct 03 2020 at 23:55):

Suppose I have a hypothesis h1:H and a proof that H --> P (called HtoP). How do I change h1 to P?
What I would do is have h2:P, exact HtoP h1,
There's got to be another way.

Thanks

Ben Nale (Oct 04 2020 at 00:01):

hmmm. I can just make a lemma thats an iff and do rw.

Ben Nale (Oct 04 2020 at 00:04):

example (H P: Prop) (h1: H) : H → P ↔ P:=

Kevin Buzzard (Oct 04 2020 at 00:10):

replace h1 := HtoP h1

Ben Nale (Oct 04 2020 at 00:10):

nice :) thanks

Bhavik Mehta (Oct 04 2020 at 00:11):

(deleted)

Ben Nale (Oct 04 2020 at 00:11):

Thanks


Last updated: Dec 20 2023 at 11:08 UTC