- 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/
我正在学习 Idris 并且我陷入了一个非常简单的引理,该引理表明某些特定索引对于数据类型是不可能的。我尝试使用不可能的模式,但 Idris 拒绝使用以下错误消息: RegExp.idr line 3
灵感来自 this blog post和 this code我想我会使用 Idris 的接口(interface)(类型类)在 Idris 中尝试一些类别理论。 我定义了Category如下,效果很好
借此我可以构建一个匿名的临时记录;那是可编辑的、可附加的、可修改的,其中每个值可以具有不同的异构类型,以及编译器检查消费者类型期望是否与所有给定键处生成的记录的类型一致? 类似于 Purescript
是否有一种简单的方法可以为数据类型编写相等 ( DecEq ) 实例?例如,我希望下面的 DecEq 中有 O(n) 行声明,其中 ?p很简单: data Foo = A | B | C | D in
是否有任何关于 postulate 的性质和用途的最新信息?在 idris build ?教程/手册中没有关于该主题的任何内容,我似乎也无法在 wiki 中找到任何内容。 TIA。 最佳答案 我认为我
在玩了一下 Idris 及其效果教程示例后,我终于弄清楚了如何链接效果。不确定链是否是正确的词,但我基本上是指一种效果是根据另一种效果实现的。 在这个例子中,我有一个效果,我称之为 Lower。它直接
Idris 中是否存在有理数的现有实现? 例如Data.Ratio 来自 Haskell 的端口。 最佳答案 通过快速搜索,我找到了 this , 如果它可能很有趣 关于idris - Idris 中
在官方 Idris wiki 上的非官方常见问题解答(官方是因为它在该语言的 git 仓库中),它是 stated that in a total language [e.g. Idris] we d
我在看 Idris tutorial .我无法理解以下代码。 disjoint : (n : Nat) -> Z = S n -> Void disjoint n p = replace {P = d
在 Idris 中定义我们在其他语言中称为常量的惯用方式是什么?是这个吗? myConstant : String myConstant = "some_constant1" myConstant2
在 idris 0.9.17.1 中, 灵感来自 https://wiki.haskell.org/Prime_numbers , 我编写了以下代码来生成素数 module Main concat:
我编写了一个函数doSomething,它接受一个左括号或右括号并返回相应的Int: doSomething : (c : Char) -> {auto isPar : c == '(' || c =
这实际上是我的第一行 Idris 代码。当我查阅文档时,一切都显得正确: Idris> data T = Foo Bool | Bar (T -> T) (input):1:6: | 1 | da
我正在使用 Idris 进行类型驱动开发,学习如何定义具有可变数量参数的函数。我有点野心,想写一个 mapN将映射 (n : Nat) 的函数的函数参数到 n一些 Applicative 的值类型。
我正在尝试编写一个函数 mSmallest需要两个自然数,n和 m作为输入并产生一个向量。输出向量包含 m有限集的最小成员 n成员。 例如 mSmallest 5 3应该生产 [FS (FS Z),
我在 Idris 中将幺半群定义为 interface Is_monoid (ty : Type) (op : ty -> ty -> ty) where id_elem : () -> ty
我正在阅读 Type driven development with Idris ,其中一个练习要求读者定义一个类型 TupleVect ,这样一个向量可以表示为: TupleVect 2 ty =
试图证明以下断言: equalityCommutesNat : (n : Nat) -> (m : Nat) -> n = m -> m = n 我找到了 plusCommutes在图书馆里,但没有平
为什么 Idris 要求函数按照定义的顺序出现,并使用 mutual 声明的相互递归? 我希望 Idris 执行函数之间的第一次依赖分析,并自动对它们进行重新排序。我一直相信 Haskell 是这样做
我一直无法让 Idris 整体检查器相信我的功能是完整的。这是我遇到的问题的一个简单示例版本。假设我们有一个如下形式的非常简单的表达式类型: data SimpleType = Prop | Fn S
我是一名优秀的程序员,十分优秀!