Presentation is loading. Please wait.

Presentation is loading. Please wait.

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.

Similar presentations


Presentation on theme: "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."— Presentation transcript:

1

2

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.

4

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)

8

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

16 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

17 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

18 Venn Diagram #3 The Boolean Algebra logical xor ( ⊕ ) can also be demonstrated with Venn Diagrams. A exclusive or B also A xor B also A ⊕ B

19 Venn Diagram #4 The Boolean Algebra logical not ( ~ ) not A also ~A This is the negation or the opposite of A.

20 Venn Diagram #5 The Boolean Algebra logical not ( ~ ) not B also ~B This is the negation or the opposite of B.

21 Venn Diagram #6 not (A and B) ~(A * B) This is the opposite of (A and B).

22 Venn Diagram #7 not (A or B) ~(A + B) This is the opposite of (A or B).

23 Venn Diagram #8 not A and not B ~A * ~B This is identical to not(A or B).

24 Venn Diagram #9 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 Venn Diagram #10 not (A xor B) ~(A ⊕ B) This is the opposite of (A xor B).

27 Tricky Venn Diagrams A and not (B) A or not(B) A xor not(B) A * ~B A + ~B A ⊕ ~B How would you shade these Venn Diagrams? AB

28 BA Tricky Venn Diagrams A and not (B) A or not(B) A xor not(B) A * ~B A + ~B A ⊕ ~B Step 1 – Shade A

29 Tricky Venn Diagrams A and not (B) A or not(B) A xor not(B) A * ~B A + ~B A ⊕ ~B Step 2 – Shade ~B a different way BA

30 Tricky Venn Diagram A and not (B) A * ~B Answer: The part that is shaded twice. BA

31 Tricky Venn Diagram A or not (B) A + ~B Answer: Everything that is shaded.

32 Tricky Venn Diagram A xor not (B) A ⊕ ~B Answer: Everything shaded only once.

33

34 // 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(); } JAVA1001.JAVA true False

35 // 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(); } JAVA1002.JAVA true False

36 Output for the next 3 programs… JAVA1003.JAVA What is the GCF of 120 and 108? --> 1 What is the GCF of 120 and 108? --> 2 What is the GCF of 120 and 108? --> 3 What is the GCF of 120 and 108? --> 4 What is the GCF of 120 and 108? --> 12 Answered correctly after 5 Attempt(s).

37 // 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"); }

38 // 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 ) // same as saying while (correct == false) { 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"); }

39 // 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"); }

40 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;

41

42 Java Logical Operators 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 != can also be used to indicate a logical XOR.

43 // 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(); }

44 NICE BOSS Java1006.java Enter years of education ===>> 16 Enter years of experience ===>> 0 You are hired! Java1006.java Enter years of education ===>> 13 Enter years of experience ===>> 7 You are hired! Java1006.java Enter years of education ===>> 18 Enter years of experience ===>> 10 You are hired! Java1006.java Enter years of education ===>> 12 Enter years of experience ===>> 3 You are not qualified.

45 // 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(); }

46 PICKY BOSS Java1007.java Enter years of education ===>> 16 Enter years of experience ===>> 0 You are not qualified. Java1007.java Enter years of education ===>> 13 Enter years of experience ===>> 7 You are not qualified. Java1007.java Enter years of education ===>> 18 Enter years of experience ===>> 10 You are hired! Java1007.java Enter years of education ===>> 12 Enter years of experience ===>> 3 You are not qualified.

47 // 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(); }

48 CHEAP BOSS Java1008.java Enter years of education ===>> 16 Enter years of experience ===>> 0 You are hired! Java1008.java Enter years of education ===>> 13 Enter years of experience ===>> 7 You are hired! Java1008.java Enter years of education ===>> 18 Enter years of experience ===>> 10 You are not qualified. Java1008.java Enter years of education ===>> 12 Enter years of experience ===>> 3 You are not qualified.

49 Java XOR Operator != Explained The result is only true when A is different from B. ATTFFATTFF BTFTFBTFTF A xor B F T F

50 // 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(); }

51 CRAZY BOSS Java1009.java Enter years of education ===>> 16 Enter years of experience ===>> 0 You are not qualified. Java1009.java Enter years of education ===>> 13 Enter years of experience ===>> 7 You are not qualified. Java1009.java Enter years of education ===>> 18 Enter years of experience ===>> 10 You are not qualified. Java1009.java Enter years of education ===>> 12 Enter years of experience ===>> 3 You are hired!

52

53 // 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(); }

54 Java1010.java How old are you? ===>> 16 You are the proper age to drive. Java1010.java How old are you? ===>> 43 You are the proper age to drive. Java1010.java How old are you? ===>> 13 You are not the proper age to drive. Java1010.java How old are you? ===>> 107 You are not the proper age to drive. Valid Range: 16-89

55 // 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(); }

56 Java1011.java What is your GPA? ===>> 4.0 Summa Cum Laude Java1011.java What is your GPA? ===>> 3.8 Magna Cum Laude Java1011.java What is your GPA? ===>> 3.5 Cum Laude Java1011.java What is your GPA? ===>> 2.5 Graduate without honors Java1011.java What is your GPA? ===>> 1.5 Will not graduate

57 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 does not work with the double data type. One new feature of Java Version 7 (jdk 1.7.0) is that switch now works with String s. Why didn’t you use switch ?

58

59 // Java1012.java // This program uses an structure inside a loop to protect // against faulty data entry. Valid SAT scores are between 400 and 1600. // If the user enters a score outside the proper range, he/she will be forced to reenter. public class Java1012 { public static void main (String args[]) { System.out.println("\nJAVA1012.JAVA\n"); boolean scoreOK = false; int sat = 0; while (!scoreOK) { System.out.print("Enter SAT ===>> "); sat = Expo.enterInt(); System.out.println(); scoreOK = (sat >= 400 && sat <= 1600); if (!scoreOK) { System.out.println( "Error... Please enter a valid SAT score between 400 and 1600."); System.out.println(); }

60 if (sat >= 1100) { System.out.println("You are admitted"); System.out.println("Orientation will start in June"); } else { System.out.println("You are not admitted"); System.out.println("Please try again when your SAT improves."); } System.out.println(); }

61 Java1012.java Enter SAT ===>> 100 Error... Please enter a valid SAT score between 400 and 1600. Enter SAT ===>> 2000 Error... Please enter a valid SAT score between 400 and 1600. Enter SAT ===>> -365 Error... Please enter a valid SAT score between 400 and 1600. Enter SAT ===>> 1000000 Error... Please enter a valid SAT score between 400 and 1600. Enter SAT ===>> 1300 You are admitted Orientation will start in June


Download ppt "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."

Similar presentations


Ads by Google