OWL and Inference: Practical examples Sean Bechhofer

Size: px
Start display at page:

Download "OWL and Inference: Practical examples Sean Bechhofer"

Transcription

1 Why did that happen? OWL and Inference: Practical examples Sean Bechhofer Syntax The examples in this session are presented using both DL syntax and Manchester Syntax. You should be familiar (and comfortable) with the various alternative syntactic presentations: Manchester Syntax DL Syntax FOL 1

2 Syntax Examples OWL: Class: TA Academic, Student DL: TA v Academic u Student ΦΟΛ: x.ta(x) Academic(x) Student(x) OWL: ObjectProperty: employs Range: Person DL: Top v employs.person ΦΟΛ: x.( y.employs(y,x)) Person(x) OWL: Class: CarOwner owns some Car DL: CarOwner owns.car ΦΟΛ: x.carowner(x) ( y.owns(x,y) Car(y)) Inference and Classes The people and pets example ontology contains a number of classes and properties intended to illustrate particular aspects of reasoning in OWL. We can make inferences about relationships between those classes, in particular subsumption between classes Recall that A subsumes B when it is the case that any instance of B must necessarily be an instance of A. A B 2

3 Inference and Individuals In addition, the model contains a number of individuals We can make inferences about the individuals, in particular inferring that particular individuals must be instances of particular classes. This can be because of subsumption relationships between classes, or because of the relationships between individuals. The following slides examine some of the inferences we can make in the example model and discuss why those inferences come about. Unique Name Assumption The Unique Name Assumption (UNA) says that any two individuals with different names are different individuals. OWL semantics does not make the UNA There are mechanisms in the language (owl:differentfrom and owl:alldifferent) that allow us to assert that individuals are different. However, many DL reasoners in the past have assumed UNA. 3

4 Classes The following examples illustrate reasoning with classes and class definitions. We show examples of Inferred Subsumptions Inconsistency Bus Drivers are Drivers Class: bus_driver that drives some bus Class: driver that drives some vehicle adult Class: bus vehicle A bus driver is a that drives a bus A bus is a vehicle A bus driver drives a vehicle, so must be a driver The subclass is inferred due to subclasses being used in existential quantification. 4

5 Cat Owners like Cats Class: cat_owner that has_pet some cat ObjectProperty: has_pet SubPropertyOf: likes Class: cat_liker that likes some cat Cat owners have cats as pets has_pet is a subproperty of likes, so anything that has a pet must like that pet. Cat owners must like a cat. The subclass is inferred due to a subproperty assertion Drivers are Grown Ups Class: driver that drives some vehicle adult Class: grownup adult and Drivers are defined as s that drive cars (complete definition) We also know that drivers are adults (partial definition) So all drivers must be adult s (e.g. grownups) An example of axioms being used to assert additional necessary information about a class. We do not need to know that a driver is an adult in order to recognize one, but once we have recognized a driver, we know that they must be adult. 5

6 Sheep are Vegetarians Class: sheep animal, eats only grass Class: grass plant Disjoint: animal or (part_of some animal), plant or (part_of some plant) Class: vegetarian animal that eats only (not (animal)) and eats only (not (part_of some animal)) Sheep only eat grass Grass is a plant Plants and parts of plants are disjoint from animals and parts of animals Vegetarians only eat things which are not animals or parts of animals Note the complete definition, which means that we can recognise when things are vegetarians. Giraffes are Vegetarians Class: giraffe animal, eats only leaf Class: leaf part_of some tree Class: tree plant Disjoint: animal or (part_of some animal), plant or (part_of some plant) Class: vegetarian animal that eats only (not (animal)) and eats only (not (part_of some animal)) Giraffes only eat leaves Leaves are parts of trees, which are plants Plants and parts of plants are disjoint from animals and parts of animals Vegetarians only eat things which are not animals or parts of animals Similar to the previous example with the additional inference provided by the existential restriction in the definition of leaf 6

7 Old Ladies own Cats Class: old_lady elderly and female and has_pet some animal and has_pet only cat Class: cat_owner that has_pet some cat Old ladies must have a pet. All pets that old ladies have must be cats. An old lady must have a pet that is a cat. An example of the interaction between an existential quantification (asserting the existence of a pet) and a universal quantification (constraining the types of pet allowed). This also illustrates that an ontology is one view on the world you may disagree with my modelling but I am being explicit about it. Class: cow vegetarian Mad Cows are inconsistent Disjoint: animal or (part_of some animal), plant or (part_of some plant) Class: vegetarian animal that eats only (not (animal)) and eats only (not (part_of some animal)) Class: mad_cow cow that eats some (brain that part_of some sheep) Class: sheep animal, eats only grass Cows are naturally vegetarians A mad cow is one that has been eating sheeps brains Sheep are animals Thus a mad cow has been eating part of an animal, which is inconsistent with the definition of a vegetarian. 7

8 Individuals The following examples illustrate reasoning with individuals. We look at why particular individuals can be inferred to be members of particular classes. The Daily Mirror is a Tabloid Individual: Daily_Mirror owl:thing Individual: Mick male Facts: reads Daily_Mirror, drives Q123ABC Individual: Q123ABC van, white_thing Class: white_van_man man that drives some (van and white_thing) reads only tabloid Mick drives a white van Mick must be a and an adult, so he is a man Mick is a man who drives a white van, so he s a white van man A white van man only reads tabloids, and Mick reads the Daily Mirror, thus the Daily Mirror must be a tabloid Here we see interaction between complete and partial definitions plus a universal quantification allowing an inference about a role filler. 8

9 Pete is a Person, Spike is an Animal Individual: Spike owl:thing Facts: is_pet_of Pete Individual: Pete owl:thing ObjectProperty: has_pet Domain: Range: animal InverseOf: is_pet_of SubPropertyOf: likes Spike is the pet of Pete So Pete has pet Spike Pete must be a Person Spike must be an Animal Here we see an interaction between an inverse relationship and domain and range constraints on a property. Walt loves animals Individual: Walt Facts: has_pet Dewey, has_pet Huey, has_pet Louie Individual: Huey duck DifferentFrom: Dewey,, Louie, Individual: Dewey duck DifferentFrom: Huey,, Louie, Individual: Louie duck DifferentFrom: Dewey,, Huey, Class: animal_lover that has_pet min 3 owl:thing Walt has pets Huey, Dewey and Louie Huey Dewey and Louie are all distinct individuals Walt has at least three pets and is thus an animal lover. Note that in this case, we don t actually need to include in the definition of animal lover (as the domain restriction will allow us to draw this inference). 9

10 Tom is a Cat Individual: Minnie elderly, female Facts: has_pet Tom Individual: Tom owl:thing ObjectProperty: has_pet Domain: Range: animal InverseOf: is_pet_of SubPropertyOf: likes Class: old_lady elderly and female and has_pet some animal and has_pet only cat Minnie is elderly, female and has a pet, Tom Minnie must be a Minnie is be an old lady All Minnie s pets must be cats. Here the domain restriction gives us additional information which then allows us to infer a more specific type. The universal quantification then allows us to infer information about the role filler. General Patterns of Inference The next slides and examples illustrate some of the interactions between quantification and boolean operators. De Morgan s laws and Distribution We also discuss the ramifications of open world reasoning. 10

11 De Morgan s Laws De Morgan s laws tell us how the various boolean and quantification operators relate to one another. The laws hold because of the way in which the interpretations are defined along with the corresponding laws in the underlying set theory. Thus we have: ( A) A (A u B) A t B (A t B) A u B R.A R. A R.A R. A De Morgan s Laws OWL has boolean operators and, or, not Due De Morgan s laws, we can see that these are not all necessary. Operators such as union or intersection can be defined in terms of the others. A u B (A u B) ( A t B) Or in OWL: (A and B) not((not A) or (not B)) Quantification can also be rewritten: R.A R.A ( R. A) Or in OWL: R only B not (R some (not B)) 11

12 Interpretation Example Revisited Δ = {v, w, x, y, z} A I = {v, w, x} B I = {x, y} R I = {(v, w), (v, x), (y, x), (x, z)} v w A I A u B = ( A t B) 8 R B = ( R. B) x y z B I Distribution Rules Distribution rules relate and and or: A u (B t C) (A u B) t (A u C) A t (B u C) (A t B) u (A t C) Or in OWL A and (B or C) (A and B) or (A and C) A or (B and C) (A or B) and (A or C) 12

13 Distribution Rules Distribution rules for existential quantification are similar to those for conjunction and disjunction: p some (A or B) (p some A) or (p some B) There are also inferences that can be drawn between expressions involving existential quantification and conjunction: p some (A and B) (p some A) and (p some B) (p some A) and (p some B) (p some A) or (p some B) (p some A) and (p some B) p some (A or B) The above inferences are not logical equivalences. Union is distributive in existentials, intersection is not. A Simple Ontology Class: :Professor :Academic Class: :Academic :Person DisjointWith: :Student Class: :Lecturer :Academic Class: :Student :Person DisjointWith: :Academic Class: :Happy :Person Class: :Person ObjectProperty: :isfriendof InverseOf: :hasfriend ObjectProperty: :hasfriend InverseOf: :isfriendof We have some basic classes, Person, Academic, Professor and Student. There is also a subclass of Happy Persons. Students and Academics are disjoint. 13

14 Example Individuals Individual: arthur Happy, Student Individual: bob Student, not Happy Individual: charlie Professor, Happy Individual: diane Professor, not Happy Professor Charlie Diane Student Bob Arthur Happy Note we can infer that Professors and Students are disjoint due to the disjointness axiom concerning Academics. Example Individuals Individual: patricia Facts: hasfriend arthur Individual: quentin Facts: hasfriend charlie, hasfriend bob Individual: richard Facts: hasfriend charlie Individual: roberta Facts: hasfriend bob These individuals now provide witnesses for the non-equivalence of definitions. (p some A) and (p some B) [A] p some (A and B) [B] Quentin has a friend who is Happy (Charlie) and a friend who is a Student (Bob). Quentin is not known to have a friend who is both Happy and a Student. We are able to infer that Quentin is an instance of [A], but not of [B]. 14

15 Distribution Rules Distribution rules for universal quantification are similar to those for and/or: p only (A and B) (p only A) and (p only B) There are also inferences that can be drawn between expressions involving universal quantification and disjunction: (p only A) and (p only B)) (p only A) or (p only B) p only (A and B) (p only A) or (p only B) (p only A) or (p only B)) p only (A or B) Again, the above inferences are not logical equivalences. Intersection is distributive in existentials, union is not. Closed and Open Worlds In our previous examples, we find that Patricia is not an instance of hasfriend only (Student and Happy) This is due to the open world assumption (OWA). We cannot assume that if we don t know something then it is false. In this example, there may be other friends that Patricia has that are not Students. Reasoning in DLs is monotonic If we know that x is an instance of A, then adding more information to the model cannot cause this to become false. 15

16 Example Individuals Individual: xanthe hasfriend exactly 1 owl:thing Facts: hasfriend arthur Individual: yolanda hasfriend exactly 2 owl:thing Facts: hasfriend bob, hasfriend charlie Individual: zaphod hasfriend exactly 1 owl:thing Facts: hasfriend charlie Individual: zeke hasfriend exactly 1 owl:thing Facts: hasfriend bob The above individuals have extra cardinality constraints that close the roles and allow us to make inferences about all the friends that they have. So Xanthe is now an instance of hasfriend only intersectionof(student Happy) Billy No Mates Individual: william hasfriend exactly 0 owl:thing William has no friends. But William is an instance of: hasfriend only (Student and Happy) hasfriend only (Student or Happy) In fact he s an instance of hasfriend only X For any X (even Nothing!). Universal quantification over an empty collection is trivially true. 16

17 (Lack of) UNA revisited Individual: fred(a:fred hasfriend exactly 1 owl:thing Facts: hasfriend john, hasfriend jack Individual: john Individual: jack Fred has exactly one friend. Fred has a friend John and friend Jack This allows us to infer that John and Jack must be the same. 17

Moving toward formalisation COMP62342

Moving toward formalisation COMP62342 Moving toward formalisation COMP62342 Sean Bechhofer sean.bechhofer@manchester.ac.uk Uli Sattler uli.sattler@manchester.ac.uk (thanks to Bijan Parsia for slides) Previously... We started the knowledge

More information

Moving towards formalisation COMP62342

Moving towards formalisation COMP62342 Moving towards formalisation COMP62342 Sean Bechhofer sean.bechhofer@manchester.ac.uk Uli Sattler uli.sattler@manchester.ac.uk (thanks to Bijan Parsia for slides) Previously... We started the Knowledge

More information

An Introduction to Formal Logic

An Introduction to Formal Logic An Introduction to Formal Logic Richard L. Epstein Advanced Reasoning Forum Copyright 2016 by Richard L. Epstein. All rights reserved. No part of this work may be reproduced, stored in a retrieval system,

More information

Logical Forms. Prof. Sameer Singh CS 295: STATISTICAL NLP WINTER February 16, 2017

Logical Forms. Prof. Sameer Singh CS 295: STATISTICAL NLP WINTER February 16, 2017 Logical Forms Prof. Sameer Singh CS 295: STATISTICAL NLP WINTER 2017 February 16, 2017 Based on slides from Noah Smith, Dan Klein, Tom Kwiatkowski, and everyone else they copied from. Outline Logical Semantics

More information

Semantics. These slides were produced by Hadas Kotek.

Semantics. These slides were produced by Hadas Kotek. Semantics These slides were produced by Hadas Kotek. http://web.mit.edu/hkotek/www/ 1 Sentence types What is the meaning of a sentence? The lion devoured the pizza. Statement 2 Sentence types What is the

More information

THE PIGEONHOLE PRINCIPLE AND ITS APPLICATIONS

THE PIGEONHOLE PRINCIPLE AND ITS APPLICATIONS International Journal of Recent Innovation in Engineering and Research Scientific Journal Impact Factor - 3.605 by SJIF e- ISSN: 2456 2084 THE PIGEONHOLE PRINCIPLE AND ITS APPLICATIONS Gaurav Kumar 1 1

More information

On Some Counterexamples to the Transitivity of Grounding

On Some Counterexamples to the Transitivity of Grounding Essays in Philosophy Volume 14 Issue 1 Grounding Relation(s) Article 3 January 2013 On Some Counterexamples to the Transitivity of Grounding Jon Erling Litland University of Oslo Follow this and additional

More information

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning.

Machine Learning.! A completely different way to have an. agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! A completely different way to have an agent acquire the appropriate abilities to solve a particular goal is via machine learning. Machine Learning! What is Machine Learning? " Programs

More information

Superlative Quantifiers as Meta Speech Acts

Superlative Quantifiers as Meta Speech Acts Superlative Quantifiers as Meta Speech Acts Ariel Cohen Manfred Krifka Ben Gurion University of the Negev Humboldt-Universität zu Berlin & Zentrum für Allgemeine Sprachwissenschaft, Berlin Introduction

More information

Who has got my ears? Animal Elephant Mouse Dog. Ear. Ear. Giraffe

Who has got my ears? Animal Elephant Mouse Dog. Ear. Ear. Giraffe Who has got my ears? Are these animals looking funny? The artist has drawn wrong ears on the heads of the animals. Give correct ears to the animals in the space given below. Animal Ear Animal Elephant

More information

Companion stories. For more such stories, visit us at.

Companion stories. For more such stories, visit us at. Companion stories For more such stories, visit us at These stories are companion to the Reading Lesson program. The blank space above the story is for child to draw a picture related to the story content.

More information

Unit. Say then write the animals. Which parts of a crocodile can you see? What can you see in this picture?

Unit. Say then write the animals. Which parts of a crocodile can you see? What can you see in this picture? Unit 1 Animals 1 2 3 4 5 6 7 8 9 10 11 12 A B Say then write the animals. 1 5 9 2 6 10 3 7 11 4 8 12 Which parts of a crocodile can you see? 1 2 3 4 5 C What can you see in this picture? How much do you

More information

Lab 5: Bumper Turtles

Lab 5: Bumper Turtles Lab 5: Bumper Turtles min-pxcor = -16, max-pxcor = 16, min-pycor = -16, max-pycor = 16 The Bumper Turtles model created in this lab requires the use of Boolean logic and conditional control flow. The basic

More information

Grade 2 English Language Arts

Grade 2 English Language Arts What should good student writing at this grade level look like? The answer lies in the writing itself. The Writing Standards in Action Project uses high quality student writing samples to illustrate what

More information

Section: 101 (2pm-3pm) 102 (3pm-4pm)

Section: 101 (2pm-3pm) 102 (3pm-4pm) Stat 20 Midterm Exam Instructor: Tessa Childers-Day 12 July 2012 Please write your name and student ID below, and circle your section With your signature, you certify that you have not observed poor or

More information

Dasher Web Service USER/DEVELOPER DOCUMENTATION June 2010 Version 1.1

Dasher Web Service USER/DEVELOPER DOCUMENTATION June 2010 Version 1.1 Dasher Web Service USER/DEVELOPER DOCUMENTATION June 2010 Version 1.1 Credit for the instructional design theory and algorithms employed by Dasher goes to James Pusack and Sue Otto of The University of

More information

Inferring SKILLS INTRODUCTION

Inferring SKILLS INTRODUCTION SKILLS INTRODUCTION Inferring Have you ever come home, smelled fish cooking, and thought, We re having fish for dinner? You made an observation using your sense of smell and used past experience to conclude

More information

Let s learn about ANIMALS. Level : School:.

Let s learn about ANIMALS. Level : School:. Let s learn about ANIMALS Name: Level : School:. 1. CLASSIFICATION OF ANIMALS There are many different animals and we can classify them according to: Their skeleton: Vertebrates have a skeleton but Invertebrates

More information

Retold by Sue Arengo Illustrated by Kate Aldous OXFORD

Retold by Sue Arengo Illustrated by Kate Aldous OXFORD Retold by Sue Arengo Illustrated by Kate Aldous OXFORD Before you read, can you match the words with the pictures? 1 Town Mouse a 2 Country Mouse ''---- b 3 bed 4 cow c d 5 home 6 cart 9 7 food THIS is

More information

MY STORE THANK YOU! ...all I ask is that you copy and use this resource as much as you want for your own use, in your classroom or homeschool.

MY STORE THANK YOU! ...all I ask is that you copy and use this resource as much as you want for your own use, in your classroom or homeschool. THANK YOU! You choosing my resources to both save time and have fun with your students means the world to me. My passion in life is helping awesome and busy teachers like you have more time to love teaching

More information

Chapter 6: Extending Theory

Chapter 6: Extending Theory L322 Syntax Chapter 6: Extending Theory Linguistics 322 1. Determiner Phrase A. C. talks about the hypothesis that all non-heads must be phrases. I agree with him here. B. I have already introduced D (and

More information

START: Read 1 Guide for Repeated Interactive Read-Alouds

START: Read 1 Guide for Repeated Interactive Read-Alouds Push-In and Connect Key Events START: Read 1 Guide for Repeated Interactive Read-Alouds Corduroy Lost and Found By: Don Freeman Push-In Story Problem Target Vocabulary Read 1: STATE STATE: Show cover illustration

More information

DARWIN LECTURE SERIES..

DARWIN LECTURE SERIES.. http://ky.aipg.org Mailing Address Kentucky Section AIPG P.O. Box 24690 Lexington, KY 40524-4690 2011 EXECUTIVE COMMITTEE President: Frank Ettensohn President-elect: Charlie Mason Vice President: Trent

More information

All about our Training Courses

All about our Training Courses SPPOT, A Community Interest Company All about our Training Courses Introduction SPPOT is delighted to be able to offer new accredited training courses in the care, welfare and training of dogs, in partnership

More information

Let s Talk Turkey Selection Let s Talk Turkey Expository Thinking Guide Color-Coded Expository Thinking Guide and Summary

Let s Talk Turkey Selection Let s Talk Turkey Expository Thinking Guide Color-Coded Expository Thinking Guide and Summary Thinking Guide Activities Expository Title of the Selection: Let s Talk Turkey Teaching Band Grades 3-5 Genre: Nonfiction Informational, Magazine Article The selection and Expository Thinking Guide are

More information

Cats, lions and zebras: assumptions, predictions, the utility function, and, sufficient but not necessary

Cats, lions and zebras: assumptions, predictions, the utility function, and, sufficient but not necessary Cats, lions and zebras: assumptions, predictions, the utility function, and, sufficient but not necessary catfood.tex February 20, 2007 Consider the following theory about "What s for dinner?": Definitions:

More information

Animals Of America: A Visual Encyclopedia Of Amphibians, Reptiles And Mammals Of The United States, Canada And South America.

Animals Of America: A Visual Encyclopedia Of Amphibians, Reptiles And Mammals Of The United States, Canada And South America. Animals Of America: A Visual Encyclopedia Of Amphibians, Reptiles And Mammals Of The United States, Canada And South America. By Tom Jackson If you are looking for the book by Tom Jackson Animals of America:

More information

24 The Pigeonhole Principle

24 The Pigeonhole Principle 24 The Pigeonhole Principle Tom Lewis Fall Term 2010 Tom Lewis () 24 The Pigeonhole Principle Fall Term 2010 1 / 9 Outline 1 What is the pigeonhole principle 2 Illustrations of the principle 3 Cantor s

More information

Teacher Edition. Lizard s Tail. alphakids. Written by Mark Gagiero Illustrated by Kelvin Hucker

Teacher Edition. Lizard s Tail. alphakids. Written by Mark Gagiero Illustrated by Kelvin Hucker Teacher Edition Lizard s Tail alphakids Written by Mark Gagiero Illustrated by Kelvin Hucker Published edition Eleanor Curtain Publishing 2004 First published 2004 Apart from any fair dealing for the purposes

More information

Recurrent neural network grammars. Slide credits: Chris Dyer, Adhiguna Kuncoro

Recurrent neural network grammars. Slide credits: Chris Dyer, Adhiguna Kuncoro Recurrent neural network grammars Slide credits: Chris Dyer, Adhiguna Kuncoro Widespread phenomenon: Polarity items can only appear in certain contexts Example: anybody is a polarity item that tends to

More information

THE ARTICLE. New mammal species found

THE ARTICLE. New mammal species found THE ARTICLE New mammal species found BNE: A wildlife expert in Laos has found a new species of animal a rodent. It was found in a very strange place. Conservationist Dr Robert Timmins was walking through

More information

Approximating the position of a hidden agent in a graph

Approximating the position of a hidden agent in a graph Approximating the position of a hidden agent in a graph Hannah Guggiari, Alexander Roberts, Alex Scott May 13, 018 Abstract A cat and mouse play a pursuit and evasion game on a connected graph G with n

More information

INFO 1103 Homework Project 2

INFO 1103 Homework Project 2 INFO 1103 Homework Project 2 February 15, 2018 Due March 14, 2018, at the end of the lecture period. 1 Introduction In this project, you will design and create the appropriate tables for a version of the

More information

Identity Management with Petname Systems. Md. Sadek Ferdous 28th May, 2009

Identity Management with Petname Systems. Md. Sadek Ferdous 28th May, 2009 Identity Management with Petname Systems Md. Sadek Ferdous 28th May, 2009 Overview Entity, Identity, Identity Management History and Rationales Components and Properties Application Domain of Petname Systems

More information

Being Human: The Problem of Imprinting in Predatory Birds. By Sarah Yeend. Any child who has watched Fly Away Home or read Frightful s Mountain is

Being Human: The Problem of Imprinting in Predatory Birds. By Sarah Yeend. Any child who has watched Fly Away Home or read Frightful s Mountain is Being Human Yeend 1 Being Human: The Problem of Imprinting in Predatory Birds By Sarah Yeend Any child who has watched Fly Away Home or read Frightful s Mountain is familiar with the behavioral phenomenon

More information

TEACHERS TOPICS A Lecture About Pharmaceuticals Used in Animal Patients

TEACHERS TOPICS A Lecture About Pharmaceuticals Used in Animal Patients TEACHERS TOPICS A Lecture About Pharmaceuticals Used in Animal Patients Elaine Blythe Lust, PharmD School of Pharmacy and Health Professions, Creighton University Submitted October 30, 2008; accepted January

More information

King Fahd University of Petroleum & Minerals College of Industrial Management

King Fahd University of Petroleum & Minerals College of Industrial Management King Fahd University of Petroleum & Minerals College of Industrial Management CIM COOP PROGRAM POLICIES AND DELIVERABLES The CIM Cooperative Program (COOP) period is an essential and critical part of your

More information

The Application of Animal Welfare Ethics Student Activities

The Application of Animal Welfare Ethics Student Activities Module 12 The Application of Animal Welfare Ethics Questions 1. Briefly explain the difference between equal consideration of interests and a sliding scale of moral status for different species. (4 marks)

More information

Freda the Signmaker by Debbie O Brien illustrated by Victor Kennedy

Freda the Signmaker by Debbie O Brien illustrated by Victor Kennedy Suggested levels for Guided Reading, DRA, Lexile, and Reading Recovery are provided in the Pearson Scott Foresman Leveling Guide. Freda the Signmaker by Debbie O Brien illustrated by Victor Kennedy Genre

More information

Blue eyed Villagers. Contents. Summer Puzzle 2. 2 Discussion 3. 3 Solution 4

Blue eyed Villagers. Contents. Summer Puzzle 2. 2 Discussion 3. 3 Solution 4 Blue eyed Villagers Summer 2009 Contents 1 Puzzle 2 2 Discussion 3 3 Solution 4 1 1 Puzzle For this puzzle, we go to that favourite retreat of mathematicians, an island full of perfect logicians. The island

More information

Determiners and generalized quantifiers

Determiners and generalized quantifiers Semantics I, Rutgers University Week 7 Yimei Xiang October 15, 2018 eterminers and generalized quantifiers 1. The A -phrase denotes an referential individual of type e. The definite determiner is of type

More information

A Curriculum Guide to. Inside of a Dog Young Readers Edition: What Dogs See, Smell, and Know By Alexandra Horowitz Illustrated by Sean Vidal Edgerton

A Curriculum Guide to. Inside of a Dog Young Readers Edition: What Dogs See, Smell, and Know By Alexandra Horowitz Illustrated by Sean Vidal Edgerton A Curriculum Guide to Inside of a Dog Young Readers Edition: What Dogs See, Smell, and Know By Alexandra Horowitz Illustrated by Sean Vidal Edgerton About the Book Here s your chance to experience the

More information

Multilevel Script. Teacher s Guide. Animals, Animals. Level E Level H Level K. Levels: E, H, and K Word Count: 460. Story Summary: Cast of Characters:

Multilevel Script. Teacher s Guide. Animals, Animals. Level E Level H Level K. Levels: E, H, and K Word Count: 460. Story Summary: Cast of Characters: Teacher s Guide Multilevel Animals, Animals Levels: E, H, and K Word Count: 460 Adapted by Jan Mader from a Reading A Z Multilevel book Images: Public domain/courtesy of Francis Morgan Story Summary: You

More information

STATE OF WISCONSIN : CIRCUIT COURT : MANITOWOC COUNTY ) ) ) ) ) ) ) ) ) ) AFFIDAVIT OF JOSHUA R. RADANDT

STATE OF WISCONSIN : CIRCUIT COURT : MANITOWOC COUNTY ) ) ) ) ) ) ) ) ) ) AFFIDAVIT OF JOSHUA R. RADANDT STATE OF WISCONSIN : CIRCUIT COURT : MANITOWOC COUNTY ST ATE OF WISCONSIN, Plaintiff, V. STEVEN A. A VERY, Defendant. Case No. 05-CF-381 Honorable Judge Angela Sutkiewicz, Judge Presiding AFFIDAVIT OF

More information

DEMOGRAPHIC AND HEALTH SURVEYS ACCIDENT AND INJURY MODULE MODEL HOUSEHOLD QUESTIONNAIRE IDENTIFICATION (1)

DEMOGRAPHIC AND HEALTH SURVEYS ACCIDENT AND INJURY MODULE MODEL HOUSEHOLD QUESTIONNAIRE IDENTIFICATION (1) [ OF COUNTRY] [ OF ORGANIZATION] DEMOGRAPHIC AND HEALTH SURVEYS ACCIDENT AND INJURY MODULE MODEL HOUSEHOLD QUESTIONNAIRE FORMATTING DATE: ENGLISH LANGUAGE: 04 Jun 2016 01 Jun 2016 IDENTIFICATION (1) PLACE

More information

The online processing of semantic and pragmatic content

The online processing of semantic and pragmatic content The online processing of semantic and pragmatic content LINGUIST510 Brian Dillon Psycholinguistics Comprehension: How do we compute the meaning of a sentence in real time? What are the online computations

More information

Pupils work out how many descendents one female cat could produce in 18 months.

Pupils work out how many descendents one female cat could produce in 18 months. Cats and Kittens Task description Pupils work out how many descendents one female cat could produce in 18 months. Suitability National Curriculum levels 5 to 8 Time Resources 45 minutes to 1 hour Paper

More information

KS1 Baby Animals. Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH

KS1 Baby Animals. Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH KS1 Baby Animals Marwell is a limited liability company registered in England and Wales under no. 1355272. The company is a registered charity,

More information

Examination Report 2005 Starters. Starters Papers. Version 40. Cambridge Young Learners English Tests. YLE Examination Report 2005 Page 27

Examination Report 2005 Starters. Starters Papers. Version 40. Cambridge Young Learners English Tests. YLE Examination Report 2005 Page 27 Examination Report 2005 Starters Starters Papers Version 40 YLE Examination Report 2005 Page 27 Starters Listening Centre Number Candidate Number Cambridge Young Learners English Starters Listening Version

More information

RCPS7-Science-Evolution (RCPS7-Science-Evolution) 1. Which is an adaptation that makes it possible for the animal to survive in a cold climate?

RCPS7-Science-Evolution (RCPS7-Science-Evolution) 1. Which is an adaptation that makes it possible for the animal to survive in a cold climate? Name: Date: 1. Which is an adaptation that makes it possible for the animal to survive in a cold climate? A. tail on a lizard B. scales on a fish C. stripes on a tiger D. fur on a bear 2. Use the picture

More information

Correlation to Georgia Quality Core Curriculum

Correlation to Georgia Quality Core Curriculum 1. Strand: Oral Communication Topic: Listening/Speaking Standard: Adapts or changes oral language to fit the situation by following the rules of conversation with peers and adults. 2. Standard: Listens

More information

COMP Intro to Logic for Computer Scientists. Lecture 9

COMP Intro to Logic for Computer Scientists. Lecture 9 COMP 1002 Intro to Logic for Computer Scientists Lecture 9 B 5 2 J Puzzle 8 Suppose that nobody in our class carries more than 10 pens. There are 70 students in our class. Prove that there are at least

More information

FOREWORD I ALWAYS felt about crosswords the way I now feel about croissants. I like to watch other people eating moist buttery croissants, but I can t

FOREWORD I ALWAYS felt about crosswords the way I now feel about croissants. I like to watch other people eating moist buttery croissants, but I can t FOREWORD I ALWAYS felt about crosswords the way I now feel about croissants. I like to watch other people eating moist buttery croissants, but I can t eat them myself because I m a coeliac. I m very fond

More information

Brinton & Fujiki Brigham Young University Social Communication Intervention Script for story book, The Pigeon Finds a Hotdog

Brinton & Fujiki Brigham Young University Social Communication Intervention Script for story book, The Pigeon Finds a Hotdog Brinton & Fujiki Brigham Young University Social Communication Intervention Script for story book, The Pigeon Finds a Hotdog The Pigeon Finds a Hotdog by Mo Willems, 2004, New York: Hyperion Books for

More information

News English.com Ready-to-use ESL / EFL Lessons

News English.com Ready-to-use ESL / EFL Lessons www.breaking News English.com Ready-to-use ESL / EFL Lessons 1,000 IDEAS & ACTIVITIES FOR LANGUAGE TEACHERS The Breaking News English.com Resource Book http://www.breakingnewsenglish.com/book.html Dog

More information

Use of the courtesy title 'Dr' by RCVS-registered veterinary surgeons

Use of the courtesy title 'Dr' by RCVS-registered veterinary surgeons Use of the courtesy title 'Dr' by RCVS-registered veterinary surgeons Introduction We would like to consult veterinary surgeons, veterinary nurses and the general public on the proposal that all veterinary

More information

Official Election Summary Report 2014 Partisan Primary Election Laramie County, Wyoming August 19, 2014 Federal and State Races

Official Election Summary Report 2014 Partisan Primary Election Laramie County, Wyoming August 19, 2014 Federal and State Races Page:1 of 5 R-U.S. SENATOR Votes 15157 Number Of Under Votes 540 THOMAS BLEMING 333 2.20% ARTHUR BRUCE CLIFTON 211 1.39% MIKE ENZI 12810 84.52% JAMES GREGORY 472 3.11% BRYAN E. MILLER 1255 8.28% Write-in

More information

Infectious Diseases of Cattle, Buffaloes, Calves, Sheep and Goats

Infectious Diseases of Cattle, Buffaloes, Calves, Sheep and Goats Infectious Diseases of Cattle, Buffaloes, Calves, Sheep and Goats Benha University Faculty of Veterinary Medicine Programme (s) on which the course is given: Bachelor of Veterinary Medical Sciences Department

More information

Teaching Assessment Lessons

Teaching Assessment Lessons DOG TRAINER PROFESSIONAL Lesson 19 Teaching Assessment Lessons The lessons presented here reflect the skills and concepts that are included in the KPA beginner class curriculum (which is provided to all

More information

Post-Activity. (Bird Beaks) Pre-K Guidelines/Examples of Child Behavior. Learning Objectives

Post-Activity. (Bird Beaks) Pre-K Guidelines/Examples of Child Behavior. Learning Objectives Pre-K Guidelines/Examples of Child Behavior Learning Objectives VI.B.1. Child observes, investigates, describes and discusses the characteristics of organisms. Describes color, size, and shape of organisms.

More information

It s the sport dogs put their paw up for!

It s the sport dogs put their paw up for! Welcome to Nose Work with K9 Scentral. What is Nose Work? It s the sport dogs put their paw up for! Nose Work classes provide your dog with the chance to unleashes their incredible olfactory ability in

More information

INTRODUCTORY ANIMAL SCIENCE

INTRODUCTORY ANIMAL SCIENCE INTRODUCTORY ANIMAL SCIENCE AGRI 1319 Course Syllabus Chad Henry-Instructor e-mail: chenry@ntcc.edu SPRING, 2016 Course Description: Scientific animal agriculture that examines the biological, industrial,

More information

U N D E R S TA N D I N G O U R C A N I N E C O M PA N I O N S ( ADVANCED DIPLOMA ) DISTANCE LEARNING

U N D E R S TA N D I N G O U R C A N I N E C O M PA N I O N S ( ADVANCED DIPLOMA ) DISTANCE LEARNING TRAIN WITH KINDNESS U N D E R S TA N D I N G O U R C A N I N E C O M PA N I O N S ( ADVANCED DIPLOMA ) DISTANCE LEARNING 2 king of paws: dog training academy Welcome to King of Paws King of Paws: Dog Training

More information

Pages 1-2 are the user friendly version (no picture numbers). Pages 3-4 describe the pictures used written in B&W. Pages 5-6 are colour coded

Pages 1-2 are the user friendly version (no picture numbers). Pages 3-4 describe the pictures used written in B&W. Pages 5-6 are colour coded 1 Pages 1-2 are the user friendly version (no picture numbers). Pages 3-4 describe the pictures used written in B&W. Pages 5-6 are colour coded Lesson 7 Jesus the Good Shepherd This is a suggested outline.

More information

Scentwork UK. Guidelines for Level 4 Trials

Scentwork UK. Guidelines for Level 4 Trials Scentwork UK Guidelines for Level 4 Trials 1 The Test involves 4 timed searches 1) The dog to find two articles of a different scent that have been hidden amongst a search area containing 2/4 tables &

More information

VGP 101 Part 2: Making a Training Plan

VGP 101 Part 2: Making a Training Plan VGP 101 Part 2: Making a Training Plan By Ken Dinn and Gary Hodson The fall tests are over and your young DD passed the HZP. Wonderful! Time to go hunting a reward for you both for the time and effort

More information

Scentwork UK. Guidelines for Level 2 Trials

Scentwork UK. Guidelines for Level 2 Trials Scentwork UK Guidelines for Level 2 Trials Scentwork UK Guidelines for Level 2 Trials 1 The Test involves 4 timed searches 1) The dog to find one scented article hidden amongst 2-4 tables and 8 chairs

More information

Report of the Mission to Colony B

Report of the Mission to Colony B Report of the Mission to Colony B It had been 15 millenia since Colony A and B departed from Earth, just 18 months before The Unfortuante Event a large asteroid collision with earth wiped out all human

More information

THE ARTICLE. New mammal species found. BNE: The first new species of mammal to be discovered in more than. New mammal species found - 14 May, 2005

THE ARTICLE. New mammal species found. BNE: The first new species of mammal to be discovered in more than. New mammal species found - 14 May, 2005 THE ARTICLE New mammal species found BNE: The first new species of mammal to be discovered in more than three decades has been found in the unlikeliest of places. The Laotian rock rat, a rodent-like creature,

More information

APDT elearning Certificate Course Syllabus

APDT elearning Certificate Course Syllabus Course Overview Title: Dog Training 101: What Every Trainer Needs Know Course Dates: - Start: Thursday 10/26/2017, 12:00pm ET - End: Wednesday 12/6/2017, 12:00pm ET - No Class Thanksgiving week Description:

More information

A Lucky Break.

A Lucky Break. A Lucky Break Objective Students will read about the ancient Etruscans and the origins of pulling the wishbone of a chicken apart for good luck. Students will research to learn more about the ancient Etruscans.

More information

The Cat Sentence-Building Exercise 1

The Cat Sentence-Building Exercise 1 Name Date Name Name Date Date Level 1: The Cat The Cat Sentence-Building Exercise 1 5 Materials: photograph of cat, students circle-in-circle charts and branch organizers, lined paper, tape, three pieces

More information

Monthly Review of the Cat & Dog Welfare Programmes, China & HK. Animals Asia Foundation. (March, 2012)

Monthly Review of the Cat & Dog Welfare Programmes, China & HK. Animals Asia Foundation. (March, 2012) Monthly Review of the Cat & Dog Welfare Programmes, China & HK Animals Asia Foundation (March, 2012) The 1 st China Cat Management Symposium Opens in Beijing Co-organized by Beijing Luckycats and Animals

More information

Lessons and Naturalistic Features of To Build a Fire. To Build a Fire is a story with lessons to be learned, for both adults and children.

Lessons and Naturalistic Features of To Build a Fire. To Build a Fire is a story with lessons to be learned, for both adults and children. 1 Jack London Dr. Rudnicki English 212 2-15-1902 Lessons and Naturalistic Features of To Build a Fire To Build a Fire is a story with lessons to be learned, for both adults and children. Two versions were

More information

MAKING PREDICTIONS Texas Education Agency / The University of Texas System 1

MAKING PREDICTIONS Texas Education Agency / The University of Texas System 1 MAKING PREDICTIONS 1 Making Predictions An inference about future information in a text is a prediction. We use the text clues and our background knowledge to predict what will happen next in a story or

More information

HCM 6: Highway Capacity Manual: A Guide for Multimodal Mobility Analysis

HCM 6: Highway Capacity Manual: A Guide for Multimodal Mobility Analysis HCM 6: Highway Capacity Manual: A Guide for Multimodal Mobility Analysis Presented by: Anita S Johari, PE, PTOE AMEC Foster Wheeler (ASJ Engineering Consultants) Assisted by: Vishwanathan Raja Gopalan,

More information

Arizona State Laws Affected by H.R. 4879

Arizona State Laws Affected by H.R. 4879 Arizona State Laws Affected by H.R. 4879 I. Food a. Food Safety i. Date Label Laws 1. These laws require and regulate sell-by date labels on food items. They are intended to promote both food quality and

More information

BECOME A VOLUNTEER FOR THE REFUGE POUR CHATS DE VERDUN

BECOME A VOLUNTEER FOR THE REFUGE POUR CHATS DE VERDUN BECOME A VOLUNTEER FOR THE REFUGE POUR CHATS DE VERDUN Please take a moment to learn about our organization and its activities by visiting our website. The Refuge pour chats de Verdun is a "virtual" refuge;

More information

House Breaking Methods

House Breaking Methods Before you start: Ask yourself if you have the time, patience and consistency to guide your new family member into your HOME! Remember: The way you welcome them into your home is the way they would respect

More information

4--Why are Community Documents So Difficult to Read and Revise?

4--Why are Community Documents So Difficult to Read and Revise? 4--Why are Community Documents So Difficult to Read and Revise? Governing Documents are difficult to read because they cover a broad range of topics, have different priorities over time, and must be read

More information

Scentwork UK. Guidelines for Level 7 Trials

Scentwork UK. Guidelines for Level 7 Trials Scentwork UK Guidelines for Level 7 Trials 1 The Test involves 3 timed searches 1) The dog to find 9 out of 12 scented articles hidden within 3 search areas, two of which will be interior and one exterior.

More information

Functions Introduction to Functions 7.2 One-to-One, Onto, Inverse functions. mjarrar Watch this lecture and download the slides

Functions Introduction to Functions 7.2 One-to-One, Onto, Inverse functions. mjarrar Watch this lecture and download the slides 9/6/17 Mustafa Jarrar: Lecture Notes in Discrete Mathematics Birzeit University Palestine 2015 Functions 71 Introduction to Functions 72 One-to-One Onto Inverse functions 73 Application: The Pigeonhole

More information

D irections. The Sea Turtle s Built-In Compass. by Sudipta Bardhan

D irections. The Sea Turtle s Built-In Compass. by Sudipta Bardhan irections 206031P Read this article. Then answer questions XX through XX. The Sea Turtle s uilt-in ompass by Sudipta ardhan 5 10 15 20 25 30 If you were bringing friends home to visit, you could show them

More information

M&D LEISURE RISK ASSESSMENT

M&D LEISURE RISK ASSESSMENT M&D LEISURE RISK ASSESSMENT AMAZONIA RA 203 13 Handling Animals on and off site of park Reviewed By Date Changes J. Keenan 08/11/2011 Addition of current preventative measures K. Hill, A. Gott 28/02/2013

More information

KS1 Baby Animals. Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH

KS1 Baby Animals. Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH Marwell Wildlife Colden Common Winchester Hampshire SO21 1JH Marwell is a limited liability company registered in England and Wales under no. 1355272. The company is a registered charity, no. 275433. VAT

More information

Merryn Pugh's Comments

Merryn Pugh's Comments Merryn Pugh's Comments A hot, clear Christchurch day saw a great turnout of Canterbury Dorper Breeders for an Open Day at Jo and Peter Townshend s Kilmarnock Stud on 1 March. Also on display were most

More information

Sharing a Story to Facilitate Social and Emotional Learning

Sharing a Story to Facilitate Social and Emotional Learning Brinton & Fujiki Brigham Young University Intervention Script for The Dog House The Dog House by Jan Thomas, 2008, Orlando, FL: Harcourt. Sharing a Story to Facilitate Social and Emotional Learning Many

More information

D & M Farm Kennel April 2010 Newsletter

D & M Farm Kennel April 2010 Newsletter D & M F A R M K E N N E L April 2010 Volume 3, Issue 4 D & M Farm Kennel April 2010 Newsletter Boarding Inside this issue: Ari 2 Kaiden 2 Urinary Tract 2 Pet Ownership 3 Ziva 3 Tanner 3 Farm Happenings

More information

Wonderful World I I Vocabulary and Structure. h-l-copt-r dra-ing p-n

Wonderful World I I Vocabulary and Structure. h-l-copt-r dra-ing p-n Wonderful World I I Vocabulary and Structure 1-Supply the missing letters : h-l-copt-r dra-ing p-n sch--l b--k bo-rd 2-Supply the missing letters : 1) - - air 2) esk 3) p n 4) boa - - 5) - - awing 6) p

More information

Proceedings of the European Veterinary Conference Voorjaarsdagen

Proceedings of the European Veterinary Conference Voorjaarsdagen Close this window to return to IVIS www.ivis.org Proceedings of the European Veterinary Conference Voorjaarsdagen Apr. 13-15, 2016 Next Meeting: April 1 -, 201 The Hague, The Netherlands Reprinted in IVIS

More information

Training To Help Your Grooming

Training To Help Your Grooming Training To Help Your Grooming Get my slides & notes at: FernDogTraining.com/Intergroom PLUS a chance to win a FREE business coaching session Who Is This Fern Guy? In a perfect world... Ideally I would

More information

Begin Reading with CAT the CAT

Begin Reading with CAT the CAT Begin Reading with CAT the CAT Grow with Mo! Mo Willems is the award-winning author and illustrator of groundbreaking books beloved by kids, parents, teachers, and librarians. Now kids can begin reading

More information

COMMISSION. (Text with EEA relevance) (2009/712/EC)

COMMISSION. (Text with EEA relevance) (2009/712/EC) 19.9.2009 Official Journal of the European Union L 247/13 COMMISSION COMMISSION DECISION of 18 September 2009 implementing Council Directive 2008/73/EC as regards Internet-based information pages containing

More information

The Home of Toy Knitting Patterns. knittingbypost.com. Issue 11. Brochure. Festive Favourites. Lots of Knitting Fun

The Home of Toy Knitting Patterns. knittingbypost.com. Issue 11. Brochure. Festive Favourites. Lots of Knitting Fun KnittingByPost The Home of Toy Knitting Patterns knittingbypost.com Issue 11 Brochure Festive Favourites Lots of Knitting Fun Fantasy KBP-188 My Fairy Lady KBP-206 Boy Fairy KBP-205 Mermaid KBP-180 Sprinkle

More information

Biology 164 Laboratory

Biology 164 Laboratory Biology 164 Laboratory CATLAB: Computer Model for Inheritance of Coat and Tail Characteristics in Domestic Cats (Based on simulation developed by Judith Kinnear, University of Sydney, NSW, Australia) Introduction

More information

Veterinary Nursing and Animal Care

Veterinary Nursing and Animal Care Veterinary Nursing and Animal Care 2017-2018 Animal care. Right here weltec.ac.nz/engineering Pursue your love for animals Passionate about the care and welfare of animals? Increasing global awareness

More information

DOG DAYS OF RAT CATCHING

DOG DAYS OF RAT CATCHING Vet Times The website for the veterinary profession https://www.vettimes.co.uk DOG DAYS OF RAT CATCHING Author : PIPPA ELLIOTT Categories : Vets Date : July 28, 2014 PIPPA ELLIOTT BVMS, MRCVS discusses

More information

Working Dog Certification Requirements

Working Dog Certification Requirements Working Dog Certification Requirements 1. Purpose 1. To encourage people to work their Alaskan Malamutes in the pursuits for which they were intended. 2. To provide Certificates for those Alaskan Malamutes

More information

INTRODUCTORY ANIMAL SCIENCE

INTRODUCTORY ANIMAL SCIENCE INTRODUCTORY ANIMAL SCIENCE AGRI 1319 Course Syllabus Chad Henry-Instructor e-mail: chenry@ntcc.edu FALL, 2016 Course Description: Scientific animal agriculture that examines the biological, industrial,

More information

Teaching and Reading Guide

Teaching and Reading Guide Teaching and Reading Guide The Three Billy GoatsFluff by Rachael Mortimer Illustrated by Liz Pi c hon The Synopsis: Three Billy Goats Fluff by Ra c hael Mortimer Illustrated by L i z Pi c hon How is Mr.

More information