gpt4 book ai didi

coq - 代数表达式的基本操作

转载 作者:行者123 更新时间:2023-12-02 09:03:04 25 4
gpt4 key购买 nike

我仍然缺少通过向两边添加相同值来操作代数表达式的基本技术。例如,如果当前目标是 a + b < a + 5 ,如何将其转换为b < 5就像在纸笔校样中所做的那样?感谢您的帮助。

最佳答案

对于这种事情,你需要使用已经证明这一点的引理。其中大部分已在 Arith 中得到证明。 。如果您输入

From Coq Require Import Arith.
Search "+" "<".

Coq 会告诉您有关加法和“小于”关系的引理。特别是你会发现

plus_lt_compat_l: forall n m p : nat, n < m -> p + n < p + m

所以

Goal forall a b, a + b < a + 5.
intros a b.
apply plus_lt_compat_l.

确实会让你证明b < 5 .

通常情况下,您并不真正想要进行搜索,而是使用一些自动化操作。为此lia推荐。

From Coq Require Import Lia.

Goal forall a b, a + b < a + 5.
intros a b.
cut (b < 5).
{ lia. }
(* The remaining goal is b < 5 *)

lia是解决许多此类算术问题的策略。

关于coq - 代数表达式的基本操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61636290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com