Download presentation
Presentation is loading. Please wait.
Published byEvelyn Wade Modified over 9 years ago
3
George Boole More than 150 years ago, there was a mathematician named George Boole, who took statements and wrote them in a precise format, such that a statement is always true or false. He founded a branch of mathematics called Boolean Algebra. Statements that are either true or false are called Boolean statements. The conditions you used with selection and repetition back in Chapter 5 were all Boolean statements. There is a boolean datatype named after George Boole.
5
What is a Boolean Statement? The sentence, statement, condition, whatever, must be true or false. No questions, no ambiguities, no arguments. The basis of processing data is the binary system of on and off, or 1 and 0, which certainly sounds a bunch like true or false. Each of the following five statements is a Boolean statement: A mile is longer than a kilometer. July and August both have the same number of days. A pound of feathers is lighter than a pound of lead. The Moon is larger than the Sun. New York City has more people than Baltimore.
6
English SentenceBoolean StatementT/F A mile is longer than a kilometer. Mile > Kilometer True July and August have the same days. JulDays == AugDays True A pound of feathers is lighter than a pound of lead. PoundF < PoundL False The Moon is larger than the Sun. MoonSize > SunSize False New York City has more people than Baltimore. NYPop > BaltPop True Boolean Statement Examples
7
Sentences are not always so short and straight forward. Frequently there are multiple conditions in one statement. Special rules need to be followed to determine if the entire statement is true or false. Consider the following sentences with compound conditions: She is a computer science teacher and she is a math teacher. The number is odd or the number is even. Enter again if gender is not male or gender is not female. Employment requires a CPA and five years experience. The same sentences converted into Boolean statements are: (She == CSTeacher) and (She == MathTeacher) (Number % 2 == 1) or (Number % 2 == 0) (Gender != ‘M’) or (Gender != ‘F’) (CPA == ‘Y’) and (YrExp >= 5)
9
Logical OR Example Consider two young ladies who have a rather simplistic, and quite politically incorrect, view of judging potential dates. The first is Kathy who will date a guy if he is Good Looking OR drives a Nice Car. This chart shows her 4 possible cases: Good Looking?Nice Car?Date Material?
10
Boolean Operators Boolean OR ATTFFATTFF BTFTFBTFTF A or B T F
11
Logical AND Example Suzy is more picky than Kathy. Suzy will only date a guy if he BOTH Good Looking AND drives a Nice Car. This chart shows her 4 possible cases: Good Looking?Nice Car?Date Material?
12
Boolean Operators Boolean AND ATTFFATTFF BTFTFBTFTF A and B T F
13
Boolean Operators Boolean XOR ATTFFATTFF BTFTFBTFTF A xor B F T F
14
Boolean Operators Boolean NOT ATFATF ~A F T
15
Boolean Operators Boolean NOT Continued ATTFFATTFF BTFTFBTFTF ~A F T ~B F T F T
17
Venn Diagram #1 The Boolean Algebra logical and ( * ) can be demonstrated with Venn Diagrams, using intersection. A intersect B also A and B also A * B also AB
18
Venn Diagram #2 The Boolean Algebra logical or ( + ) can be demonstrated with Venn Diagrams, using union. A union B also A or B also A + B
19
Venn Diagram #3 The Boolean Algebra logical not ( ~ ) not A also ~A This is the opposite of A.
20
Venn Diagram #4 The Boolean Algebra logical not ( ~ ) not B also ~B This is the opposite of B.
21
Venn Diagram #5 not (A and B) ~(A * B) This is the opposite of (A and B).
22
Venn Diagram #6 not (A or B) ~(A + B) This is the opposite of (A or B).
23
Venn Diagram #7 not A and not B ~A * ~B This is identical to not(A or B).
24
Venn Diagram #8 not A or not B ~A + ~B This is identical to not(A and B).
25
DeMorgan’s Law not(A and B) = not A or not B not(A or B) = not A and not B
26
Tricky Venn Diagrams A and not (B) A or not(B) A * ~B A + ~B Step 1 – Shade A AB
27
Tricky Venn Diagrams A and not (B) A or not(B) A * ~B A + ~B Step 2 – Shade ~B a different way
28
Tricky Venn Diagram A and not (B) A * ~B Answer: The part that is shaded twice.
29
Tricky Venn Diagram A or not (B) A + ~B Answer: Everything that is shaded.
31
// Java1001.java // This program demonstrates a boolean expression being used in an if statement. public class Java1001 { public static void main(String args[]) { System.out.println("\nJAVA1001.JAVA\n"); int x = 10; if ( x == 10 ) System.out.println("true"); else System.out.println("false"); if ( x == 5 ) System.out.println("true"); else System.out.println("false"); System.out.println(); }
32
// Java1002.java // This program demonstrates that conditional statements have // true or false Boolean values and these values can be displayed. public class Java1002 { public static void main(String args[]) { System.out.println("\nJAVA1002.JAVA\n"); int x =10; System.out.println(x == 10); System.out.println(x == 5); System.out.println(); }
33
Output for the next 3 programs…
34
// Java1003.java // This program shows a boolean expression being used in a while statement. public class Java1003 { public static void main (String args[]) { System.out.println("\nJAVA1003.JAVA\n"); int gcf = 0; int attempt = 0; while (gcf != 12) { attempt++; System.out.print("\nWhat is the GCF of 120 and 108? --> "); gcf = Expo.enterInt(); } System.out.println("\nAnswered correctly after " + attempt + " Attempt(s).\n"); }
35
// Java1004.java // This program introduces the data type, which only has two // values, true or false. Boolean variables add readability to programs. public class Java1004 { public static void main (String args[]) { System.out.println("\nJAVA1004.JAVA\n"); int gcf; boolean correct = false; int attempt = 0; while (!correct) { attempt++; System.out.print("\nWhat is the GCF of 120 and 108? --> "); gcf = Expo.enterInt(); if (gcf == 12) correct = true; else correct = false; } System.out.println("\nAnswered correctly after " + attempt + " Attempt(s).\n"); }
36
// Java1005.java // This program executes in the same manner as Java1004.java. // The abbreviated Boolean assignment statement is used in place of the // longer if... else syntax. public class Java1005 { public static void main (String args[]) { System.out.println("\nJAVA1005.JAVA\n"); int gcf; boolean correct = false; int attempt = 0; while (!correct) { attempt++; System.out.print("\nWhat is the GCF of 120 and 108? --> "); gcf = Expo.enterInt(); correct = (gcf == 12); } System.out.println("\nAnswered correctly after " + attempt + " Attempt(s).\n"); }
37
Think of it this way… VariableExpressionAssignment int x;23 + 45x = 23 + 45; double y;66.23 - 8.11y = 66.23 - 8.11; String name;“John” + “Smith”name = “John”+”Smith”; boolean pass;grade >= 70pass = grade >= 70;
39
Java uses || to indicate a logical OR. Java uses && to indicate a logical AND. Java uses ! to indicate a logical NOT. Java uses != for not equals, but it can also be used to indicate a logical XOR. Java Logical Operators
40
// Java1006.java // This program demonstrates compound decisions with the logical or ( || ) // operator. public class Java1006 { public static void main (String args[]) { System.out.println("Java1006\n"); int education; // years of education int experience; // years of work experience System.out.print("Enter years of education ===>> "); education = Expo.enterInt(); System.out.print("Enter years of experience ===>> "); experience = Expo.enterInt(); System.out.println(); if (education >= 16 || experience >= 5) System.out.println("You are hired!"); else System.out.println("You are not qualified."); System.out.println(); }
41
NICE BOSS
42
// Java1007.java // This program demonstrates compound decisions with the logical and ( && ) // operator. public class Java1007 { public static void main (String args[]) { System.out.println("Java1007\n"); int education; // years of education int experience; // years of work experience System.out.print("Enter years of education ===>> "); education = Expo.enterInt(); System.out.print("Enter years of experience ===>> "); experience = Expo.enterInt(); System.out.println(); if (education >= 16 && experience >= 5) System.out.println("You are hired!"); else System.out.println("You are not qualified."); System.out.println(); }
43
PICKY BOSS
44
// Java1008.java // This program demonstrates compound decisions with not equals ( != ) operator. // != can be used to implement XOR (eXclusive OR). public class Java1008 { public static void main (String args[]) { System.out.println("Java1008\n"); int education; // years of education int experience; // years of work experience System.out.print("Enter years of education ===>> "); education = Expo.enterInt(); System.out.print("Enter years of experience ===>> "); experience = Expo.enterInt(); System.out.println(); if (education >= 16 != experience >= 5) System.out.println("You are hired!"); else System.out.println("You are not qualified."); System.out.println(); }
45
CHEAP BOSS
46
// Java1009.java // This program demonstrates the logical not ( ! ) operator. public class Java1009 { public static void main (String args[]) { System.out.println("Java1009\n"); int education; // years of education int experience; // years of work experience System.out.print("Enter years of education ===>> "); education = Expo.enterInt(); System.out.print("Enter years of experience ===>> "); experience = Expo.enterInt(); System.out.println(); if ( ! (education >= 16 || experience >= 5) ) System.out.println("You are hired!"); else System.out.println("You are not qualified."); System.out.println(); }
47
CRAZY BOSS
49
// Java1010.java // This program determines if an age is between 16 and 89. public class Java1010 { public static void main (String args[]) { System.out.println("Java1010\n"); int age; System.out.print("How old are you? ===>> "); age = Expo.enterInt(); System.out.println(); if (age >= 16 && age <= 89) System.out.println("You are the proper age to drive."); else System.out.println("You are not the proper age to drive."); System.out.println(); }
51
// Java1011.java // This program shows ranges, nested two-way selection, // and multi-way selection all at the same time. // This is how you have to do multi-way selection with real numbers. public class Java1011 { public static void main (String args[]) { System.out.println("Java1011\n"); double gpa; System.out.print("What is your gpa ===>> "); gpa = Expo.enterDouble(); System.out.println(); if (gpa >= 3.9) System.out.println("Summa Cum Laude"); else if (gpa >= 3.75) System.out.println("Magna Cum Laude"); else if (gpa >= 3.5) System.out.println("Cum Laude"); else if (gpa >= 2.0) System.out.println("Graduate without honors"); else System.out.println("Will not graduate"); System.out.println(); }
53
In the previous program many if…else statements were used to simulate multi-way selection. These statements are necessary because the switch statement has 2 limitations: a. switch does not work with ranges b. switch only works with ordinal data types An ordinal data type is one where every value has a definite next value and a definite previous value. int and char are ordinal data types. double and String are NOT. Why didn’t you use switch ?
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.