From Propositional! to Predicate Logic" CSCI 2824, Fall 2011" classes/struct11/home.html "

Size: px
Start display at page:

Download "From Propositional! to Predicate Logic" CSCI 2824, Fall 2011" classes/struct11/home.html ""

Transcription

1 From Propositional! to Predicate Logic" CSCI 2824, Fall 2011" classes/struct11/home.html "

2 Assignments To read this week: Sections (Emsley/ Crawley) For next week: Chapter "!!!!

3 Playing with Logic: Mastermind

4 Let s See if We Can Represent Mastermind Ideas in Propositional Logic First, let s make some proposition symbols. We ll say that BLUE1 stands for the proposition In the correct code, the blue peg is in position 1. There are a bunch of these propositions: BLUE2, BLUE3, BLUE4, ORANGE1, ORANGE2

5 More Mastermind In the correct code, there is one peg (of some color) in position 1 : BLUE1 OR ORANGE1 OR RED1 OR WHITE1 OR YELLOW1 OR PURPLE1 But that s not quite enough The statement above is consistent with the (incorrect) possibility that both a blue and orange (say) are in position 1.

6 So we need some additional statements: NOT (ORANGE1 AND BLUE1) NOT (ORANGE1 AND RED1) NOT (ORANGE1 AND PURPLE1) etc. These statements say It is not the case that there are two distinct colors in position 1

7 What do we learn from a guess? My guess: RED BLUE WHITE ORANGE Answer: X,0 From the X, I get: RED1 OR BLUE2 OR WHITE3 OR ORANGE4 NOT (RED1 AND BLUE2) NOT (RED1 AND WHITE3) NOT (RED1 AND ORANGE4) NOT (BLUE2 AND WHITE3) NOT (BLUE2 AND ORANGE4) NOT (WHITE3 AND ORANGE4)

8 What do we learn from a guess? My guess: RED BLUE WHITE ORANGE Answer: X,0 From the 0, I get: RED2 OR RED3 OR RED4 OR BLUE1 OR BLUE3 OR BLUE4 OR WHITE1 OR WHITE2 OR WHITE4 OR ORANGE1 OR ORANGE2 OR ORANGE3 NOT (RED2 AND BLUE1) many others of this form

9 How do we solve a code? Suppose we know: ORANGE1 OR BLUE1 NOT ORANGE1 Then we can conclude: BLUE1

10 What have we learned about propositional logic from this? One thing that we ve learned on the good side is that propositions do allow us to represent situations like Mastermind. On the not-so-good side, we ve found that doing real tasks with propositional logic (if you want to call Mastermind a real task) can require a surprising amount of infrastructure.

11 Why (or why not?) Propositional Logic It s simple to understand But it s rather inexpressive And simple to understand does not mean that all problems are simple: (x1 OR ~x5 OR x3) AND (~x1 OR ~x2 OR x6) AND (x3 OR x5 OR ~x6) AND.

12 A Brief Aside: Illogical Humans? Problems with Modus Ponens and Modus Tollens When are we logical?

13 K E 4 7 If a card has a vowel on one side, then it has an even number on the other side.

14 Drinking Coke Drinking Beer 21 years old 18 years old If a person is drinking an alcoholic beverage, then that person is at least twenty years old.

15 Propositional Logic: Where We ve Come So Far Basic objects are sentences with T/F values Connectors (AND, OR, NOT, etc.) are used to make compound sentences Basic rules of inference (Modus Ponens, etc.) are used to derive new sentences from a knowledge base of existing sentences

16 First-Order Predicate Logic We introduce a world of objects. Our logical sentences will refer to these objects. In many computer programs, the objects might refer to elements of a finite set (think about a database for, say, a library, or a business payroll) For our initial examples, we ll mainly use numbers as our objects (and we ll specify whether we mean a finite set, integers, rationals, reals, etc.)

17 Some Sample Predicates Prime (n) is the predicate n is a prime number (defined over the infinite set of positive integers) Even (n) is the predicate n is an even number Rational (x) is the predicate x is a rational number (defined over the infinite set of real numbers)

18 Some statements about positive integers (note: we still have the usual connectors): Prime (19) Even (7) OR Even (8) Prime(23) AND NOT(Even (23))

19 First-Order Predicate Logic: A Bit More Terminology We allow predicates of two or more arguments: Greater-Than(5, 3) Relatively-Prime (25, 6) Equal (2, 2) [often we just write 2 = 2 for simplicity] We have two quantifiers: THERE-EXISTS and FOR-ALL FOR-ALL(n) [(Prime(n) AND Greater-than(n, 2)) -> NOT (Even (n))] THERE-EXISTS(n) [Even(n) AND Prime(n)]

20 Predicate Logic Classics FOR-ALL(n)[ Prime(n) à THERE-EXISTS(q) [Greater-than(q, n) AND Prime(q)]]

21 Predicate Logic Classics FOR-ALL(n) [(Even(n) AND Greater-than(n, 2)) > THERE-EXISTS (p, q) [Prime(p) AND Prime(q) AND n = (p + q)]] The Goldbach Conjecture

22 Quantifiers in English: An Example You can fool all of the people some of the time, and some of the people all of the time, but you can t fool all of the people all of the time. FOR-ALL (x) [Person(x) --> THERE-EXISTS(t) [Time(t) AND Fool-at-time(x, t)]] THERE-EXISTS(x) [Person(x) AND (FOR-ALL(t) [Time(t) --> Fool-at-time(x, t)]] NOT(FOR-ALL(x, t)[(person(x) AND Time(t)) --> Fool-at-time(x,t)]

23 Quantifiers and Dean Martin Everybody loves somebody sometime. FOR-ALL(x)[Person(x) --> THERE-EXISTS(y, t) [Person(y) and Time(t) and Loves-at-time(x,y,t)]] THERE-EXISTS(t,y)[Time(t) AND Person(y) AND FOR-ALL(x)[Person(x) --> Loves-at-time(x,y, t)]]

24 THERE-EXISTS(t)[Time(t) AND FOR-ALL(x) [Person(x) --> THERE-EXISTS(y) THERE-EXISTS(y)[Person(y) AND [Person(y) AND Loves-at-time(x,y,t)]} FOR-ALL(x) [Person (x) --> THERE-EXISTS(t)[Time(t) AND Loves-at-time(x, y, t)]]

25 Mastermind Challenge Problem (due 9/6) Colors: Blue, Orange, Red, Yellow, Purple, White Repeat colors in the code are allowed. Clues: x = a peg in the right position o = a peg that has to be moved to be in the right position W O B R!!!xo! P Y R B!!!xo! R R O Y!!!ooo! Y R R W!!!xx!

1/ 19 2/17 3/23 4/23 5/18 Total/100. Please do not write in the spaces above.

1/ 19 2/17 3/23 4/23 5/18 Total/100. Please do not write in the spaces above. 1/ 19 2/17 3/23 4/23 5/18 Total/100 Please do not write in the spaces above. Directions: You have 50 minutes in which to complete this exam. Please make sure that you read through this entire exam before

More information

Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p.

Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p. Preface p. xi Introduction p. 1 The Elements of an Argument p. 1 Deduction and Induction p. 5 Deductive Argument Forms p. 7 Truth and Validity p. 8 Soundness p. 11 Consistency p. 12 Consistency and Validity

More information

Philosophy 405: Knowledge, Truth and Mathematics Spring Russell Marcus Hamilton College

Philosophy 405: Knowledge, Truth and Mathematics Spring Russell Marcus Hamilton College Philosophy 405: Knowledge, Truth and Mathematics Spring 2014 Russell Marcus Hamilton College Class #4: Aristotle Sample Introductory Material from Marcus and McEvoy, An Historical Introduction to the Philosophy

More information

First Order Logic. Xiaojin Zhu Computer Sciences Department University of Wisconsin, Madison. [Based on slides from Burr Settles]

First Order Logic. Xiaojin Zhu Computer Sciences Department University of Wisconsin, Madison. [Based on slides from Burr Settles] First Order Logic Xiaojin Zhu jerryzhu@cs.wisc.edu Computer Sciences Department University of Wisconsin, Madison [Based on slides from Burr Settles] slide 1 Problems with propositional logic Consider the

More information

Primes and Composites

Primes and Composites Primes and Composites The positive integers stand there, a continual and inevitable challenge to the curiosity of every healthy mind. It will be another million years, at least, before we understand the

More information

On the Infinity of Primes of the Form 2x 2 1

On the Infinity of Primes of the Form 2x 2 1 On the Infinity of Primes of the Form 2x 2 1 Pingyuan Zhou E-mail:zhoupingyuan49@hotmail.com Abstract In this paper we consider primes of the form 2x 2 1 and discover there is a very great probability

More information

Corinne: I m thinking of a number between 220 and 20. What s my number? Benjamin: Is it 25?

Corinne: I m thinking of a number between 220 and 20. What s my number? Benjamin: Is it 25? Walk the Line Adding Integers, Part I Learning Goals In this lesson, you will: Model the addition of integers on a number line. Develop a rule for adding integers. Corinne: I m thinking of a number between

More information

6.034 Notes: Section 4.1

6.034 Notes: Section 4.1 6.034 Notes: Section 4.1 Slide 4.1.1 What is a logic? A logic is a formal language. And what does that mean? It has a syntax and a semantics, and a way of manipulating expressions in the language. We'll

More information

1-5 Square Roots and Real Numbers. Holt Algebra 1

1-5 Square Roots and Real Numbers. Holt Algebra 1 1-5 Square Roots and Real Numbers Warm Up Lesson Presentation Lesson Quiz Bell Quiz 1-5 Evaluate 2 pts 1. 5 2 2 pts 2. 6 2 2 pts 3. 7 2 10 pts possible 2 pts 4. 8 2 2 pts 5. 9 2 Questions on 0-4/0-10/0-11

More information

First Order Logic Part 2

First Order Logic Part 2 First Order Logic Part 2 Yingyu Liang yliang@cs.wisc.edu Computer Sciences Department University of Wisconsin, Madison [Based on slides from Burr Settles and Jerry Zhu] slide 1 Convert the following sentences

More information

Chapter 4. Predicate logic allows us to represent the internal properties of the statement. Example:

Chapter 4. Predicate logic allows us to represent the internal properties of the statement. Example: 4.1 Singular and General Propositions Chapter 4 Predicate logic allows us to represent the internal properties of the statement. Apples are red A Firetrucks are red F The previous symbols give us no indication

More information

PHIL12A Section answers, 20 April 2011

PHIL12A Section answers, 20 April 2011 PHIL12A Section answers, 20 April 2011 Julian Jonker 1 From last time... Compare especially (a), (d) and (e) below. 1. (Ex 11.19) (c) No cube with nothing to its left is between two cubes. x((cube(x) yleftof(y,x))

More information

MATH 195: Gödel, Escher, and Bach (Spring 2001) Notes and Study Questions for Tuesday, March 20

MATH 195: Gödel, Escher, and Bach (Spring 2001) Notes and Study Questions for Tuesday, March 20 MATH 195: Gödel, Escher, and Bach (Spring 2001) Notes and Study Questions for Tuesday, March 20 Reading: Chapter VII Typographical Number Theory (pp.204 213; to Translation Puzzles) We ll also talk a bit

More information

Fill in dates in the table as you set your objectives and reach them. I can understand simple instructions used in class.

Fill in dates in the table as you set your objectives and reach them. I can understand simple instructions used in class. Listening A1 I can understand some words and short expressions about myself and my family, if someone speaks slowly and clearly. I can understand simple instructions used in class. I can understand words

More information

The Philosophy of Language. Frege s Sense/Reference Distinction

The Philosophy of Language. Frege s Sense/Reference Distinction The Philosophy of Language Lecture Two Frege s Sense/Reference Distinction Rob Trueman rob.trueman@york.ac.uk University of York Introduction Frege s Sense/Reference Distinction Introduction Frege s Theory

More information

Argument and argument forms

Argument and argument forms Argument and argument forms Definition An argument is a sequence of propositions that ends with a conclusion. All but the last statements are called premises. An argument is valid if the truth of the premises

More information

The Embedding Problem for Non-Cognitivism; Introduction to Cognitivism; Motivational Externalism

The Embedding Problem for Non-Cognitivism; Introduction to Cognitivism; Motivational Externalism The Embedding Problem for Non-Cognitivism; Introduction to Cognitivism; Motivational Externalism Felix Pinkert 103 Ethics: Metaethics, University of Oxford, Hilary Term 2015 Recapitulation Expressivism

More information

Peirce's Remarkable Rules of Inference

Peirce's Remarkable Rules of Inference Peirce's Remarkable Rules of Inference John F. Sowa Abstract. The rules of inference that Peirce invented for existential graphs are the simplest, most elegant, and most powerful rules ever proposed for

More information

Complete ISN: Objective(s): I can TPCASTT a new poem and look For leadership characteristics. Purpose: To explain & analyze poems.

Complete ISN: Objective(s): I can TPCASTT a new poem and look For leadership characteristics. Purpose: To explain & analyze poems. Complete ISN: Objective(s): I can TPCASTT a new poem and look For leadership characteristics. Purpose: To explain & analyze poems. Success Criteria: TPCASTT in Google Doc and example complete for each

More information

Reply to Stalnaker. Timothy Williamson. In Models and Reality, Robert Stalnaker responds to the tensions discerned in Modal Logic

Reply to Stalnaker. Timothy Williamson. In Models and Reality, Robert Stalnaker responds to the tensions discerned in Modal Logic 1 Reply to Stalnaker Timothy Williamson In Models and Reality, Robert Stalnaker responds to the tensions discerned in Modal Logic as Metaphysics between contingentism in modal metaphysics and the use of

More information

Unit 07 PC Form A. 1. Use pencil and paper to answer the question. Plot and label each point on the coordinate grid.

Unit 07 PC Form A. 1. Use pencil and paper to answer the question. Plot and label each point on the coordinate grid. 1. Use pencil and paper to answer the question. Plot and label each point on the coordinate grid. A (5,2) B (2,2) C (0,0) D (1,3) E (2,4) 2. Use pencil and paper to answer the question. Write two fractions

More information

TABLE OF CONTENTS. Free resource from Commercial redistribution prohibited. Language Smarts TM Level D.

TABLE OF CONTENTS. Free resource from   Commercial redistribution prohibited. Language Smarts TM Level D. Table of Contents TABLE OF CONTENTS About the Authors... ii Standards... vi About This Book... vii Syllables...1 Consonant Blends...6 Consonant Digraphs...12 Long and Short Vowels...18 Silent e...23 R-Controlled

More information

1 The structure of this exercise

1 The structure of this exercise CAS LX 522 Syntax I Fall 2013 Extra credit: Trees are easy to draw Due by Thu Dec 19 1 The structure of this exercise Sentences like (1) have had a long history of being pains in the neck. Let s see why,

More information

Vagueness & Pragmatics

Vagueness & Pragmatics Vagueness & Pragmatics Min Fang & Martin Köberl SEMNL April 27, 2012 Min Fang & Martin Köberl (SEMNL) Vagueness & Pragmatics April 27, 2012 1 / 48 Weatherson: Pragmatics and Vagueness Why are true sentences

More information

Lecture 5: Tuning Systems

Lecture 5: Tuning Systems Lecture 5: Tuning Systems In Lecture 3, we learned about perfect intervals like the octave (frequency times 2), perfect fifth (times 3/2), perfect fourth (times 4/3) and perfect third (times 4/5). When

More information

Alcohol-Specific Role Play Test

Alcohol-Specific Role Play Test Alcohol-Specific Role Play Test Interpersonal Scenes Scene #1: Narrator: Some friends have come over to watch the fight on TV. Everyone has been ready for a good match. Your friends have brought some beer

More information

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras

Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Language and Mind Prof. Rajesh Kumar Department of Humanities and Social Sciences Indian Institute of Technology, Madras Module - 07 Lecture - 32 Sentence CP in Subjects and Object Positions Let us look

More information

Blue - 1st. Double Blue - Yellow. Double. Green - Double Green - Orange - Pink - Free - Reader

Blue - 1st. Double Blue - Yellow. Double. Green - Double Green - Orange - Pink - Free - Reader Bishop Tufnell CofE Infant School Reading Book Bands April 2015 How to help your child enjoy their reading Old Bands Blue - 1st 2nd New Bands Double Blue - Yellow - 1st 2nd Double Yellow - 1st 2nd Green

More information

Classifying the Patterns of Natural Arguments

Classifying the Patterns of Natural Arguments University of Windsor Scholarship at UWindsor CRRAR Publications Centre for Research in Reasoning, Argumentation and Rhetoric (CRRAR) 2015 Classifying the Patterns of Natural Arguments Fabrizio Macagno

More information

boring sad uncertain lonesome

boring sad uncertain lonesome I'm thinking of you 1 A song: Lemon Tree A pre-watching Look at these pictures. Talk about the pictures. Which words, feelings come to your mind? 1 2 B boring sad uncertain lonesome.....................

More information

Transcriber(s): Yankelewitz, Dina Verifier(s): Reid, Adrienne, Farhat, Marcelle Date Transcribed: Spring 2009 Page: 1 of 6

Transcriber(s): Yankelewitz, Dina Verifier(s): Reid, Adrienne, Farhat, Marcelle Date Transcribed: Spring 2009 Page: 1 of 6 Page: 1 of 6 Line Speaker Transcript Code 1 T/R 2 Okay, let s see. We re calling the orange rod the number name fifty. How about the yellow rod? What number name will we give it? I would love to hear from

More information

Low Voltage Wall Mount Touch Panel RGB Controller

Low Voltage Wall Mount Touch Panel RGB Controller Low Voltage Wall Mount Touch Panel RGB Controller MODEL: LT-10S-WH Product Specifications Summary The Low Voltage Wall Mount RGB Controller is mainly used to control constant voltage LED products such

More information

Answer Key Grade 5. Practice Test. The Road Not Taken Birches

Answer Key Grade 5. Practice Test. The Road Not Taken Birches Answer Key Grade 5 The Road Not Taken Birches 1. Part A What does the word diverged in Lines 1 and 18 of The Road Not Taken mean? A Incorrect. Ended means stopped. This is not what diverged means. B Correct.

More information

cse371/mat371 LOGIC Professor Anita Wasilewska

cse371/mat371 LOGIC Professor Anita Wasilewska cse371/mat371 LOGIC Professor Anita Wasilewska LECTURE 1 LOGICS FOR COMPUTER SCIENCE: CLASSICAL and NON-CLASSICAL CHAPTER 1 Paradoxes and Puzzles Chapter 1 Introduction: Paradoxes and Puzzles PART 1: Logic

More information

Ratios. How are the numbers in each ad compared? Which ads are most effective?

Ratios. How are the numbers in each ad compared? Which ads are most effective? 5 and part to part, part to whole versions of ratios There are different ways to compare numbers. Look @ these advertisments. How are the numbers in each ad compared? Which ads are most effective? 1 5

More information

Book Report Makeover: Power of Persuasion

Book Report Makeover: Power of Persuasion Book Reports DUE Choose one Makeover to complete. Be book publicists. Book Report Makeover: Power of Persuasion Students write and deliver a 60 second speech intended to persuade others to read a book

More information

Sentences. A sentence is a group of words that tells a complete thought. A sentence always tells who or what

Sentences. A sentence is a group of words that tells a complete thought. A sentence always tells who or what SENTENCES Sentences A sentence is a group of words that tells a complete thought. A sentence always tells who or what and what is or what happens. SENTENCES Sentence I like to play with dogs. The smart

More information

The unbelievable musical magic of the number 12

The unbelievable musical magic of the number 12 The unbelievable musical magic of the number 12 This is an extraordinary tale. It s worth some good exploratory time. The students will encounter many things they already half know, and they will be enchanted

More information

Entering First Graders Review Packet * No Prep * (End of Kindergarten) *Common Core Aligned*

Entering First Graders Review Packet * No Prep * (End of Kindergarten) *Common Core Aligned* Entering First Graders Review Packet * No Prep * (End of Kindergarten) *Common Core Aligned* Summer Break Review Packet Completed By: Due by: Ready for First Grade Summer Review Packet Name: Due By: Summer

More information

Universals. Some Existence Arguments

Universals. Some Existence Arguments Universals Some Existence Arguments A Platonic Habit We are in the habit of postulating one unique Form for each plurality of objects to which we apply a common name (Republic x 596a) Our question: Is

More information

HEAVEN PALLID TETHER 1 REPEAT RECESS DESERT 3 MEMORY CELERY ABCESS 1

HEAVEN PALLID TETHER 1 REPEAT RECESS DESERT 3 MEMORY CELERY ABCESS 1 Heard of "the scientific method"? There's a really great way to teach (or learn) what this is, by actually DOING it with a very fun game -- (rather than reciting the standard sequence of the steps involved).

More information

T/R 1: How many think one third? You all agree. Can you tell me why you would give it the number name one third?

T/R 1: How many think one third? You all agree. Can you tell me why you would give it the number name one third? Page: 1 of 6 [T/R 1 takes one red rod away.] If I had to give another name, a number name for the red rod, if I called the dark green rod one, what would I call the red rod? What number name would I give

More information

Sidestepping the holes of holism

Sidestepping the holes of holism Sidestepping the holes of holism Tadeusz Ciecierski taci@uw.edu.pl University of Warsaw Institute of Philosophy Piotr Wilkin pwl@mimuw.edu.pl University of Warsaw Institute of Philosophy / Institute of

More information

Write It Right: Brenda Lyons, Ed.D. Say It Right

Write It Right: Brenda Lyons, Ed.D. Say It Right Write It Right: Brenda Lyons Ed.D Say It Right WRITE IT RIGHT: SAY IT RIGHT Many years ago when I served as the Associate Superintendent for Secondary Education in Edmond I became concerned about the many

More information

PROOF AND PROVING: LOGIC, IMPASSES, AND THE RELATIONSHIP TO PROBLEM SOLVING MILOS SAVIC, B.S., M.S. A dissertation submitted to the Graduate School

PROOF AND PROVING: LOGIC, IMPASSES, AND THE RELATIONSHIP TO PROBLEM SOLVING MILOS SAVIC, B.S., M.S. A dissertation submitted to the Graduate School PROOF AND PROVING: LOGIC, IMPASSES, AND THE RELATIONSHIP TO PROBLEM SOLVING BY MILOS SAVIC, B.S., M.S. A dissertation submitted to the Graduate School in partial fulfillment of the requirements for the

More information

Power Words come. she. here. * these words account for up to 50% of all words in school texts

Power Words come. she. here. * these words account for up to 50% of all words in school texts a and the it is in was of to he I that here Power Words come you on for my went see like up go she said * these words account for up to 50% of all words in school texts Red Words look jump we away little

More information

What is a Sentence? The rabbit that is hopping around. the horse track. The bunch of red roses. in their bee hives. is in a purple vase.

What is a Sentence? The rabbit that is hopping around. the horse track. The bunch of red roses. in their bee hives. is in a purple vase. What is a Sentence? Use colours to match a sentence beginning (the first column of boxes) with a sentence ending (the second column of boxes). Make a meaningful sentence. The rabbit that is hopping around

More information

What is the yellow cake, and what makes it yellow rather than merely cake?

What is the yellow cake, and what makes it yellow rather than merely cake? Department of Mathematics University of Nebraska at Omaha Omaha, NE 68182-0243, USA February 18, 2004 Best daily newspaper on the world wide web (?) EducationGuardian.co.uk Dear Sir/Madam, The purpose

More information

TERMS & CONCEPTS. The Critical Analytic Vocabulary of the English Language A GLOSSARY OF CRITICAL THINKING

TERMS & CONCEPTS. The Critical Analytic Vocabulary of the English Language A GLOSSARY OF CRITICAL THINKING Language shapes the way we think, and determines what we can think about. BENJAMIN LEE WHORF, American Linguist A GLOSSARY OF CRITICAL THINKING TERMS & CONCEPTS The Critical Analytic Vocabulary of the

More information

Getting to know a text:

Getting to know a text: Getting to know a text: What can you infer? when a few traps caught the culprits The ghost-hunter claims that on one startling occasion, he actually watched a bowl of oranges rise unaided off a sideboard

More information

The Language Revolution Russell Marcus Fall Class #7 Final Thoughts on Frege on Sense and Reference

The Language Revolution Russell Marcus Fall Class #7 Final Thoughts on Frege on Sense and Reference The Language Revolution Russell Marcus Fall 2015 Class #7 Final Thoughts on Frege on Sense and Reference Frege s Puzzles Frege s sense/reference distinction solves all three. P The problem of cognitive

More information

Unit 7.2. Terms. Words. Terms. (Table - 1)

Unit 7.2. Terms. Words. Terms. (Table - 1) Unit 7.2 Terms What is a Term? A term is a word or group of words which is either a subject or a predicate of a proposition. If a word or a group of words is neither a subject nor a predicate of a proposition,

More information

Cambridge Primary English as a Second Language Curriculum Framework mapping to English World

Cambridge Primary English as a Second Language Curriculum Framework mapping to English World Stage English World Reading Recognise, identify and sound, with some support, a range of language at text level Read and follow, with limited support, familiar instructions for classroom activities Read,

More information

The central or main idea of a nonfiction text is the point the author is making about a topic.

The central or main idea of a nonfiction text is the point the author is making about a topic. The central or main idea of a nonfiction text is the point the author is making about a topic. For instance, the main idea of an anti-smoking commercial may be that smoking is harmful to the health of

More information

In the sentence above we find the article "a". It shows us that the speaker does not need a specific chair. He can have any chair.

In the sentence above we find the article a. It shows us that the speaker does not need a specific chair. He can have any chair. English Grammar Articles (a, an, the) What are English grammar articles? An article is a word that is used before a noun to show whether the noun refers to something specific or not. A, anand the are articles.

More information

Apostolos Doxiadis. Euclid s Poetics. An examination of the similarity between narrative and proof 1

Apostolos Doxiadis. Euclid s Poetics. An examination of the similarity between narrative and proof 1 Apostolos Doxiadis Euclid s Poetics An examination of the similarity between narrative and proof 1 1. Introduction I want to state and briefly explore what I believe to be strong structural analogies between

More information

CS 151 Final. Instructions: Student ID. (Last Name) (First Name) Signature

CS 151 Final. Instructions: Student ID. (Last Name) (First Name) Signature CS 151 Final Name Student ID Signature :, (Last Name) (First Name) : : Instructions: 1. Please verify that your paper contains 19 pages including this cover. 2. Write down your Student-Id on the top of

More information

pre-watching Look at these pictures. Talk about the pictures. Which words, feelings come to your mind?

pre-watching Look at these pictures. Talk about the pictures. Which words, feelings come to your mind? I'm thinking of you 1 A song: Lemon Tree A pre-watching Look at these pictures. Talk about the pictures. Which words, feelings come to your mind? 1 2..................... B Match the words from the list

More information

Unit 3, Part 3 Whatif and Jimmy Jet and His TV Set

Unit 3, Part 3 Whatif and Jimmy Jet and His TV Set Whatif and Jimmy Jet and His TV Set Click the mouse button or press the space bar to continue (pages 388 393) Before You Read Reading the Selection After You Read For pages 388 393 In studying this text,

More information

MATH 214 (NOTES) Math 214 Al Nosedal. Department of Mathematics Indiana University of Pennsylvania. MATH 214 (NOTES) p. 1/3

MATH 214 (NOTES) Math 214 Al Nosedal. Department of Mathematics Indiana University of Pennsylvania. MATH 214 (NOTES) p. 1/3 MATH 214 (NOTES) Math 214 Al Nosedal Department of Mathematics Indiana University of Pennsylvania MATH 214 (NOTES) p. 1/3 CHAPTER 1 DATA AND STATISTICS MATH 214 (NOTES) p. 2/3 Definitions. Statistics is

More information

KAMPÉ DE FÉRIET AWARD ADDRESS. Enric Trillas.

KAMPÉ DE FÉRIET AWARD ADDRESS. Enric Trillas. IPMU 08, June 25, 2008, Torremolinos. KAMPÉ DE FÉRIET AWARD ADDRESS. Enric Trillas. Many thanks. I actually feel deeply honored. This award means a remarkable event in my life, because it reminds me the

More information

What can you learn from the character? How do you know this? Use a part of the story in your answer. RL 1.2

What can you learn from the character? How do you know this? Use a part of the story in your answer. RL 1.2 Reading 3D TRC Question Stems Level F What can you learn from the character? How do you know this? Use a part of the story in your answer. RL 1.2 Where do the characters live in this story? Use part of

More information

SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS GENERAL YEAR 12

SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS GENERAL YEAR 12 SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS GENERAL YEAR 12 Copyright School Curriculum and Standards Authority, 2015 This document apart from any third party copyright material contained in it may be

More information

Using Commas. c. Common introductory words that should be followed by a comma include yes, however, well.

Using Commas. c. Common introductory words that should be followed by a comma include yes, however, well. Using Commas The comma is a valuable, useful punctuation device because it separates the structural elements of sentences into manageable segments. The rules provided here are those found in traditional

More information

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE 1 MATH 16A LECTURE. OCTOBER 28, 2008. PROFESSOR: SO LET ME START WITH SOMETHING I'M SURE YOU ALL WANT TO HEAR ABOUT WHICH IS THE MIDTERM. THE NEXT MIDTERM. IT'S COMING UP, NOT THIS WEEK BUT THE NEXT WEEK.

More information

Product Specification

Product Specification Product Specification Name:RGBW 4 channel controller Model:RF104 I. Summarization RGBW 4 channel controller is a multifunction controller, mainly used for control 4 channel lamps, it supports switch the

More information

What is the meaning of the word as it is used in the passage?

What is the meaning of the word as it is used in the passage? LAFS.7.RL.2.4 (also L.3.4 and L.3.5) LAFS.7.RL.2.4 (also L.3.4 and L.3.5) What is the meaning of the word as it is used in the passage? Select the meaning of the word as it is used in the passage. Select

More information

Background to Gottlob Frege

Background to Gottlob Frege Background to Gottlob Frege Gottlob Frege (1848 1925) Life s work: logicism (the reduction of arithmetic to logic). This entailed: Inventing (discovering?) modern logic, including quantification, variables,

More information

ESL Helpful Handouts Page 1 of 10. The Present Progessive Tense, Information Questions, Short Answer Questions, Short Answers

ESL Helpful Handouts Page 1 of 10. The Present Progessive Tense, Information Questions, Short Answer Questions, Short Answers ESL Helpful Handouts Page 1 of 10 What s she What s she She s pouring a cup of tea. She s drinking a cup of coffee. Is she pouring a cup of tea? Is she drinking a cup of coffee? Yes, she is. Yes, she is.

More information

STAAR Reading Terms 6th Grade. Group 1:

STAAR Reading Terms 6th Grade. Group 1: STAAR Reading Terms 6th Grade Group 1: 1. synonyms words that have similar meanings 2. antonyms - words that have opposite meanings 3. context clues - words, phrases, or sentences that help give meaning

More information

Transcriber(s): Yankelewitz, Dina Verifier(s): Lew, Kristen Date Transcribed: Spring 2009 Page: 1 of 5

Transcriber(s): Yankelewitz, Dina Verifier(s): Lew, Kristen Date Transcribed: Spring 2009 Page: 1 of 5 Page: 1 of 5 Line Time Speaker Transcript 1 0:00 T/R 2 Ok I want you to think about this train. [T/R 2: puts a red and orange train on the overhead.] Can everybody take out the rods and make this train

More information

Scientific Philosophy

Scientific Philosophy Scientific Philosophy Gustavo E. Romero IAR-CONICET/UNLP, Argentina FCAGLP, UNLP, 2018 Philosophy of mathematics The philosophy of mathematics is the branch of philosophy that studies the philosophical

More information

The 4 Step Critique. Use the vocabulary of art to analyze the artwork. Create an outline to help you organize your information.

The 4 Step Critique. Use the vocabulary of art to analyze the artwork. Create an outline to help you organize your information. The 4 Step Critique This method of critique is based on the formal critique methods of Edmund Burke Feldman. Below the steps are defined and an example is given. Criticism is intended to give a work of

More information

Problem 5 Example Solutions

Problem 5 Example Solutions Problem 5 Example Solutions This document provides pictures of a working Tynker program for both game options described. Keep in mind that these are example solutions. Problems can be solved computationally

More information

Ten-Minute Grammar VERBALS. LITERATURE: This unit contains example selections from the novel Fallen Angels by Walter Dean Meyers.

Ten-Minute Grammar VERBALS. LITERATURE: This unit contains example selections from the novel Fallen Angels by Walter Dean Meyers. OBJECTIVES: 1. Students should understand that a. A verbal is a word that comes from a verb but doesn t ACT like a verb in the sentence. b. A gerund is a word that ends in ing and functions as a noun.

More information

META-COGNITIVE UNITY IN INDIRECT PROOFS

META-COGNITIVE UNITY IN INDIRECT PROOFS META-COGNITIVE UNITY IN INDIRECT PROOFS Ferdinando Arzarello, Cristina Sabena Dipartimento di Matematica, Università di Torino, Italia The paper focuses on indirect argumentation and proving processes

More information

Lecture 10 Popper s Propensity Theory; Hájek s Metatheory

Lecture 10 Popper s Propensity Theory; Hájek s Metatheory Lecture 10 Popper s Propensity Theory; Hájek s Metatheory Patrick Maher Philosophy 517 Spring 2007 Popper s propensity theory Introduction One of the principal challenges confronting any objectivist theory

More information

CS 2104 Intro Problem Solving in Computer Science READ THIS NOW!

CS 2104 Intro Problem Solving in Computer Science READ THIS NOW! READ THIS NOW! Print your name in the space provided below. There are 5 short-answer questions, priced as marked. The maximum score is 100. The grading of each question will take into account whether you

More information

Test Drive Report for BenQ FP71V+ LCD Monitor

Test Drive Report for BenQ FP71V+ LCD Monitor Test Drive Report for BenQ FP71V+ LCD Monitor The LCD industry s prominent manufacturers have all raced to release products with GTG (Gray to Gray) response time ratings through fear of losing the LCD

More information

4 DETERMINERS AND PRONOUNS

4 DETERMINERS AND PRONOUNS 4 DETERMINERS AND PRONOUNS 1 Fill in the blanks with the indefinite article, the definite article, or Ø (zero article). Discuss any difference in meaning in case you find that two solutions are equally

More information

Appendix B. Elements of Style for Proofs

Appendix B. Elements of Style for Proofs Appendix B Elements of Style for Proofs Years of elementary school math taught us incorrectly that the answer to a math problem is just a single number, the right answer. It is time to unlearn those lessons;

More information

Practice Task: The Sieve of Eratosthenes

Practice Task: The Sieve of Eratosthenes Practice Task: The Sieve of Eratosthenes STANDARDS FOR MATHEMATICAL CONTENT MCC4.OA.4 Find all factor pairs for a whole number in the range 1 100. Recognize that a whole number is a multiple of each of

More information

flower street snow bath suit rain sun block light pot coat star fish bird 5. A kind of lotion you put on your skin in the summer

flower street snow bath suit rain sun block light pot coat star fish bird 5. A kind of lotion you put on your skin in the summer Write a compound word for each meaning. Combine words from the box to make the compounds. Compound Words flower street snow bath suit rain sun block light pot coat star fish bird 1. An outside lamp 2.

More information

1.0 GENERAL. 1.2 SUMMARY.1 Section Includes:

1.0 GENERAL. 1.2 SUMMARY.1 Section Includes: 1.0 GENERAL 1.1 DOCUMENTS.1 This section of the Specification forms part of the Contract Documents and is to be read, interpreted, and coordinated with all other parts. 1.2 SUMMARY.1 Section Includes:

More information

LESSON 71. Vocabulary Review. Reading Words EXERCISE 1 EXERCISE 2. Column 2 m. Find column 2. (Teacher reference:)

LESSON 71. Vocabulary Review. Reading Words EXERCISE 1 EXERCISE 2. Column 2 m. Find column 2. (Teacher reference:) LESSON 71 116 Lesson 71 EXERCISE 1 Vocabulary Review a. You learned a sentence that tells how long she survived. Everybody, say that sentence. Get ready. (Signal.) She survived until she was rescued. (Repeat

More information

1. Use commas to separate independent clauses when they are joined by any of these seven coordinating conjunctions: and, but, for, or, nor, so, yet.

1. Use commas to separate independent clauses when they are joined by any of these seven coordinating conjunctions: and, but, for, or, nor, so, yet. Comma Use 1. Use commas to separate independent clauses when they are joined by any of these seven coordinating conjunctions: and, but, for, or, nor, so, yet. The game was over, but the crowd refused to

More information

Chapter 6. University Library

Chapter 6. University Library Authority: Approved by the Dean of the Faculty Affairs 6.1 Policy Statement Chapter 6. University Library OIST Graduate University Policies, Rules, & Procedures The Library of the Okinawa Institute of

More information

Articulating Medieval Logic, by Terence Parsons. Oxford: Oxford University Press,

Articulating Medieval Logic, by Terence Parsons. Oxford: Oxford University Press, Articulating Medieval Logic, by Terence Parsons. Oxford: Oxford University Press, 2014. Pp. xiii + 331. H/b 50.00. This is a very exciting book that makes some bold claims about the power of medieval logic.

More information

AAL Timetable and Abstracts

AAL Timetable and Abstracts AAL 2012 Timetable and Abstracts Contents Timetable 1 Friday 29 June.............................. 1 Saturday 30 June............................. 1 Logic and Computation 2 Ranjit Nair................................

More information

New Inside Out Beginner Units Tests

New Inside Out Beginner Units Tests New Inside Out Beginner Units 7-8-9 Tests Name Score /150 Part A Vocabulary Places in a city 1 Add the missing vowels (a, e, i, o, u) to complete the words. a) r _ v _ r b) b l d _ n g s c) b r _ d g _

More information

SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS ATAR YEAR 11

SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS ATAR YEAR 11 SAMPLE COURSE OUTLINE PHILOSOPHY AND ETHICS ATAR YEAR 11 Copyright School Curriculum and Standards Authority, 2014 This document apart from any third party copyright material contained in it may be freely

More information

Habits and Interpretation: defending the pragmatist

Habits and Interpretation: defending the pragmatist Habits and Interpretation: defending the pragmatist maxim Christopher Hookway 1. Strategies for proving the pragmatist maxim Peirce s pragmatic maxim was introduced as a methodological tool for clarifying

More information

Calculated Percentage = Number of color specific M&M s x 100% Total Number of M&M s (from the same row)

Calculated Percentage = Number of color specific M&M s x 100% Total Number of M&M s (from the same row) Name: Date: Period: The M&M (not the rapper) Lab Who would have guessed that the idea for M&M s Plain Chocolate Candies was hatched against the backdrop of the Spanish Civil War? Legend has it that, while

More information

Lesson 5: Possible or Impossible

Lesson 5: Possible or Impossible Data and robability -> 5: ossible or Impossible Getting Started? Big Ideas Lesson 5: ossible or Impossible How can probability be measured? How do we use measurement to help us make decisions? How can

More information

Ling 130: Formal Semantics. Spring Natural Deduction with Propositional Logic. Introducing. Natural Deduction

Ling 130: Formal Semantics. Spring Natural Deduction with Propositional Logic. Introducing. Natural Deduction Ling 130: Formal Semantics Rules Spring 2018 Outline Rules 1 2 3 Rules What is ND and what s so natural about it? A system of logical proofs in which are freely introduced but discharged under some conditions.

More information

Let's Learn About Notes

Let's Learn About Notes Product of Australia Contents Let's Learn About Notes by Beatrice Wilder Sheet Sheet 2 Sheet 3 Sheet 4 Sheet 5 Sheet 6 Sheet 7 Sheet 8 Sheet 9 Sheet 0 Sheet Sheet 2 Sheet 3 Basic Information About Notes

More information

Critical Thinking 4.2 First steps in analysis Overcoming the natural attitude Acknowledging the limitations of perception

Critical Thinking 4.2 First steps in analysis Overcoming the natural attitude Acknowledging the limitations of perception 4.2.1. Overcoming the natural attitude The term natural attitude was used by the philosopher Alfred Schütz to describe the practical, common-sense approach that we all adopt in our daily lives. We assume

More information

Enigma. Developed and patented (in 1918) by Arthur Scherbius Many variations on basic design Eventually adopted by Germany

Enigma. Developed and patented (in 1918) by Arthur Scherbius Many variations on basic design Eventually adopted by Germany Enigma Enigma 1 Enigma Developed and patented (in 1918) by Arthur Scherbius Many variations on basic design Eventually adopted by Germany o For both military and diplomatic use o Many variations used Broken

More information

Types of perceptual content

Types of perceptual content Types of perceptual content Jeff Speaks January 29, 2006 1 Objects vs. contents of perception......................... 1 2 Three views of content in the philosophy of language............... 2 3 Perceptual

More information

Dialogue Protocols for Formal Fallacies

Dialogue Protocols for Formal Fallacies Argumentation (2014) 28:349 369 DOI 10.1007/s10503-014-9324-4 Dialogue Protocols for Formal Fallacies Magdalena Kacprzak Olena Yaskorska Published online: 15 August 2014 Ó The Author(s) 2014. This article

More information