I'm having some difficulty with a problem I think.
If X = true and Y = true
((X AND Y)' AND (X' OR Y') ' ) '
I get back true. When I put it in Wolfram Alpha it gave me back false. But I think it may have had a ' by it as well? So I'm not really sure. I'm new to this and hoping for some clarification. My thinking was that:
((TRUE AND TRUE) ' AND (TRUE' OR TRUE') ' ) '
((FALSE AND FALSE) AND (FALSE OR FALSE) ' ) '
((FALSE) AND (FALSE) ' ) '
((FALSE) AND (TRUE)) '
((FALSE)) '
((TRUE))
Can someone please tell me if this is correct?