Could you please explain the deMorgan rules as simply as possible (e.g. with a secondary school background) ?
feedback
|
|
We have two values: We can combine these values in three ways:
We can write this as a truth table:
For conciseness
Think of
We can define more complex combinations. For example, we can write a truth table for
Once we know how to evaluate To evaluate the combination, evaluate the pieces and work up from there. The parentheses show which parts to evaluate first. What you know from ordinary arithmetic will help you work it out. Say you have
and evaluate that as usual to get the answer, Evaluating these expressions works similarly. We know how
Now it's almost like we're back to the
which is the same as
which is simply We repeat the same process for all 8 possible values of
Some expressions may be more complex than they need to be. For example,
In other words, DeMorgan's rules are handy tricks that let us convert between equivalent expressions that fit certain patterns:
(You might think of this as how Your common sense probably already understands these rules! For example, think of the bit of folk wisdom that "you can't be in two places at once." We could make it fit the first part of the first rule:
Applying the rule, that's another way of saying "you're not here or you're not there." Exercise: How might you express the second rule in plain English? For the first rule, let's look at the truth table for the expression on the left side of the equals sign.
Now the righthand side:
The final values are the same in both tables. This proves that the expressions are equivalent. Exercise: Prove that the expressions | |||
feedback
|
|
It is just a way to restate truth statements, which can provide simpler ways of writing conditionals to do the same thing. In plain English: Note: Given the imprecision of the English language on the word 'or' I am using it to mean a non-exclusive or in the preceding example. For example the following pseudo-code is equivalent: IF NOT(A AND B)... | ||||
feedback
|
|
Looking over some of the answers, I think I can explain it better by using conditions that are actually related to each other. DeMorgan's Law refers to the fact that there are two identical ways to write any combination of two conditions - specifically, the Part 1 of DeMorgan's LawStatement: Alice has a sibling. In other words: Part 2 of DeMorgan's LawStatement: Bob is a car driver. In other words: I think this would be a little less confusing to a 12-year-old. It's certainly less confusing than all this nonsense about truth tables (even I'm getting confused looking at all of those). | ||||
|
feedback
|
|
If you're a police officer looking for underage drinkers, you can do one of the following, and De Morgan's law says they amount to the same thing: FORMULATION 1 (A AND B)
FORMULATION 2 (NOT(NOT A OR NOT B))
This, by the way, isn't my example. As far as I know, it was part of a scientific experiment where the same rule was expressed in different ways to find out how much of a difference it made in peoples' ability to understand them. | |||
|
feedback
|
|
DeMorgan's Law allows you to state a string of logical operations in different ways. It applies to logic and set theory, where in set theory you use complement for not, intersection for and, and union for or. DeMorgan's Law allows you to simplify a logical expression, performing an operation that is rather similar to the distributive property of multiplication. So, if you have the following in a C-like language
It is logically equivalent to:
It also works like so:
turns into
And you can, of course, go in reverse. The equivalence of these statements is easy to see using something called a truth table. In a truth table, you simply lay out your variables (x, y, z) and list all the combinations of inputs for these variables. You then have columns for each predicate, or logical expression, and you determine for the given inputs, the value of the expression. Any university curriculum for computer science, computer engineering, or electrical engineering will likely drive you bonkers with the number and size of truth tables you must construct. So why learn them? I think the biggest reason in computing is that it can improve readability of larger logical expressions. Some people don't like using logical not | |||
|
feedback
|
|
"He doesn't have either a car or a bus." means the same thing as "He doesn't have a car, and he doesn't have a bus." "He doesn't have a car and a bus." means the same thing as "He either doesn't have a car, or doesn't have a bus, I'm not sure which, maybe he has neither." Of course, in plain english "He doesn't have a car and a bus." has a strong implication that he has at least one of those two things. But, strictly speaking, from a logic standpoint the statement is also true if he doesn't have either of them. Formally:
In english, 'or' tends to mean a choice, that you don't have both things. In logic, 'or' always means the same as 'and/or' in English. Here's a truth table that shows how this works: First case: not (cor or bus) = (not car) and (not bus)
Second case: not (car and bus) = (not car) or (not bus)
| ||||
|
feedback
|
|
Draw a simple Venn diagram, two intersecting circles. Put A in the left and B in the right. Now (A and B) is obviously the intersecting bit. So NOT(A and B) is everything that's not in the intersecting bit, the rest of both circles. Colour that in. Draw another two circles like before, A and B, intersecting. Now NOT(A) is everything that's in the right circle (B), but not the intersection, because that's obviously A as well as B. Colour this in. Similarly NOT(B) is everything in the left circle but not the intersection, because that's B as well as A. Colour this in. Two drawings look the same. You've proved that NOT(A and B) = NOT(A) or NOT(B). T'other case is left as an exercise for the student. | |||
|
feedback
|
|
Don't know what secondary school background means, these days. 'Twas a long time ago for me. Did you do:
It's all covered here but I guess you looked there before you came here. What is it you're having trouble with? If you can tell us what you're trying to do, it might help. | |||
feedback
|