我的目标如下。有什么策略可以解决这些琐碎的目标吗?
Goal forall A (x : A) P Q,
(forall y, P y /\ Q y) ->
Q x.
Proof.
intros. intuition. auto.
Abort.
(* a more complex version *)
Goal forall A (x : A) P Q R,
(forall y, R -> P y /\ Q y) ->
R ->
Q x.
Proof.
intros. intuition. auto.
Abort.发布于 2019-01-10 14:52:45
intuition的策略不起作用,因为该策略是为命题逻辑设计的(即,它不是forall y, R -> ...中的量词,还有另一种策略,称为firstorder。试试看!
https://stackoverflow.com/questions/54101672
复制相似问题