On the constructive nature of natural language quantifiers. Allan Ramsay School of Computer Science, University of Manchester, Manchester M13 9PL, UK

Size: px
Start display at page:

Download "On the constructive nature of natural language quantifiers. Allan Ramsay School of Computer Science, University of Manchester, Manchester M13 9PL, UK"

Transcription

1 On the constructive nature of natural language quantifiers Allan Ramsay School of Computer Science, University of Manchester, Manchester M13 9PL, UK 1

2 What does saying that NL should be treated constructively mean? Where s the evidence that this is the right way to go? What difference does it make to computational treatments? 2

3 What does saying that NL should be treated constructively mean? Classical: language is about describing the world. You do this in order to have some effect on some other person(s), but the primary task of semantics is to see how language can be used to describe the world. Constructive: language is about having some effect on some other person(s). To do this, what you say must describe the world, but the primary task of semantics is to see how language can be used to affect other people. Semantics is pragmatics. Allan Ramsay, -3-What does saying that NL should be treated constructively mean?

4 Where s the evidence that this is the right way to go? This distinction makes very little difference when you are thinking about quantifier-free sentences.... language is about describing the world...,...what you say must describe the world... There is a link to the question of whether such words should be characterised by their extensions (green = grass, leaves,...) or their intensions (green = reflects light with a wavelength between in the range nm)... I have never seen a quantifier-free sentence of natural language Allan Ramsay, -4- Where s the evidence that this is the right way to go?

5 But it does make a difference when you want to think about quantifiers and logical connectives (1) If I m at home in Buxton then my cat has green hair Classical P Q is true if P is false or Q is true. Er, I m in Toulouse Allan Ramsay, -5- Where s the evidence that this is the right way to go?

6 But it does make a difference when you want to think about quantifiers and logical connectives (1) If I m at home in Buxton then my cat has green hair Classical P Q is true if P is false or Q is true. Er, I m in Toulouse Constructive P Q means that you can prove Q by assuming P. Imagine I m at home in Buxton. Could you prove that my cat has green hair? Does it make any practical difference? Maybe not, because you wouldn t be able to prove anything using the classical notion unless I was at home in Buxton, which I m not. But it s deeply unsatisfying. Allan Ramsay, -6- Where s the evidence that this is the right way to go?

7 (2) A man and a woman came into the room. The man was shouting angrily and waving his arms around, the woman was looking embarrassed and trying to pretend she didn t know him. Classical There is exactly one man and exactly one woman. [[man]] I = 1, [[woman]] I = 1 Then I has to be specified with respect to the context. What context? Constructive There is exactly one thing that can proved to be a man using the information currently available. Likewise woman. the information currently available = the minutes of the conversation + what you think everyone involved knows. Allan Ramsay, -7- Where s the evidence that this is the right way to go?

8 Invoking the minutes explains how you can easily refer to something whose existence you doubt/disbelieve, indeed to something whose existence you explicitly doubt/disbelieve. (3) A: My boyfriend bought me a Ferarri for my birthday B: I don t believe you A: He did, he did B: Go on then, what colour is it? Allan Ramsay, -8- Where s the evidence that this is the right way to go?

9 (4) Most people think that the study of semantics is an esoteric waste of time. Classical Over half the set of people think semantics is a waste of time person semantics waste of time person > 0.5 What set of people? Everyone there is? Everyone there ever has been? Everyone I know? Allan Ramsay, -9- Where s the evidence that this is the right way to go?

10 (4) Most people think that the study of semantics is an esoteric waste of time. Classical Over half the set of people think semantics is a waste of time person semantics waste of time semantics waste of time What set of people? Everyone there is? Everyone there ever has been? Everyone I know? > 0.5 Constructive If X is a person, it would be reasonable to infer that X thinks semantics is a waste of time. How would you prove it? Try to imagine a conversation that you would have in the pub. Have you ever persuaded a non-specialist that what you do is of any value? Allan Ramsay, -10- Where s the evidence that this is the right way to go?

11 (5) Tania is a farmer. She owns a donkey which she looks after very nicely. We ve introduced a female farmer into the conversation. After that, we can easily use she to refer to her. Allan Ramsay, -11- Where s the evidence that this is the right way to go?

12 (5) Tania is a farmer. She owns a donkey which she looks after very nicely. We ve introduced a female farmer into the conversation. After that, we can easily use she to refer to her. (6) If a farmer owns a donkey she looks after it very nicely. Why is it weird? By the time we get to she, we have already introduced a farmer into the conversation, and along with that we have made use of the general rule that Most farmers are male (which probably isn t even true) to visualise this farmer as male. Allan Ramsay, -12- Where s the evidence that this is the right way to go?

13 What difference does it make to computational treatments? At one level, none at all. There is no point in having a program that can construct meaning representations unless you also have a program that can do something with them. That s constructive: what matters is what you can do. (that s not to say that there no point in trying to work out what the truth conditions of a sentence are as a philosophical exercise. Just no point writing a program to do it) Allan Ramsay, -13- What difference does it make to computational treatments?

14 But at a finer granularity it does have consequences: it affects what kind of inference engine you build it affects what kind of meaning representation you use it affects what you use it for Allan Ramsay, -14- What difference does it make to computational treatments?

15 It affects what kind of inference engine you build You can t do proof by contradiction: so you can t use resolution, simple tableaux. So you can t just pinch Vampire,...You shouldn t anyway: natural languages are not first-order, not even if you use a first-order modal logic I use SATCHMO with extensions defaults, epistemic & temporal contexts, fine-grained intensionality, asymmetric approximate unification; but basic SATCHMO is so simple that extensions are easy. Allan Ramsay, -15- It affects what kind of inference engine you build

16 prove(p, LABEL) :- P. prove(p & Q, LABEL) :- prove(p, LABEL), prove(q, LABEL). prove(p or Q, LABEL) :- prove(p, LABEL); prove(q, LABEL). prove(not(p), LABEL) :- prove(p ==> absurd, LABEL). prove(p ==> Q, LABEL) :- assert(p), (prove(q, LABEL) -> (used(p, LABEL), %% Relevance logic retract(p); (retract(p), fail)). Allan Ramsay, -16- It affects what kind of inference engine you build

17 It affects what kind of meaning representation you use Classical Translate into some suitable meaning representation (not first-order logic!) Apply normal-form (forwards inference) rules: negation normal form, quantifier free form, clausal form,... Every word and phrase has a translation, and hence we know what they mean Allan Ramsay, -17- It affects what kind of meaning representation you use

18 It affects what kind of meaning representation you use Classical Translate into some suitable meaning representation (not first-order logic!) Apply normal-form (forwards inference) rules: negation normal form, quantifier free form, clausal form,... Every word and phrase has a translation, and hence we know what they mean Constructive Natural language is the most suitable meaning representation. Nothing goes missing, nothing gets accidentally added. Apply normal-form (forwards inference) rules: polarity marking,..., negation normal form, quantifier free form, clausal form,... No need to annotate a grammar with semantic interpretations. No need to have a grammar! Allan Ramsay, -18- It affects what kind of meaning representation you use

19 It affects what you use it for If what you are given is a simple statement, you ground it and use it to extend the minutes by doing a bit (???) of model building. If what you are given is a rule (i) you ground the antecedent;(ii) use it to make temporary extension of the minutes; (iii) ground the consequent; (iv) then unextend the minutes. Allan Ramsay, -19- It affects what you use it for

20 THE END! What does it mean to say that NL is constructive, why do I think it s a way of thinking about it, what kind of meaning rep and inference engine do you need to proceed in this way. Allan Ramsay, -20- It affects what you use it for

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes Chapter 2 Knowledge Representation: Reasoning, Issues, and Acquisition Teaching Notes This chapter explains how knowledge is represented in artificial intelligence. The topic may be launched by introducing

More information

Sexual Feelings. Having sexual feelings is not a choice, but what you do with your feelings is a choice. Let s take a look at this poster.

Sexual Feelings. Having sexual feelings is not a choice, but what you do with your feelings is a choice. Let s take a look at this poster. Sexual Feelings It may be your first instinct to deny that your child will ever have sexual feelings. You may even do everything in your power to suppress those feelings if they do surface. You won t succeed

More information

Belief behavior Smoking is bad for you I smoke

Belief behavior Smoking is bad for you I smoke LP 12C Cognitive Dissonance 1 Cognitive Dissonance Cognitive dissonance: An uncomfortable mental state due to a contradiction between two attitudes or between an attitude and behavior (page 521). Belief

More information

Embedded Implicatures

Embedded Implicatures 1 1. The Symmetry problem - Summary The Gricean system (simple version): (1) s(peaker) John has 3 children (=: ϕ) H(earer) reasons Embedded Implicatures Basic Inf: There is something else that s could

More information

The Thinking-Feeling Connection Contents

The Thinking-Feeling Connection Contents The Thinking-Feeling Connection Contents Page The Thinking-Feeling Connection 2 Making Connection 4 Module Summary 6 Page 1 The Thinking-Feeling Connection People often believe that feelings and emotions

More information

3. Which word is an antonym

3. Which word is an antonym Name: Date: 1 Read the text and then answer the questions. Stephanie s best friend, Lindsey, was having a birthday in a few weeks. The problem was that Stephanie had no idea what to get her. She didn t

More information

Vagueness, Context Dependence and Interest Relativity

Vagueness, Context Dependence and Interest Relativity Chris Kennedy Seminar on Vagueness University of Chicago 2 May, 2006 Vagueness, Context Dependence and Interest Relativity 1 Questions about vagueness Graff (2000) summarizes the challenge for a theory

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 The Breaking News English.com Resource Book 1,000 Ideas & Activities For Language Teachers http://www.breakingnewsenglish.com/book.html Woman

More information

Spectrum inversion and intentionalism

Spectrum inversion and intentionalism Spectrum inversion and intentionalism phil 93507 Jeff Speaks September 15, 2009 1 What is a spectrum inversion scenario?..................... 1 2 Intentionalism is false because inverts could have in common.........

More information

The Fallacy of Taking Random Supplements

The Fallacy of Taking Random Supplements The Fallacy of Taking Random Supplements Healthview interview with Dr. Paul Eck Healthview: We can see from our conversations that you are totally against people taking random supplements even if people

More information

15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA

15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA 15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA Statistics does all kinds of stuff to describe data Talk about baseball, other useful stuff We can calculate the probability.

More information

Day 1 Video 4 The Scientific Differences between Males & Females

Day 1 Video 4 The Scientific Differences between Males & Females 1 Hey everyone, David here. Day 1 Video 4 The Scientific Differences between Males & Females I m going to start this video by saying, men are NOT women. Women are NOT men. And when you start to appreciate

More information

The Asian American Women Empowered: Participant Interviews

The Asian American Women Empowered: Participant Interviews The Asian American Women Empowered: Participant Interviews Project funded by: Orange County Asian and Pacific Islander Community Alliance Centers for Disease Control and Prevention Mt. Sinai Health Care

More information

MA 1 Notes. moving the hand may be needed.

MA 1 Notes. moving the hand may be needed. Name Period MA 1 Notes Fingerspelling Consider frngerspelling to be like your. Being clear is vital to being understood, be enough not to worry, whether each letter is exactly right, and be able to spell

More information

The hard problem of consciousness

The hard problem of consciousness The hard problem of consciousness The hard problem of consciousness is to explain how qualia arise from physical processes in the brain. (èdavid Chalmers) Some thought experiments underscoring the hard

More information

Gage R&R. Variation. Allow us to explain with a simple diagram.

Gage R&R. Variation. Allow us to explain with a simple diagram. Gage R&R Variation We ve learned how to graph variation with histograms while also learning how to determine if the variation in our process is greater than customer specifications by leveraging Process

More information

Cognitive cherry picking: the patchwork process of examining A level essays

Cognitive cherry picking: the patchwork process of examining A level essays OXFORD UNIVERSITY CENTRE FOR EDUCATIONAL ASSESSMENT Cognitive cherry picking: the patchwork process of examining A level essays v.f.elliott@warwick.ac.uk Cambridge Assessment 6.9.12 Methods/ Design Two

More information

Fluoride: Friend or Foe? By Daniel X 5/31/05

Fluoride: Friend or Foe? By Daniel X 5/31/05 Fluoride: Friend or Foe? By Daniel X 5/31/05 Everywhere we go we are exposing ourselves to fluoride, when we drink tap water, use toothpaste, visit the dentist, drink tea, and many other ways. Many people

More information

PSYCHOLOGICAL CONSCIOUSNESS AND PHENOMENAL CONSCIOUSNESS. Overview

PSYCHOLOGICAL CONSCIOUSNESS AND PHENOMENAL CONSCIOUSNESS. Overview Lecture 28-29 PSYCHOLOGICAL CONSCIOUSNESS AND PHENOMENAL CONSCIOUSNESS Overview David J. Chalmers in his famous book The Conscious Mind 1 tries to establish that the problem of consciousness as the hard

More information

Mastering Emotions. 1. Physiology

Mastering Emotions. 1. Physiology Mastering Emotions Emotional mastery is the key to living a life that you direct. The ability to have absolute direct power over what you feel in every single moment no matter what happens around you is

More information

AGENT-BASED SYSTEMS. What is an agent? ROBOTICS AND AUTONOMOUS SYSTEMS. Today. that environment in order to meet its delegated objectives.

AGENT-BASED SYSTEMS. What is an agent? ROBOTICS AND AUTONOMOUS SYSTEMS. Today. that environment in order to meet its delegated objectives. ROBOTICS AND AUTONOMOUS SYSTEMS Simon Parsons Department of Computer Science University of Liverpool LECTURE 16 comp329-2013-parsons-lect16 2/44 Today We will start on the second part of the course Autonomous

More information

Part 2: Listen to the short talk and answer the questions in English. There are three questions. You will hear the talk twice.

Part 2: Listen to the short talk and answer the questions in English. There are three questions. You will hear the talk twice. 1 20 (120 ) I II ( 20 3 12 ) 1 ( 30 ) Part 1: Listen to the short conversation and answer the questions in English. There are three questions. You will hear the conversation twice. A: The other day my

More information

Overdose. Everything you need to know. Includes free DVD!

Overdose. Everything you need to know. Includes free DVD! Overdose Everything you need to know Includes free DVD! Please read this booklet. We guarantee you ll learn something new. When you ve read it, you ll know about overdose myths and: what to do if you

More information

Secrets to the Body of Your Life in 2017

Secrets to the Body of Your Life in 2017 Secrets to the Body of Your Life in 2017 YOU CAN HAVE RESULTS OR EXCUSES NOT BOTH. INTRO TO THIS LESSON Welcome to Lesson #3 of your BarStarzz Calisthenics Workshop! For any new comers, make sure you watch

More information

Dealing with Difficult People 1

Dealing with Difficult People 1 Dealing with Difficult People 1 Dealing With People Copyright 2006 by Alan Fairweather All rights reserved. No part of this book may be reproduced in any form and by any means (including electronically,

More information

Phenomenal content. PHIL April 15, 2012

Phenomenal content. PHIL April 15, 2012 Phenomenal content PHIL 93507 April 15, 2012 1. The phenomenal content thesis... 1 2. The problem of phenomenally silent contents... 2 3. Phenomenally sneaky contents... 3 3.1. Phenomenal content and phenomenal

More information

Commissioned by The PiXL Club Ltd.

Commissioned by The PiXL Club Ltd. Walking Talking Mark - EDUQAS STYLE COMPONENT 1 - MODEL ANSWERS 20 th Century Literature Reading Commissioned by The PiXL Club Ltd. This resource is strictly for the use of member schools for as long as

More information

Patrick Breheny. January 28

Patrick Breheny. January 28 Confidence intervals Patrick Breheny January 28 Patrick Breheny Introduction to Biostatistics (171:161) 1/19 Recap Introduction In our last lecture, we discussed at some length the Public Health Service

More information

Perception Lie Paradox: Mathematically Proved Uncertainty about Humans Perception Similarity

Perception Lie Paradox: Mathematically Proved Uncertainty about Humans Perception Similarity Perception Lie Paradox: Mathematically Proved Uncertainty about Humans Perception Similarity Ahmed M. Mahran Computer and Systems Engineering Department, Faculty of Engineering, Alexandria University,

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 The Breaking News English.com Resource Book 1,000 Ideas & Activities For Language Teachers http://www.breakingnewsenglish.com/book.html Hangover

More information

You re listening to an audio module from BMJ Learning. Hallo. I'm Anna Sayburn, Senior Editor with the BMJ Group s Consumer Health Team.

You re listening to an audio module from BMJ Learning. Hallo. I'm Anna Sayburn, Senior Editor with the BMJ Group s Consumer Health Team. Transcript of learning module Shared decision making (Dur: 26' 13") Contributors: Anna Sayburn and Alf Collins Available online at: http://learning.bmj.com/ V/O: You re listening to an audio module from

More information

9-11 is a date that will forever be synonymous with tragedy. On that day in 2001, the world came to a crippling stop.

9-11 is a date that will forever be synonymous with tragedy. On that day in 2001, the world came to a crippling stop. Historical Events 9-11 is a date that will forever be synonymous with tragedy. On that day in 2001, the world came to a crippling stop. Metaphor Our house slab after the hurricane was a replica of my bedroom

More information

Letter to the teachers

Letter to the teachers Letter to the teachers Hello my name is Sasha Jacombs I m 12 years old and I have had Type 1 Diabetes since I was four years old. Some of the people reading this may not know what that is, so I had better

More information

Some Important Concepts in EFT

Some Important Concepts in EFT Measuring Intensity Some Important Concepts in EFT Measuring intensity is extremely important because it gives a benchmark of the progress made. It also indicates when the problem has gone, and it is important

More information

Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it.

Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it. Jesper B Sørensen August 2012 Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it. Technically, in a statistical model you have

More information

Stages of Change The Cognitive Factors Underlying Readiness to Manage Stuttering:Evidence from Adolescents. What Do We Mean by Motivation?

Stages of Change The Cognitive Factors Underlying Readiness to Manage Stuttering:Evidence from Adolescents. What Do We Mean by Motivation? The Cognitive Factors Underlying Readiness to Manage Stuttering:Evidence from Adolescents Patricia Zebrowski, Ph.D., CCC-SLP University of Iowa, USA European Symposium on Fluency Disorders 2018 1 What

More information

(an intro to AP Biology)

(an intro to AP Biology) (an intro to AP Biology) 1. How does being science literate benefit you and your community? 2. What is the most critical element in the process of doing science? 3. What is meant by the phrase the fuel

More information

The Quantitative/Qualitative Debate A False Dichotomy?

The Quantitative/Qualitative Debate A False Dichotomy? The / Debate A False Dichotomy? Tradition Scientific Science = Organised [rather than disorganised, presumably] body of knowledge. Method of obtaining this not prescribed or proscribed. Science studies

More information

Commentary on The Erotetic Theory of Attention by Philipp Koralus. Sebastian Watzl

Commentary on The Erotetic Theory of Attention by Philipp Koralus. Sebastian Watzl Commentary on The Erotetic Theory of Attention by Philipp Koralus A. Introduction Sebastian Watzl The study of visual search is one of the experimental paradigms for the study of attention. Visual search

More information

Phil 490: Consciousness and the Self Handout [16] Jesse Prinz: Mental Pointing Phenomenal Knowledge Without Concepts

Phil 490: Consciousness and the Self Handout [16] Jesse Prinz: Mental Pointing Phenomenal Knowledge Without Concepts Phil 490: Consciousness and the Self Handout [16] Jesse Prinz: Mental Pointing Phenomenal Knowledge Without Concepts Main Goals of this Paper: Professor JeeLoo Liu 1. To present an account of phenomenal

More information

UNIVERSITY OF SOUTHERN CALIFORNIA TOWARDS NO TOBACCO USE (TNT) STUDENT SURVEY POSTTEST

UNIVERSITY OF SOUTHERN CALIFORNIA TOWARDS NO TOBACCO USE (TNT) STUDENT SURVEY POSTTEST UNIVERSITY OF SOUTHERN CALIFORNIA TOWARDS NO TOBACCO USE (TNT) STUDENT SURVEY POSTTEST Today s Date: - - Grade: Birthday: - - 19 Age: Sex: Month Day Year School Name: THINGS TO REMEMBER Read each question

More information

HOW TO INSTANTLY DESTROY NEGATIVE THOUGHTS

HOW TO INSTANTLY DESTROY NEGATIVE THOUGHTS HOW TO INSTANTLY DESTROY NEGATIVE THOUGHTS Groundbreaking Technique Revealed Author Dian Winter YES!! You Can Become a Positive, Confident Person This is a FREE report brought to you by: Dian Winter http://www.destroythedemonwithin.com

More information

Perspective of Deafness-Exam 1

Perspective of Deafness-Exam 1 Perspective of Deafness-Exam 1 20/04/2015 3:46 PM Deaf People and Society Single Most striking feature/ Verbal communication barriors See better because you get better at eye sight because you can t rely

More information

Anxiety. Top ten fears. Glossophobia fear of speaking in public or of trying to speak

Anxiety. Top ten fears. Glossophobia fear of speaking in public or of trying to speak Glossophobia fear of speaking in public or of trying to speak Forget heights and sharks. Public speaking often makes it to the top of the Top Fears List, higher even than death. Think about that. That

More information

Juvenile Justice: Juveniles Don t Deserve Life Sentences and On Punishment and Teen Killers

Juvenile Justice: Juveniles Don t Deserve Life Sentences and On Punishment and Teen Killers Mrs. Bowyer EDHS Name: Juvenile Justice: Juveniles Don t Deserve Life Sentences and On Punishment and Teen Killers Garinger, Gail. Juveniles Don t Deserve Life Sentences. New York Times 15 Mar. 2012, New

More information

Subliminal Messages: How Do They Work?

Subliminal Messages: How Do They Work? Subliminal Messages: How Do They Work? You ve probably heard of subliminal messages. There are lots of urban myths about how companies and advertisers use these kinds of messages to persuade customers

More information

Chapter 12. The One- Sample

Chapter 12. The One- Sample Chapter 12 The One- Sample z-test Objective We are going to learn to make decisions about a population parameter based on sample information. Lesson 12.1. Testing a Two- Tailed Hypothesis Example 1: Let's

More information

MA 1 Notes. Deaf vs deaf p. 3 MA1 F 13

MA 1 Notes. Deaf vs deaf p. 3 MA1 F 13 Name Period MA 1 Notes Fingerspelling Consider frngerspelling to be like your handwriting. Being clear is vital to being understood, be confident enough not to worry, whether each letter is exactly right,

More information

Representation Theorems for Multiple Belief Changes

Representation Theorems for Multiple Belief Changes Representation Theorems for Multiple Belief Changes Dongmo Zhang 1,2 Shifu Chen 1 Wujia Zhu 1,2 Zhaoqian Chen 1 1 State Key Lab. for Novel Software Technology Department of Computer Science and Technology

More information

Media pack for secondary breast cancer campaigners

Media pack for secondary breast cancer campaigners Media pack for secondary breast cancer campaigners Introduction Are you one of Breast Cancer Care s amazing campaigners? Would you be keen to share your story with local newspapers and radio stations to

More information

Boundaries and Self-Awareness

Boundaries and Self-Awareness Boundaries and Self-Awareness If you were ill or incapacitated: Would you accept help from others? How would the help have to be offered in order for you to accept it? What kinds of help would you accept?

More information

Principles and language suggestions for talking with patients

Principles and language suggestions for talking with patients SAFER MANAGEMENT OF OPIOIDS FOR CHRONIC PAIN: Principles and language suggestions for talking with patients Use these principles and language suggestions when discussing opioid risks and safety monitoring

More information

Hard Edges Scotland: Lived Experience Reference Group

Hard Edges Scotland: Lived Experience Reference Group Hard Edges Scotland: Lived Experience Reference Group May 2017 1. Lived Experience Reference Group: Role and Membership 1.1 The Lived Experience Reference Group was established as a core part of the Hard

More information

A Lesson Plan from Rights, Respect, Responsibility: A K-12 Curriculum

A Lesson Plan from Rights, Respect, Responsibility: A K-12 Curriculum Birth Control Basics A Lesson Plan from Rights, Respect, Responsibility: A K-12 Curriculum Fostering responsibility by respecting young people s rights to honest sexuality education. NSES ALIGNMENT: By

More information

Self Awarness Part 1 of 4 by Eddie Correia Presented to Unitarian Universalist Fellowship of the Rappahannock Jan. 14, 2018

Self Awarness Part 1 of 4 by Eddie Correia Presented to Unitarian Universalist Fellowship of the Rappahannock Jan. 14, 2018 Self Awarness Part 1 of 4 by Eddie Correia Presented to Unitarian Universalist Fellowship of the Rappahannock Jan. 14, 2018 1. Intro Start of 4 part series based on book may not ever be published, will

More information

If you have a boring relationship, it means you re not being intimate enough.

If you have a boring relationship, it means you re not being intimate enough. If you have a boring relationship, it means you re not being intimate enough. Radical intimacy means sharing your private thoughts, feelings wants, and needs in a close emotional and physical relationship.

More information

Bipolar Disorder in Children & Adolescents: Script of Podcast for Youth

Bipolar Disorder in Children & Adolescents: Script of Podcast for Youth Bipolar Disorder in Children & Adolescents: Script of Podcast for Youth By Anita R. Gornati Over the next few minutes, we are going to talk about what it s like to have a family member with Bipolar Disorder.

More information

BBC LEARNING ENGLISH 6 Minute English Buttons

BBC LEARNING ENGLISH 6 Minute English Buttons BBC LEARNING ENGLISH 6 Minute English Buttons This is not a word-for-word transcript Hello. This is 6 Minute English and I'm. And I'm. Today we re talking about buttons. Yes, buttons. Buttons are what

More information

ESL Health Unit Unit Four Healthy Aging Lesson Two Exercise

ESL Health Unit Unit Four Healthy Aging Lesson Two Exercise ESL Health Unit Unit Four Healthy Aging Lesson Two Exercise Reading and Writing Practice Advanced Beginning Checklist for Learning: Below are some of the goals of this lesson. Which ones are your goals

More information

Take new look emotions we see as negative may be our best friends (opposite to the script!)

Take new look emotions we see as negative may be our best friends (opposite to the script!) Tony Robbins - emotions Take new look emotions we see as negative may be our best friends (opposite to the script!) How do people deal? 1. They avoid them try not to feel them. a. Rejection 2. I ll endure

More information

Difficult Conversations

Difficult Conversations Difficult Conversations Corban Sanchez Academic Advisor NACADA Conference 2011 Douglas Stone, Bruce Patton, and Sheila Heen of the Harvard Negotiation Project Moving Toward a Learning Conversation Normal

More information

Calm Living Blueprint Podcast

Calm Living Blueprint Podcast Well, hello. Welcome to episode 2 of the Calm Living Blueprint Podcast. I m your host,. Thank you for joining me and taking the time to listen. Before we get started into the actual content, I want to

More information

Meeting a Kid with Autism

Meeting a Kid with Autism What s up with Nick? When school started, we had a new kid named Nick. He seemed a little different. My friends and I wondered, What's up with Nick? Turns out, Nick has autism. What is Autism This year,

More information

Los Caminos Peligrosos Chapter 5 Aterrizaje forzoso

Los Caminos Peligrosos Chapter 5 Aterrizaje forzoso Los Caminos Peligrosos Chapter 5 translation 1 Los Caminos Peligrosos Chapter 5 Aterrizaje forzoso p41 María Josefa: Ah! Here is the problem, We are without a motor. The motor failed. Alvarez: What are

More information

3.1.2 Change, Loss, and Grief

3.1.2 Change, Loss, and Grief 46 The Cost of Emotions In The Workplace Do this: Anticipate that emotional spinning may happen in unexpected circumstances and create unexpected reactions. Don t: Try to predict the unpredictable. Just

More information

What do External Representations Tell about Mental Models? An Exploratory Study in Deductive Reasoning

What do External Representations Tell about Mental Models? An Exploratory Study in Deductive Reasoning What do External Representations Tell about Mental Models? An Exploratory Study in Deductive Reasoning Barbara Bazzanella (B.Bazzanella@studenti.unitn.it) University of Trento LASDEC experimental laboratory,

More information

The Fox and the Crow

The Fox and the Crow The Fox and the Crow Roman Karl Seminar in Artificial Intelligence, November 2012 The fox and the crow is an old Greek fable. There are two characters, where both have a different behavior, which is caused

More information

Women in Science and Engineering: What the Research Really Says. A panel discussion co-sponsored by WISELI and the Science Alliance.

Women in Science and Engineering: What the Research Really Says. A panel discussion co-sponsored by WISELI and the Science Alliance. Women in Science and Engineering: What the Research Really Says A panel discussion co-sponsored by WISELI and the Science Alliance. Thursday April 14, 2005 Biotechnology Center Auditorium, University of

More information

Sexual Education for Adults with Disabilities

Sexual Education for Adults with Disabilities Sexual Education for Adults with Disabilities Tool 3 Thematic Card Game The European Commission support for the production of this publication does not constitute an endorsement of the contents which reflects

More information

The Difference Between Tyler and Everyone Else

The Difference Between Tyler and Everyone Else The Difference Between Tyler and Everyone Else There s something different about Tyler. He s a lot like many other people. Still, there s a huge difference between Tyler and everyone else. Tyler is twelve

More information

Section 4 Decision-making

Section 4 Decision-making Decision-making : Decision-making Summary Conversations about treatments Participants were asked to describe the conversation that they had with the clinician about treatment at diagnosis. The most common

More information

Part I - Multiple Choice. 10 points total.

Part I - Multiple Choice. 10 points total. Part I - Multiple Choice. 10 points total. Circle the one answer that best answers the question. 1. Which of the following is an effect axiom in situation calculus? a. Holding(g,s) Poss(Release(g),s) b.

More information

Ask A Genius 60 Consciousness 1 Scott Douglas Jacobsen and Rick Rosner January 16, 2017

Ask A Genius 60 Consciousness 1 Scott Douglas Jacobsen and Rick Rosner January 16, 2017 Ask A Genius 60 Consciousness 1 Scott Douglas Jacobsen and Rick Rosner January 16, 2017 Scott: What about the lexical definition, in your terminology, of consciousness or the descriptive unavoidability

More information

2. Based on the passage, the reader can tell that The Heartland Institute is probably

2. Based on the passage, the reader can tell that The Heartland Institute is probably Why Go Vegetarian? People choose to eliminate meat from their diets for many reasons. Concerns about health risks, farming practices, and environmental problems are just a few. In recent years, many animal

More information

Visitors Preconceptions about Emotions and Actions. Joyce Ma. January 2002

Visitors Preconceptions about Emotions and Actions. Joyce Ma. January 2002 Visitors Preconceptions about Emotions and Actions Joyce Ma January 2002 Keywords: 1 Mind and Learning - Front-End Evaluation Visitors Preconceptions about Emotions and Actions

More information

Why we get hungry: Module 1, Part 1: Full report

Why we get hungry: Module 1, Part 1: Full report Why we get hungry: Module 1, Part 1: Full report Print PDF Does Anyone Understand Hunger? Hunger is not simply a signal that your stomach is out of food. It s not simply a time when your body can switch

More information

ARTIFICIAL INTELLIGENCE

ARTIFICIAL INTELLIGENCE ARTIFICIAL INTELLIGENCE LECTURE # 04 Artificial Intelligence 2012 Lecture 04 Delivered By Zahid Iqbal 1 Review of Last Lecture Artificial Intelligence 2012 Lecture 04 Delivered By Zahid Iqbal 2 Review

More information

Looking for a Bear W.M. Akers

Looking for a Bear W.M. Akers I want to see the bears! Looking for a Bear W.M. Akers I don t care. I want to see the whales first. But bears are so much better. Yeah, if you re seven. I m ten now. I like whales. So what? I want to

More information

A mistake in reasoning McGraw-Hill Higher Education. All rights reserved.

A mistake in reasoning McGraw-Hill Higher Education. All rights reserved. A mistake in reasoning 2 What s the first criticism that comes to your mind about this reasoning? 3 For one thing, what is the Feature? What is it to not believe in family values????? 4 What s another

More information

Detective Work and Disputation

Detective Work and Disputation Module 7 Detective Work and Disputation Detective Work and Disputation 2 Thought Diary Example 3 Thought Diary 5 Module Summary 7 Page 1 : Detective Work and Disputation Previously, we established that

More information

Functionalist theories of content

Functionalist theories of content Functionalist theories of content PHIL 93507 April 22, 2012 Let s assume that there is a certain stable dependence relation between the physical internal states of subjects and the phenomenal characters

More information

Artificial Intelligence Programming Probability

Artificial Intelligence Programming Probability Artificial Intelligence Programming Probability Chris Brooks Department of Computer Science University of San Francisco Department of Computer Science University of San Francisco p.1/25 17-0: Uncertainty

More information

What is Down syndrome?

What is Down syndrome? FREQUENTLY ASKED QUESTIONS PRIMARY What is Down syndrome? People have Down syndrome because they have an extra chromosome. Our bodies are made up of millions and millions of cells and each cell usually

More information

COUNSELING INTERVIEW GUIDELINES

COUNSELING INTERVIEW GUIDELINES Dr. Moshe ben Asher SOC 356, Introduction to Social Welfare CSUN, Sociology Department COUNSELING INTERVIEW GUIDELINES WHAT DISTINGUISHES A PROFESSIONAL FROM OTHER KINDS OF WORKERS? Education and training

More information

Module 4: Technology: PsycINFO, APA Format and Critical Thinking

Module 4: Technology: PsycINFO, APA Format and Critical Thinking Reading: Kuther: Ch 5 and 6; McBurney: SEC 22-29 Module 4: Technology: PsycINFO, APA Format and PSY 201: The Psychology Major: Academic and Professional Issues Module 4: Technological Resources: PsycINFO

More information

Jesus said to him, I am the way and the truth and the life John 14:6

Jesus said to him, I am the way and the truth and the life John 14:6 BULLETIN ARTICLE: October 29/30, 2016 Father James Chelich I Jesus said to him, I am the way and the truth and the life John 14:6 Every Christian, in every time and place, in every society and under all

More information

Interviews IAEA. International Atomic Energy Agency

Interviews IAEA. International Atomic Energy Agency Interviews International Atomic Energy Agency Agenda What & why? Trust and ethics Designing and planning the study: Selecting interviewers Planning the interviews Selecting respondents Interview technique

More information

MEETING OF TV YOUTH PROGRAMME EXPERTS. (Ponta Delgada, 12 to 15 November 2005)

MEETING OF TV YOUTH PROGRAMME EXPERTS. (Ponta Delgada, 12 to 15 November 2005) ZDF Hear me out! Script with time codes ENGLISH MEETING OF TV YOUTH PROGRAMME EXPERTS Kevin: Hear me out! 10:00:15:00 10:00:49:00 Kevin (on): This is my cat Minka. She is a little runaway. I like animals

More information

Chapter 6: Attitudes, Behavior, and Rationalization

Chapter 6: Attitudes, Behavior, and Rationalization 6a Attitudes 1 Chapter 6: Attitudes, Behavior, and Rationalization Predicting Behavior from Attitudes Attitudes Sometimes Conflict with Other Powerful Determinants of Behavior Attitudes Are Sometimes Inconsistent

More information

Does sports massage work?

Does sports massage work? Does sports massage work? As any sports person worth their weight in gold medals would tell you sports massage is a part of their training diary, whether it s injury management, recovery aid, relaxation,

More information

John Broome, Weighing Lives Oxford: Oxford University Press, ix + 278pp.

John Broome, Weighing Lives Oxford: Oxford University Press, ix + 278pp. John Broome, Weighing Lives Oxford: Oxford University Press, 2004. ix + 278pp. Weighing Lives is a masterwork that everyone interested in ethics should read. In it, Broome develops a general theory for

More information

More than the medication

More than the medication Effective Practice More than the medication Social work with people nearing the end of life Gerry Nosowska, Effective Practice Enabling people to live their lives exactly as they want it s more than the

More information

Noshima: Any suggestions for making the HIV update better?

Noshima: Any suggestions for making the HIV update better? Realizing some members on the call were not able to attend the last CAB meeting, Noshima started things off by introducing herself and the other UNC members who will now be assisting with the CAB. After

More information

Planning for Physical

Planning for Physical 9 Planning for Physical Activity In this chapter Lesson 9.1 Lesson 9.2 Self-Assessing Fitness and Physical Activity Needs Moving Together: Getting Active and Fit Take It Home: Moving Forward Creating a

More information

2014 Free Spirit Publishing. All rights reserved.

2014 Free Spirit Publishing. All rights reserved. 2014 Free Spirit Publishing. All rights reserved. Text copyright 2011 by Daniel Stefanski Illustrations copyright 2011 by Free Spirit Publishing Inc. All rights reserved under International and Pan-American

More information

Step 2 Challenging negative thoughts "Weeding"

Step 2 Challenging negative thoughts Weeding Managing Automatic Negative Thoughts (ANTs) Step 1 Identifying negative thoughts "ANTs" Step 2 Challenging negative thoughts "Weeding" Step 3 Planting positive thoughts 'Potting" Step1 Identifying Your

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 The Breaking News English.com Resource Book 1,000 Ideas & Activities For Language Teachers http://www.breakingnewsenglish.com/book.html Yoga

More information

Birth Control Basics. TARGET GRADE: Grade 8 Lesson 8 MATERIALS NEEDED: Last Revised: December 17, 2017

Birth Control Basics. TARGET GRADE: Grade 8 Lesson 8 MATERIALS NEEDED: Last Revised: December 17, 2017 Birth Control Basics A Lesson Plan from Rights, Respect, Responsibility: A K-12 Curriculum Fostering responsibility by respecting young people s rights to honest sexuality education. NSES ALIGNMENT: By

More information

Are Men Naturally Monogamous

Are Men Naturally Monogamous 1 Welcome to day 7 video number 2. Day 7 Video 2 Are Men Naturally Monogamous Alright, so, let s answer this big question right now. Are men naturally monogamous? Interesting question, huh? Is monogamy

More information

UWE Bristol. Patient / carer feedback for Adult Branch Nursing Students in practice

UWE Bristol. Patient / carer feedback for Adult Branch Nursing Students in practice UWE Bristol Patient / carer feedback for Adult Branch Nursing Students in practice Context NMC and Department of Health drivers to involve service users/carers in student assessment process Formalising

More information