- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我会写函数
powApply : Nat -> (a -> a) -> a -> a
powApply Z f = id
powApply (S k) f = f . powApply k f
并简单地证明:
powApplyZero : (f : _) -> (x : _) -> powApp Z f x = x
powApplyZero f x = Refl
到目前为止,还不错。现在,我尝试将此函数概括为使用负指数。当然,必须提供一个逆:
import Data.ZZ
-- Two functions, f and g, with a proof that g is an inverse of f
data Invertible : Type -> Type -> Type where
MkInvertible : (f : a -> b) -> (g : b -> a) ->
((x : _) -> g (f x) = x) -> Invertible a b
powApplyI : ZZ -> Invertible a a -> a -> a
powApplyI (Pos Z) (MkInvertible f g x) = id
powApplyI (Pos (S k)) (MkInvertible f g x) =
f . powApplyI (Pos k) (MkInvertible f g x)
powApplyI (NegS Z) (MkInvertible f g x) = g
powApplyI (NegS (S k)) (MkInvertible f g x) =
g . powApplyI (NegS k) (MkInvertible f g x)
然后我尝试证明一个类似的命题:
powApplyIZero : (i : _) -> (x : _) -> powApplyI (Pos Z) i x = x
powApplyIZero i x = ?powApplyIZero_rhs
但是,Idris 拒绝评估 powApplyI
的应用,将 ?powApplyIZero_rhs
的类型保留为 powApplyI (Pos 0) i x = x
(是的,Z
已更改为 0
)。我试过以非 pointsfree 风格编写 powApplyI
,并使用 %elim
修饰符定义我自己的 ZZ
(我不明白),但这些都不起作用。为什么不通过检查 powApplyI
的第一个案例来处理证明?
idris 版本:0.9.15.1
这里有一些东西:
powApplyNI : Nat -> Invertible a a -> a -> a
powApplyNI Z (MkInvertible f g x) = id
powApplyNI (S k) (MkInvertible f g x) = f . powApplyNI k (MkInvertible f g x)
powApplyNIZero : (i : _) -> (x : _) -> powApplyNI 0 i x = x
powApplyNIZero (MkInvertible f g y) x = Refl
powApplyZF : ZZ -> (a -> a) -> a -> a
powApplyZF (Pos Z) f = id
powApplyZF (Pos (S k)) f = f . powApplyZF (Pos k) f
powApplyZF (NegS Z) f = f
powApplyZF (NegS (S k)) f = f . powApplyZF (NegS k) f
powApplyZFZero : (f : _) -> (x : _) -> powApplyZF 0 f x = x
powApplyZFZero f x = ?powApplyZFZero_rhs
第一个证明很好,但是 ?powApplyZFZero_rhs
顽固地保持类型 powApplyZF (Pos 0) f x = x
。显然,ZZ
(或我对它的使用)存在一些问题。
最佳答案
问题:根据 Idris 的说法,powApplyI
无法证明是完全的。 Idris 的完整性检查器依赖于能够将参数减少到结构上更小的形式,而对于原始 ZZ
,这是行不通的。
答案是将递归委托(delegate)给普通的旧powApply
(已证明是完全的):
total
powApplyI : ZZ -> a <~ a -> a -> a
powApplyI (Pos k) (MkInvertible f g x) = powApply k f
powApplyI (NegS k) (MkInvertible f g x) = powApply (S k) g
然后,通过在 i
上拆分案例,powApplyIZero
被简单证明。
感谢来自 #idris IRC channel 的 Melvar。
关于proof - idris 定义证明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27749330/
我想知道是否有人可以帮我回答这个问题。它来自以前的试卷,我可以为今年的考试准备好答案。 这个问题看起来太简单了,我完全迷路了,它到底在问什么? Consider the following secti
我在想这样一个事实,即我们可以证明一个程序有错误。我们可以对其进行测试以评估它或多或少具有抗错误性。 但是有没有办法(甚至理论上)证明程序没有错误? 对于简单的程序,例如“Hello World”,我
有时,当我在写应用风格的证明时,我想要一种修改证明方法的方法foo到 Try foo on the first goal. If it solves the goal, good; if it doe
到目前为止,我在Isabelle中使用以下样式编写了矛盾的证明(使用Jeremy Siek的模式): lemma "" proof - { assume "¬ " then hav
有一个树数据结构和一个flip方法。我想写一个证明,如果你申请flip方法到一棵树两次你得到初始树。我有一个目标 ⊢ flip_mytree (flip_mytree (mytree.branch t
您好,我正在尝试在精益证明助手中做一些数学运算,看看它是如何工作的。我决定玩交换环的幂等函数应该很有趣。这是我尝试过的: variables (A : Type) (R : comm_ring A)
我写了group的定义在 idris : data Group: Type -> Type where Unit: (x: t) -> Group t (*): Group t ->
我在 Idris 上工作了一点,我写了一个概率类型 - Float 介于 0.0 和 1.0 之间: data Probability : Type where MkProbability :
优化编译器的最终目的是在程序空间中搜索与原始程序等效但速度更快的程序。这已在实践中针对非常小的基本块完成:https://en.wikipedia.org/wiki/Superoptimization
我会写函数 powApply : Nat -> (a -> a) -> a -> a powApply Z f = id powApply (S k) f = f . powApply k f 并简单
我正在考虑尽量减少对尚未编写的应用程序的 future 影响。我试图避免任何 3rd 方产品,甚至避免特定于操作系统的调用。任何人都可以建议 future 证明应用程序的其他方法。这个想法是不必在 1
我最近开始学习Isabelle,但我找不到一个非常重要的问题的答案:一个人如何看到Isabelle发现的“证明”的逐步推理?我对“自动”或“通过爆炸使用Theorem_A”这样的行不满意,我想检查逐步
我在上一个问题 Using the value of a computed function for a proof in agda 中看到了一个检查函数的例子。 ,但我仍然无法解决这个问题。 这是一
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 5年前关闭。 Improve t
我想在 Isabelle 中使用 nat 类型,但我想重载一些现有的定义,例如加法。我写了以下代码: theory Prueba imports Main HOL begin primrec suma
我写了一小段 Haskell 来弄清楚 GHC 如何证明对于自然数,你只能将偶数减半: {-# LANGUAGE DataKinds, GADTs, KindSignatures, TypeFamil
我在 Idris 中编写了以下证明: n : Nat n = S (k + k) lemma: n * n = ((k * n) + k) + (1 + (((k * n) + k) +
我对向量谓词有以下定义,用于标识一个集合是否为集合(没有重复元素)。我使用类型级 bool 值定义成员资格: import Data.Vect %default total data ElemBool
首先,我必须说我试过了。真的。但是我在这一点上停留了 3 天,我需要继续前进并完成它。 我在 man 中找不到任何引用资料。我在 bash 引用中找到了 No references。我在圣经中找不到任
我注意到,在使用 Isabelle/HOL Isar 时,有几种方法可以处理通用量化。我正在尝试以适合本科生理解和重现的风格编写一些证明(这就是我使用 Isar 的原因!),我对如何以一种好的方式表达
我是一名优秀的程序员,十分优秀!