Suppose there is a special gate called a SAND gate (Single-inversion AND) that looks like this:
How can I make 2-input AND gate, 2-input OR gate and NOT gate using only the SAND gate?
The truth table for this gate is:
$$\begin{array}{|c|c|c|} \hline A & B & \overline{A}\ {B} \\ \hline 0 & 0 & 0\\ \hline 0 & 1 & 1\\ \hline 1 & 0 & 0\\ \hline 1 & 1 & 0\\ \hline \end{array}$$
To make a 2-input AND gate using only SAND gates, I would have to put 2 SAND gates in a row. Is this correct?
I don't know how to make 2-input OR gate and NOT gate using SAND gates. Can you give me a hint please?
Edit: I am only allowed to use SAND gates.