What's the command for unfolding a definition in the conclusion, but leaving things unchanged in the premises? Say converting
[| P x; Q x' |] ==> P x' to [| P x; Q x' |] ==> P's_def x' .
Thanks a lot,
Chengsong
You can use subst, if you need to do it multiple times apply (subst thms)+
Jan van Brügge said:
You can use
subst, if you need to do it multiple timesapply (subst thms)+
Thank you, Jan!
Last updated: Nov 13 2025 at 04:27 UTC