5 kyu

Church Booleans

336 of 710PaulBlanche

Description:

There are a few Katas about Church Numerals so let's talk about booleans.

In lambda calculus, the only primitive are lambdas. No numbers, no strings, and of course no booleans. Everything is reduced to anonymous functions.

Booleans are defined thusly (this definition is preloaded for you) :

const True = T => F => T;
const False = T => F => F;
type Boolean = forall a. a -> a -> a -- this requires RankNTypes

false,true :: Boolean
false = \ t f -> f
true  = \ t f -> t
true  = lambda t: lambda f: t
false = lambda t: lambda f: f
True  = \ t f . t
False = \ t f . f

Your task will be to implement basic operators on booleans (using only lambdas and function application) : Not, And, Or and Xor.

To help, the function unchurch comes preloaded, and returns the native boolean given a church boolean :

unchurch(True); //true;

Note: You should not use the following:

  • numbers
  • strings
  • booleans
  • boolean operators
  • objects (curly brackets) or arrays (square brackets)
  • regexp
  • "new"
Fundamentals

More By Author:

Check out these other kata created by PaulBlanche

Stats:

CreatedApr 6, 2018
PublishedApr 9, 2018
Warriors Trained2802
Total Skips292
Total Code Submissions5239
Total Times Completed710
JavaScript Completions336
Haskell Completions203
Python Completions216
λ Calculus Completions51
Total Stars58
% of votes with a positive feedback rating92% of 162
Total "Very Satisfied" Votes141
Total "Somewhat Satisfied" Votes16
Total "Not Satisfied" Votes5
Total Rank Assessments20
Average Assessed Rank
5 kyu
Highest Assessed Rank
4 kyu
Lowest Assessed Rank
7 kyu
Ad
Contributors
  • PaulBlanche Avatar
  • JohanWiltink Avatar
  • Blind4Basics Avatar
  • soxfox42 Avatar
  • G_kuldeep Avatar
  • user8436785 Avatar
  • eric-wieser Avatar
  • Kacarott Avatar
  • dfhwze Avatar
Ad