- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我必须为 > 、 < 和 != 创建一些 Lambda 函数
我不知道该怎么做,有人可以帮我吗?PS:我们刚刚开始学习 Lambda 微积分,所以请不要假设任何先前的知识。
谢谢期待!
编辑 - 我的意思是Arithmetic in Lambda Calculus
编辑 2 - 更准确:寻找 Church 编码(lambda 演算)来定义 < , > , !=
编者注:我认为这就是 OP 试图提出的问题:
我正在尝试使用 Church 编码在无类型 lambda 演算中实现以下操作:
GT
或 >
)。LT
或 <
)。NE
或 !=
)。我已经知道如何实现以下内容:
TRUE
或 λx.λy.x
)。FALSE
或 λx.λy.y
)。AND
或 λp.λq.p q p
)。OR
或 λp.λq.p p q
)。NOT
或 λp.λa.λb.p b a
)。你会怎么写 GT
, LT
和 NE
无类型 lambda 演算中的函数?
最佳答案
使用 "An Introduction To Functional Programming Through Lambda Calculus"通过格雷格迈克尔森
开始于
Section 4.8.3. Comparison
There are a number of ways of defining equality between numbers. One approach is to notice that the difference between two equal numbers is zero. However, if we subtract a number from a smaller number we also get zero so we need to find the absolute difference between them; the difference regardless of the order of comparison. To find the absolute difference between two numbers, add the difference between the first and the second to the difference between the second and the first:
def abs_diff x y = add (sub x y) (sub y x)
If they are both the same then the absolute differences will be zero because the result of taking each from the other will be zero. If the first is greater than the second then the absolute difference will be the first minus the second because the second minus the first will be zero. Similarly, if the second is greater than the first then the difference will be the second minus the first because the first minus the second will be zero.
Thus, we can define:
def equal x y = iszero (abs_diff x y)
We can also use subtraction to define arithmetic inequalities. For example, a number is greater than another if subtracting the second from the first gives a non-zero result:
def greater x y = not (iszero (sub x y))
Less 定义在后面的习题解答部分。
def less x y = greater y x
现在使用链接中的书,只需找到所有从属函数,你就会有 =、>、<。虽然这本书没有定义 != 它应该是显而易见的。
编辑
根据 WillNess 的评论
4.8.2. Subtraction
To find the difference between two numbers, find the difference between the numbers after decrementing both. The difference between a number and zero is the number:
rec sub x y =
if iszero y
then x
else sub (pred x) (pred y)
请注意“现在使用链接中的书,只需找到所有从属函数”。
我不打算搜索所有从属函数并在此处列出它们,因为它们会爆炸并在此处重新创建许多函数。我已经阅读并通读了本书的部分内容,它非常全面,我并不缺乏信息。
关于functional-programming - 寻找 Church 编码(lambda 演算)来定义 < , > , !=,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20523625/
我认为这个问题说明了一切,但我有一个使用 .net 安装工具包的应用程序(在 vs.2005 中),并且用户问我是否可以将它安装在 c:\Program Files\ProgramName 而不是C:
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我是 Stephen Wolfram 的忠实粉丝,但他绝对是一个不怕自吹自擂的人。在许多引用资料中,他将 Mathematica 颂扬为一种不同的符号编程范式。我不是 Mathematica 用户。
我现在正在使用 Squeak4.1 学习 SmallTalk。我使用 Squeak by Example 作为教程,在这里我反驳了一个 delema,“Morphic 是由...开发的,用于自编程语言
Wikipedia有话要说: Total functional programming (also known as strong functional programming, to be cont
在阅读 Paul Graham's Essays 时, 我对 Lisp 越来越好奇了。 在this article ,他提到最强大的功能之一是您可以编写可以编写其他程序的程序。 我无法在他的网站或其他
我知道 functional programming 有几个定义。 .我认为这是一个模糊的类别。我个人的定义是接近' referential transparency '。 这个问题不是“函数式编程的
我注意到许多顶尖大学都开设了类(class),在这些类(class)中,学生将学习与计算机图形学相关的 CS 专业科目。可悲的是,这是我的大学没有提供的东西,我真的很想在 future 几年的某个时候
我正在安装100%托管代码的.NET(C#)应用程序。安装程序(InnoSetup)始终希望将应用程序安装到Vista x64中的“Program Files(x86)”文件夹中,我认为这是因为安装程
假设在 C 中,我们有以下结构: struct MyData { char key1[20]; long key2; ... /* some data */ }; 本质上,除
这个问题已经有答案了: When should I use ampersand with scanf() (3 个回答) 已关闭 6 年前。 所以我在python3中有这个“程序”,它添加了3个字符串
我编写了一个包含 self 更新程序的 Java 应用程序。自更新程序从 Web 服务器加载新的程序版本并替换应用程序文件。如果安装了应用程序,这将完美地工作,例如在用户主目录中,如果它安装在 C:\
注意:标记为社区维基。 是否有一个很好的分析为什么可视化编程语言仍然没有起飞?这些天我们仍在 80x25 文本窗口中“线性”编码;而我们表示的概念(数据结构、算法)似乎可以更直观地表示出来。 最佳答案
我一直在阅读Code Complete 2 .由于我不是以英语为母语的人,因此我需要一些时间才能理解某些陈述。我希望你描述作者在他的书中所做的这两个陈述之间的区别: You should progra
我在为我的 tomcat 设置 CLASSPATH 时遇到了这个问题。我需要在 tomcat 的 CLASSPATH 中引用我的 2 个安装。其中一个位于 C:\Program Files\Postg
这个问题已经有答案了: How can I lock a file using java (if possible) (8 个回答) 已关闭 6 年前。 我有 2-3 个程序可以修改文件,但如果有一个
我 checkout Reading stdout from one program in another program却没有找到我要找的答案 我是 Linux 的新手,我正在使用 Python 中
我有一个程序可以打印出通过或失败。我想检测卡在那里的程序并回显“超时” 我写了这样一个脚本: #!/bin/bash echo -n 'test' && timeout 5 ./mytest | gr
我非常清楚函数式编程技术和命令式编程技术之间的区别。但是现在有一种普遍的趋势是谈论“函数式语言”,这确实让我感到困惑。 当然,像 Haskell 这样的一些语言比 C 等其他语言更欢迎函数式编程。但即
请求:每个进程需要计算自己的组到所有点的距离。我的代码如下: #include stdio.h #include stdlib.h #include math.h #include string.h
我是一名优秀的程序员,十分优秀!