我正在尝试使用Coq在正则表达式(RE)上形式化一些属性。但是,我有一些麻烦来证明一个相当简单的财产:
对于所有字符串s,如果s的语言为(epsilon)* RE,则s = “”,其中epsilon和*表示空字符串RE和Kleene星 操作
这似乎是归纳/反演策略的明显应用,但我无法使其发挥作用。
带有问题引理的最小工作代码位于以下gist。 关于我应该如何进行的任何提示将不胜感激。
修改:
我的一次尝试是这样的:
Lemma star_lemma : forall s, s <<- (#1 ^*) -> s = "".
Proof.
intros s H.
inverts* H.
inverts* H2.
inverts* H1.
inverts* H1.
inverts* H2.
simpl in *.
-- stuck here
让我有以下目标:
s' : string
H4 : s' <<- (#1 ^*)
============================
s' = ""
至少在我看来,使用感应会完成证明,因为我可以在感应假设中使用H4来完成证明,但是当我使用
开始证明时induction H
而不是
inverts* H
我得到了一些(至少对我而言)毫无意义的目标。在Idris / Agda中,这种证明紧跟在s&lt; - (#1 ^ *)的结构上的模式匹配和递归之后。我的观点是如何在Coq中进行这样的递归。
答案 0 :(得分:3)
我修改了in_regex
谓词的定义:
Inductive in_regex : string -> regex -> Prop :=
| InEps
: "" <<- #1
| InChr
: forall c
, (String c EmptyString) <<- ($ c)
| InCat
: forall e e' s s' s1
, s <<- e
-> s' <<- e'
-> s1 = s ++ s'
-> s1 <<- (e @ e')
| InLeft
: forall s e e'
, s <<- e
-> s <<- (e :+: e')
| InRight
: forall s' e e'
, s' <<- e'
-> s' <<- (e :+: e')
| InStarLeft
: forall e
, "" <<- (e ^*)
| InStarRight
: forall s s' e
, s <<- e
-> s' <<- (e ^*)
-> (s ++ s') <<- (e ^*)
where "s '<<-' e" := (in_regex s e).
并且可以证明你的引理:
Lemma star_lemma : forall s, s <<- (#1 ^*) -> s = "".
Proof.
intros s H.
remember (#1 ^*) as r.
induction H; inversion Heqr; clear Heqr; trivial.
subst e.
rewrite IHin_regex2; trivial.
inversion H; trivial.
Qed.
有些解释是必要的。
答案 1 :(得分:3)
以下是原始问题的一种可能解决方案:
Lemma star_lemma : forall s,
s <<- (#1 ^*) -> s = "".
Proof.
refine (fix star_lemma s prf {struct prf} : s = "" := _).
inversion_clear prf; subst.
inversion_clear H; subst.
- now inversion H0.
- inversion_clear H0; subst. inversion_clear H; subst.
rewrite (star_lemma s' H1).
reflexivity.
Qed.
主要思想是在上下文中引入一个类似于典型Idris证明中的递归调用的术语。 remember
和dependent induction
的方法效果不佳(没有in_regex
的修改),因为它们引入了不可能满足方程作为归纳假设的前提。
注意:检查此引理可能需要一段时间(在Coq 8.5pl3下我的机器上大约40秒)。我认为这是因为inversion
策略往往会产生很大的证明条件。
答案 2 :(得分:3)
这个问题困扰了我一个星期,我终于找到了一个我觉得优雅的解决方案。
我已经读过,当感应原理不符合您的需求时,您可以编写并证明另一个,更适合您的问题。这就是我在这种情况下所做的。我们想要的是使用this answer中给出的更自然的定义时获得的那个。通过这样做,我们可以保持相同的定义(例如,如果更改它意味着太多的更改),并且更容易理解它。
以下是归纳原理的证明(我使用一节来精确指定隐式参数,因为否则我会观察到它们的奇怪行为,但这里根本没有必要的部分机制。)
scale: 0.4
事实证明,这个证据的Section induction_principle.
Context (P : string -> regex -> Prop)
(H_InEps : P "" #1)
(H_InChr : forall c, P (String c "") ($ c))
(H_InCat : forall {e e' s s' s1}, s <<- e -> P s e -> s' <<- e' ->
P s' e' -> s1 = s ++ s' -> P s1 (e @ e'))
(H_InLeft : forall {s e e'}, s <<- e -> P s e -> P s (e :+: e'))
(H_InRight : forall {s' e e'}, s' <<- e' -> P s' e' -> P s' (e :+: e'))
(H_InStar_Eps : forall e, P "" (e ^*))
(H_InStar_Cat : forall {s1 s2 e}, s1 <<- e -> s2 <<- (e ^*) ->
P s1 e -> P s2 (e ^*) -> P (s1++s2) (e ^*)).
Arguments H_InCat {_ _ _ _ _} _ _ _ _ _.
Arguments H_InLeft {_ _ _} _ _.
Arguments H_InRight {_ _ _} _ _.
Arguments H_InStar_Cat {_ _ _} _ _ _ _.
Definition in_regex_ind2 : forall (s : string) (r : regex), s <<- r -> P s r.
Proof.
refine (fix in_regex_ind2 {s r} prf {struct prf} : P s r :=
match prf with
| InEps => H_InEps
| InChr c => H_InChr c
| InCat prf1 prf2 eq1 =>
H_InCat prf1 (in_regex_ind2 prf1) prf2 (in_regex_ind2 prf2) eq1
| InLeft _ prf => H_InLeft prf (in_regex_ind2 prf)
| InRight _ prf => H_InRight prf (in_regex_ind2 prf)
| InStar prf => _
end).
inversion prf; subst.
- inversion H1. apply H_InStar_Eps.
- inversion H1; subst.
apply H_InStar_Cat; try assumption; apply in_regex_ind2; assumption.
Qed.
End induction_principle.
不是即时的(可能是因为Qed
产生了this answer中的大项,但是花了不到1秒(可能是因为引理更抽象)。
inversion
变得几乎微不足道(一旦我们知道star_lemma
技巧),就像自然定义一样。
remember