[lambda-calculus] propose correction for ADD (#3407)

[lambda-calculus] propose correction for ADD
This commit is contained in:
Divay Prakash 2019-02-17 02:35:34 +05:30 committed by GitHub
commit 1980272c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ we use the successor function `S(n) = n + 1` which is:
Using successor, we can define add:
`ADD = λab.(a S)n`
`ADD = λab.(a S)b`
**Challenge:** try defining your own multiplication function!