Difference between revisions of "99 questions/Solutions/46"

From HaskellWiki
Jump to navigation Jump to search
(added another solution for table)
 
(2 intermediate revisions by 2 users not shown)
Line 63: Line 63:
 
equ' = (==)
 
equ' = (==)
 
</haskell>
 
</haskell>
  +
  +
XOR could be done using folds as well, just because folds are awesome:
  +
  +
<haskell>
  +
equ2 = (==)
  +
nexor2 a b = foldr (equ2) True [a, b] -- More like, nequ2
  +
xor2 a b = not $ nexor2 a b
  +
</haskell>
  +
   
 
The only remaining task is to generate the truth table; most of the complexity here comes from the string conversion and IO. The approach used here accepts a Boolean function <tt>(Bool -> Bool -> Bool)</tt>, then calls that function with all four combinations of two Boolean values, and converts the resulting values into a list of space-separated strings. Finally, the strings are printed out by mapping <hask>putStrLn</hask> across the list of strings:
 
The only remaining task is to generate the truth table; most of the complexity here comes from the string conversion and IO. The approach used here accepts a Boolean function <tt>(Bool -> Bool -> Bool)</tt>, then calls that function with all four combinations of two Boolean values, and converts the resulting values into a list of space-separated strings. Finally, the strings are printed out by mapping <hask>putStrLn</hask> across the list of strings:
Line 71: Line 80:
 
| a <- [True, False], b <- [True, False]]
 
| a <- [True, False], b <- [True, False]]
 
</haskell>
 
</haskell>
  +
  +
  +
Or, without indulging with monads explicitly:
  +
  +
<haskell>
  +
table :: (Bool -> Bool -> Bool) -> IO ()
  +
table f = putStrLn $ concatMap (++ "\n" )
  +
[show a ++ " " ++ show b ++ " " ++ show (f a b)
  +
| a <- [True, False], b <- [True, False] ]
  +
  +
</haskell>
  +
   
 
The table function in Lisp supposedly uses Lisp's symbol handling to substitute variables on the fly in the expression. I chose passing a binary function instead because parsing an expression would be more verbose in haskell than it is in Lisp. Template Haskell could also be used :)
 
The table function in Lisp supposedly uses Lisp's symbol handling to substitute variables on the fly in the expression. I chose passing a binary function instead because parsing an expression would be more verbose in haskell than it is in Lisp. Template Haskell could also be used :)
Line 85: Line 106:
 
printBinaryInstance f x y = show x ++ " " ++ show y ++ " " ++ show (f x y)
 
printBinaryInstance f x y = show x ++ " " ++ show y ++ " " ++ show (f x y)
 
</haskell>
 
</haskell>
  +
  +
  +
[[Category:Programming exercise spoilers]]

Latest revision as of 07:48, 27 April 2016

(**) Define predicates and/2, or/2, nand/2, nor/2, xor/2, impl/2 and equ/2 (for logical equivalence) which succeed or fail according to the result of their respective operations; e.g. and(A,B) will succeed, if and only if both A and B succeed.

A logical expression in two variables can then be written as in the following example: and(or(A,B),nand(A,B)).

Now, write a predicate table/3 which prints the truth table of a given logical expression in two variables.

The first step in this problem is to define the Boolean predicates:

-- NOT negates a single Boolean argument
not' :: Bool -> Bool
not' True  = False
not' False = True

-- Type signature for remaining logic functions
and',or',nor',nand',xor',impl',equ' :: Bool -> Bool -> Bool

-- AND is True if both a and b are True
and' True True = True
and' _    _    = False

-- OR is True if a or b or both are True
or' False False = False
or' _     _     = True

-- NOR is the negation of 'or'
nor'  a b = not' $ or'  a b

-- NAND is the negation of 'and'
nand' a b = not' $ and' a b

-- XOR is True if either a or b is True, but not if both are True
xor' True  False = True
xor' False True  = True
xor' _     _     = False

-- IMPL is True if a implies b, equivalent to (not a) or (b)
impl' a b = (not' a) `or'` b

-- EQU is True if a and b are equal
equ' True  True  = True
equ' False False = True
equ' _     _     = False

The above implementations build each logic function from scratch; they could be shortened using Haskell's builtin equivalents:

and'  a b = a && b
or'   a b = a || b
nand' a b = not (and' a b)
nor'  a b = not (or' a b)
xor'  a b = not (equ' a b)
impl' a b = or' (not a) b
equ'  a b = a == b

Some could be reduced even further using Pointfree style:

and' = (&&)
or'  = (||)
equ' = (==)

XOR could be done using folds as well, just because folds are awesome:

equ2 = (==)
nexor2 a b = foldr (equ2) True [a, b] -- More like, nequ2
xor2 a b = not $ nexor2 a b


The only remaining task is to generate the truth table; most of the complexity here comes from the string conversion and IO. The approach used here accepts a Boolean function (Bool -> Bool -> Bool), then calls that function with all four combinations of two Boolean values, and converts the resulting values into a list of space-separated strings. Finally, the strings are printed out by mapping putStrLn across the list of strings:

table :: (Bool -> Bool -> Bool) -> IO ()
table f = mapM_ putStrLn [show a ++ " " ++ show b ++ " " ++ show (f a b)
                                | a <- [True, False], b <- [True, False]]


Or, without indulging with monads explicitly:

table :: (Bool -> Bool -> Bool) -> IO ()
table f = putStrLn $ concatMap (++ "\n" )
          [show a ++ " " ++ show b ++ " " ++ show (f a b)
          | a <- [True, False], b <- [True, False] ]


The table function in Lisp supposedly uses Lisp's symbol handling to substitute variables on the fly in the expression. I chose passing a binary function instead because parsing an expression would be more verbose in haskell than it is in Lisp. Template Haskell could also be used :)

The table function can be generalized to work for any given binary function and domain.

table :: (Bool -> Bool -> Bool) -> String
table f = printBinary f [True, False]

printBinary :: (Show a, Show b) => (a -> a -> b) -> [a] -> String
printBinary f domain = concatMap (++ "\n") [printBinaryInstance f x y | x <- domain, y <- domain]

printBinaryInstance :: (Show a, Show b) => (a -> a -> b) -> a -> a -> String
printBinaryInstance f x y = show x ++ " " ++ show y ++ " " ++ show (f x y)