Prove that not every boolean function is equal to a boolean function constructed by only using $\wedge$ and $\vee$.
Here is my solution, can I ask for a feed back on my solution please?
$p∧q$
$0 0 0 1 $
$p∨q$
$0 1 1 1$
Not every boolean function is the same when using $ ∨ $ and $∧.$
Edited part!
$p\vee q$
$0111$
$(p\vee q)\wedge p = p$
$0 = 0$
$0 = 0$
$1 = 1$
$1 = 1$
$(p\vee q)\vee p = p\vee q$
$0 = 0$
$1 = 1$
$1 = 1$
$1 = 1$
here is my edited answer , can I ask for more feed back , thanks
I'm not sure you understood what was asked in this problem. The aim is to find a function $f$ that cannot be built with the symbols $∨$ or $∧$ only.
Your first solution is the function $f: (p, q) \mapsto p∧q$ which is constructed exactly with the symbol $∧$, so it does not answer the problem. You have the same problem with the second solution you provided.
Try to find other logical symbols you could use to construct a function, and with a good choice, prove that it can not be expressed solely with $∨$ and $∧$.