// DEPENDENCE. The Question: Marilyn vos Savant s answer:

Size: px
Start display at page:

Download "// DEPENDENCE. The Question: Marilyn vos Savant s answer:"

Transcription

1 // DEPENDENCE So, if this is the beginning, where do we go from here? Of course, we need to return to the very beginning of our story. The beginning was about the distinction between truth and assumption and how easy it is to become dualistic (the right way and the wrong way) in our approach to the truth. The subtleness in this section will highlight a very important concept, dependence, which is often overlooked, even by people who should know better. If you are like most mathematical modelers, you will be more than content to get your model to work. That is, you get an answer to a tricky question. It may take years of aggravating work and countless setbacks before you see any results, but alas, you see an answer! I would say that it is only human to form an attachment to your answer and for some it may take the form of a religious conviction. Religious convictions are hard to let go of and people can get quite ugly when confronted with evidence that their epiphany may be a mere illusion. Let s start the journey. The Sunday, September 9, 1990 issue of Parade magazine carried an interesting mathematical teaser in the Ask Marilyn section. The Ask Marilyn moniker is in reference to Marilyn vos Savant who is listed in The Guinness Book of World Records Hall of Fame for having an exceptionally high I.Q.. Here is the mathematical teaser, verbatim: The Question: Suppose you re on a game show, and you re given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what is behind the doors, opens another door, say No. 3, which has a goat. He then says to you, do you want to pick door No. 2? Is it to your advantage to switch your choice? Craig F. Whitaker, Columbia, Md. Marilyn vos Savant s answer: Yes; you should switch. The first door has a one-third chance of winning, but the second door has a two-thirds chance. Here s a good way to visualize what happened. Suppose there are a million doors, and you pick door No. 1. Then the host, who knows what s behind the doors and will always avoid the ones with the prize, opens them all except door #777,777. You d switch to that door pretty fast, wouldn t you? Of course Ms. vos Savant doesn t have endless space to explain, but rather presents a terse explanation that offers what many accept to be the truth. I hope you re not convinced though and are willing to run a computer simulation. Here s mine:

2 PAGE 56 #include <iostream> // needed for cout #include <cstdlib> // needed for rand() and RAND_MAX using namespace std; const int LIMIT = ; double uniform(void); // function U(*) prototype double uniform(void) return(static_cast<double>(rand()) / RAND_MAX); } int main (int) int door[4]; double probability; int contestant_choice; int host_choice; int i; int win = 0; for (i = 1 ; i <= LIMIT ; i++) // initialize doors door[1] = door[2] = door[3] = 0; // no prizes yet probability = uniform(); if (probability <= 1.0/3.0) // 0/3 <= p <= 1/3 door[1] = 1; // winning door if (probability <= 2.0/3.0) // 1/3 < p <= 2/3 door[2] = 1; // winning door // 2/3 < p <= 1 door[3] = 1; // winning door // contestant selects door probability = uniform(); if (probability <= 1.0/3.0) contestant_choice = 3; if (probability <= 2.0/3.0) contestant_choice = 2; contestant_choice = 1; probability = uniform(); switch (contestant_choice) // decide what door the host will open case 1: if ( door[1] == 1) if (probability <= 1.0/2.0) host_choice = 2; host_choice = 3; if (door[2] == 1) host_choice = 3; host_choice = 2; case 2: if ( door[2] == 1) if (probability <= 1.0/2.0) host_choice = 1; host_choice = 3; if (door[1] == 1) host_choice = 3; host_choice = 1; case 3: if ( door[3] == 1) if (probability <= 1.0/2.0) host_choice = 1;

3 PAGE 57 } host_choice = 2; if (door[2] == 1) host_choice = 1; host_choice = 2; default: cout << "ERROR!\n"; switch (host_choice) // decide what door the contestant will switch to case 1: if (contestant_choice == 2) contestant_choice = 3; contestant_choice = 2; case 2: if (contestant_choice == 1) contestant_choice = 3; contestant_choice = 1; case 3: if (contestant_choice == 2) contestant_choice = 1; contestant_choice = 2; default: cout << "ERROR!\n"; } // win? if (door[contestant_choice] == 1) win++; } // for cout << "If you switch: " << win << " wins out of " << LIMIT << " trials.\n"; } // main The Output: If you switch: wins out of trials. Wow, Ms. von Savant was right! After all, a simulation on a trusted machine produced almost exactly two-thirds as stated. You could even use Bayesian analysis to get this result, but that s not the point anyway. Briefly, Bayesian analysis looks at prior events to figure out the probability of a future event and we ll talk more about that later. The story doesn t stop here though and will probably rage on for years to come. Just do a search on Google ( and you will see a plethora of web sites on this one little tidbit. In fact, this one little tidbit in Parade got promoted to the front page of The New York Times, which is perhaps where some of the world s most important truths have come to light for the general reader.

4 PAGE 58 The detail is in the lower right hand quarter: Behind Monty Hall s Doors: Puzzle, Debate and Answer? The article was written by John Tierney for the July 21, 1991 issue of the New York Times. PHOTOCOPY OF THE FRONT PAGE AND ARTICLE TEXT IS USED WITOUT PERMISSION OF THE NEW YORK TIMES OR MR. TIERNEY. I BELIEVE THIS IS CONSIDERED FAIR USE UNDER US COPYRIGHT LAW AS I UDERSTAND IT. The article s front-page position and lengthy stance certainly forebodes possible enlightenment and it s worth more than just a casual glance. Here s the full text of the article in all its glory: Behind Monte Hall s Doors: Puzzle, Debate and Answers? By JOHN TIERNEY Special to The New York Times Beverly Hills, Calif., July 20 Perhaps it was only an illusion, but for a moment here it seemed that an end might be in sight to the debate raging among mathematicians, readers of Parade magazine and fans of the television game show Let s Make a Deal. They began arguing last September after Marilyn vos Savant published a puzzle in Parade. As readers of her Ask Marilyn column are reminded each week, Ms. vos Savant is listed in the Guinness Book of World Records Hall of Fame for the Highest I.Q., but that credential did not impress the public when she answered this question from a reader: Suppose you're on a game show, and you're given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what is behind the doors, opens another door, say No. 3, which has a goat. He then says to you, Do you want to pick door No. 2? Is it to your advantage to take the switch? Since she gave her answer, Ms. vos Savant estimates she has received 10,000 letters, the great majority disagreeing with her. The most vehement criticism has come from mathematicians and scientists, who have alternated between gloating at her ( You are the goat! ) and lamenting the nation s innumeracy. Her answer that the contestant should switch doors has been debated in the halls of the Central Intelligence Agency and the barracks of fighter pilots in the Persian Gulf. It has been analyzed by mathematicians at the Massachusetts Institute of Technology and

5 PAGE 59 computer programmers at Los Alamos National Laboratory in New Mexico. It has been tested in classes from second grade to graduate level at more than a 1,000 schools across the country. But it was not until Thursday afternoon that a truly realistic simulation of the problem was conducted. The experiment took place at the Beverly Hills home of Monte Hall, the host of 4,500 programs of Let s Make a Deal from 1963 to In his dining room Mr. Hall put three miniature cardboard doors on a table and represented the car with an ignition key. The goats were played by a package of raisins and a roll of Life Savers. After Mr. Hall allowed this contestant 30 independent attempts to win the car, two conclusions seemed clear: Ms. vos Savant s vitriolic critics, including the mathematics professors, are dead wrong. But Ms. vos Savant is not entirely correct either, because there is a small flaw in her wording of the problem that was detected not only by Mr. Hall but also by some of the experts. Despite her impressive analysis and 228-point I.Q. she was not as quick as Mr. Hall in understanding the psychological dimensions of the problem. So Easy to Blunder A few mathematicians were familiar with the puzzle long before Ms. vos Savant s column. They called it the Monte Hall Problem the title of the analysis in the journal American Statistician in 1976 or sometimes Monty s Dilemma or the Monty Hall Paradox. An earlier version, the Three Prisoners Problem, was analyzed in 1959 by Martin Gardner in the journal Scientific American. He called it a wonderfully confusing little problem and presciently noted that in no other branch of mathematics is it so easy for experts to blunder as in probability theory. The experts responded in force to Ms. vos Savant s column. Of the critical letters she received, close to 1,000 carried signatures with Ph.D. s and many were letterheads of mathematics and science departments. Our math department had a good, self-righteous laugh at your expense. wrote Mary Jane Still, a professor at Palm Beach Junior College. Robert Sachs, a professor of mathematics at George Mason University in Fairfax, Va., expressed the prevailing view that there was no reason to switch doors. You blew it! he wrote. Let me explain: If one door is shown to be a loser, that information changes the probability of either remaining choice neither of which has any reason to be more likely to 1 2. As a professional mathematician, I m very concerned with the general public s lack of mathematical skills. Please help by confessing your error and, in the future, being more careful. The criticism has continued despite several more columns by Ms. vos Savant defending her choice. You are utterly incorrect, insisted E. Ray Bobo, a professor of mathematics at Georgetown University. How many irate mathematicians are needed to get you to change your mind? The Henry James Treatment Mr. Hall said he was not surprised at the experts insistence that the probability was 1 out of 2. That s the same assumption contestant s would make on the show after I showed them there was nothing behind one door, he said. They d think the odds on the door had now gone up to 1 in 2, so they hated to give up the door no matter how much money I offered. By opening that door we were applying pressure. We called it the Henry James treatment. It was The Turn of the Screw. Mr. Hall said he realized the contestants were wrong, because the odds on Door 1 were still only 1 in 3 even after he opened another door. Since the only other place the car could be was behind Door 2, the odds on that door must now be 2 in 3. Sitting at the dining room table, Mr. Hall quickly conducted 10 rounds of the game as the contestant tried the non-switching strategy. The result was four cards and six goats. Then for the next 10 rounds the contestant tried switching doors, and there was a dramatic improvement: eight cars and two goats. A pattern was emerging. So her answer s right: you should switch, Mr. Hall said, reaching the same conclusion as the tens of thousands of students who conducted similar experiments at Ms. vos Sanant s suggestion. That conclusion was also reached eventually by many of her critics in academia, although most did not bother to write letters of retraction. Dr. Sach s, whose letter was published in her column, was one of the few with the grace to concede his mistake. I wrote her another letter, Dr. Sachs said last week, telling her that after removing my foot from my mouth I m now eating humble pie. I vowed as penance to answer all the people who wrote to castigate me. It s been an intense professional embarrassment. Manipulating a Choice Actually, many of Dr. Sachs s professional colleagues are sympathetic. Persi Diaconis, a former professional magician who is now a Harvard University professor specializing in probability and statistics, said there was no disgrace in getting this one wrong. I can t remember what my first reaction to it was, he said, because I ve known about it for so many years. I m one of the many people who have written papers about it.

6 PAGE 60 But I do know that my first reaction has been wrong time after time on similar problems. Our brains are just not wired to do probability problems very well, so I m not surprised there were mistakes. After the 20 trials at the dining room table, the problem also captured Mr. Hall s imagination. He picked up a copy of Ms. vos Savant s original column, read it carefully, saw a loophole and then made a suggested more trials. On the first, the contestant picked Door 1. That s too bad, Mr. Hall said opening Door 1. You ve won a goat. But you didn t open another door yet or give me a chance to switch. Where does it say that I have to let you switch every time? I m the master of the show. Here, try it again. On the second trial, the contestant again picked Door 1. Mr Hall opened Door 3, revealing a goat. The contestant was about to switch to Door 2 when Mr. Hall pulled out a roll of bills. You re sure you want Door No. 2? he asked. Before I show you what s behind that door, I will give you $3,000 in cash not to switch to it. I ll switch to it. Three thousand dollars, Mr. Hall repeated, shifting into his famous cadence. Cash. Cash money. It could be a car, but it could be a goat. Four thousand. I ll try the door. Forty-five hundred. Forty-seven. Forty-eight. My last offer: Five thousands. Let s open the door. You just ended up with a goat, he said, opening the door. The Problem With the Problem Mr. Hall continues: Now do you see what happened there? The higher I got, the more you thought the car was behind Door 2. I wanted to con you into switching there, because I knew the car was behind door 1. That s the kind of thing I can do when I m in control of the game. You may think you have probability going for you when you follow the answer in her column, but there s the psychological factor to consider. He proceeded to prove his case by winning the next eight rounds. Whenever the contestant began with the wrong door, Mr. Hall promptly opened it and awarded the goat; whenever the contestant started out with the right door, Mr. Hall allowed him to switch doors and get another goat. The only way to win a car would have been to disregard Ms. vos Savant s advice and stick with the original door. Was Mr. Hall cheating? Not according to the rules of the show, because he did have the option of not offering the switch, and usually did not offer it. And although Mr. Hall might have been violating the spirit of Ms. vos Savant s problem, he was not violating its letter. Dr. Diaconis and Mr. Gardner both noticed the same loophole when they compared Ms. vos Savant s wording of the problem with the versions they had analyzed in their articles. The problem is not well-formed, Mr. Gardner said, unless it makes clear that the host must always open an empty door and offer the switch. Otherwise, if the host is malevolent, he may open another door only when it s to his advantage to let the player switch, and the probability of being right by switching could be as low as zero. Mr. Gardner said the ambiguity could be eliminated if the host promised ahead of time to open another door and then offer a switch. Ms. vos Savant acknowledged that the ambiguity did exist in her original statement. She said it was a minor assumption that should have been made obvious by her subsequent analysis, and that it did not excuse her professional critics. I wouldn t have minded if they had raised that objection, she said Friday, because it would mean they really understood the problem. But they never got beyond their first mistaken impression. That s what dismayed me, Still, because of the ambiguity in the wording, it is impossible to solve the problem as stated through mathematical reason. The strict argument, Dr. Diaconis said, would be that the question cannot be answered without knowing the motivation of the host. Which means, of course, that the only person who can answer this version of the Monty Hall Problem is Monty Hall himself. Here is what should be the last word on the subject: If the host is required to open the door all the time and offer you a switch, then you should take the switch, he said. But if he has the choice whether to allow a switch or not, beware. Caveat emptor. It all depends on his mood. My only advice is, if you can get me to offer you $5,000 not to open the door, take the money and go home. What is the point though? The main point is that events may be unrelated to the prior events, however we shouldn t expect this to be the case always. A fair coin, for example, is as likely to come up heads as it is tails regardless of what has happened in

7 PAGE 61 the coin s prior history. The coin doesn t think and each new toss is independent of the coin s past and certainly has no effect on the coin s future! Nevertheless, probabilities on a human level are changing depending on the events as they unfold. A human thinks about the consequence, the contestant wants to win and Mr. Hall may, or may not want the contestant to win. Each person in this game needs to attach a subjective probability to his or her individual decisions and those probabilities may appear to change erratically especially on a highly entertaining game show where time restraints and audience perceptions can easily influence both Mr. Hall and the contestant. Mr. Hall s skills as a host are largely dependent on his audiences perceptions and keep in mind that he must have been pretty damn good to last twenty-seven years. We need to think about how the real world works when modeling a simulation involving human participants. Dependence can often lead to an unexpected difference between what s predicted and what actually happens. Unfortunately, you will often hear mathematical modelers making the independence assumption; usually they ll just say that the model depends on independent and identically distributed random variables and it is said so often that it has its own abbreviation i.i.d.. All the computer simulations in this text have been assumed to be from an i.i.d. random variable and that will not change in this text. The switching strategy has a probability of winning two-thirds of the time only if Mr. Hall acts like a machine. Mr. Hall is anything but mechanical: he s a consummate and a highly intelligent salesman. Furthermore, your computer simulation may make you think the probability is fixed but the reality, due to dependence, can actually be much different. Further analysis of Mr. Hall s past behavior may make us better able to judge each new situation, but the situation will remain dynamic and hard to predict. By dependence, I mean that the probability of what happens next is somehow dependent on some prior event or events. Humans are not machines and when we try to model their behavior using computer simulation, we may be disappointed in how poorly we predict the actual event especially if we think their behavior is independent of past events. My untested hypothesis about Monte Hall is that he was probably biased in his dealings with contestants. No one can be 100% fair and for whatever reason Mr. Hall may have tried to persuade contestants into losing, or for that matter, winning. Why?

8 PAGE 62 Well, maybe it was something psychologically subtle that goes beyond our sense of detection. Even in the article, you can see where Mr. Hall shifts gears to show he is in control by not giving a choice, or even forcing a bad choice. I am going to call this a strategic uncertainty principle, simply stated: The more precisely you know the strategy of an opponent game player, the less likely their strategy will remain the same. In a sense, predictability destroys the fun. For an interesting application of this uncertainty principle, I would suggest looking at the Black-Scholes option pricing model developed by two Nobel laureates as was used by Long-Term Capital, an investment firm. Essentially Long-Term Capital generated limitless wealth in the financial markets, all without work, but then the market decided it didn t like their ways and punished them with limitless losses. Essentially humans are not computers and they will change and adapt to profit from computer like behavior. Especially true if they are allowed to do so.

THE MONTY HALL PROBLEM

THE MONTY HALL PROBLEM University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln MAT Exam Expository Papers Math in the Middle Institute Partnership 7-2009 THE MONTY HALL PROBLEM Brian Johnson University

More information

Appendix D: The Monty Hall Controversy

Appendix D: The Monty Hall Controversy Appendix D: The Monty Hall Controversy Appendix D: The Monty Hall Controversy - Page 1 Let's Make a Deal Prepared by Rich Williams, Spring 1991 Last Modified Fall, 2001 You are playing Let's Make a Deal

More information

Exploring the Monty Hall Problem. of mistakes, primarily because they have fewer experiences to draw from and therefore

Exploring the Monty Hall Problem. of mistakes, primarily because they have fewer experiences to draw from and therefore Landon Baker 12/6/12 Essay #3 Math 89S GTD Exploring the Monty Hall Problem Problem solving is a human endeavor that evolves over time. Children make lots of mistakes, primarily because they have fewer

More information

Book Review of Rosenhouse, The Monty Hall Problem. Leslie Burkholder 1

Book Review of Rosenhouse, The Monty Hall Problem. Leslie Burkholder 1 Book Review of Rosenhouse, The Monty Hall Problem Leslie Burkholder 1 The Monty Hall Problem, Jason Rosenhouse, New York, Oxford University Press, 2009, xii, 195 pp, US $24.95, ISBN 978-0-19-5#6789-8 (Source

More information

Monty Hall, Paul Erdös, and Monte Carlo Irvin Snider, Assurant Health, Milwaukee WI

Monty Hall, Paul Erdös, and Monte Carlo Irvin Snider, Assurant Health, Milwaukee WI Paper 87-2010 Monty Hall, Paul Erdös, and Monte Carlo Irvin Snider, Assurant Health, Milwaukee WI Abstract You are on a game show. The game show host shows you three doors. Behind one of the doors is a

More information

IF MONTY HALL FALLS OR CRAWLS

IF MONTY HALL FALLS OR CRAWLS UDK 51-05 Rosenthal, J. IF MONTY HALL FALLS OR CRAWLS CHRISTOPHER A. PYNES Western Illinois University ABSTRACT The Monty Hall problem is consistently misunderstood. Mathematician Jeffrey Rosenthal argues

More information

Chapter 14. From Randomness to Probability. Probability. Probability (cont.) The Law of Large Numbers. Dealing with Random Phenomena

Chapter 14. From Randomness to Probability. Probability. Probability (cont.) The Law of Large Numbers. Dealing with Random Phenomena Chapter 14 From Randomness to Probability Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 14-1

More information

Idle talk or rumor, especially about the personal or private affairs of others.*

Idle talk or rumor, especially about the personal or private affairs of others.* 20 Days of Trouble Topic #12 Gossip Textbook Def: Idle talk or rumor, especially about the personal or private affairs of others.* Real-Life Look: Oh my gosh, did you see what she was wearing today? Definitely

More information

Multiple Strategies to Analyze Monty Hall Problem. 4 Approaches to the Monty Hall Problem

Multiple Strategies to Analyze Monty Hall Problem. 4 Approaches to the Monty Hall Problem Multiple Strategies to Analyze Monty Hall Problem There is a tendency to approach a new problem from a single perspective, often an intuitive one. The first step is to recognize this tendency and take

More information

This past April, Math

This past April, Math The Mathematics Behind xkcd A Conversation with Randall Munroe Laura Taalman This past April, Math Horizons sat down with Randall Munroe, the author of the popular webcomic xkcd, to talk about some of

More information

Introduction to Probability Exercises

Introduction to Probability Exercises Introduction to Probability Exercises Look back to exercise 1 on page 368. In that one, you found that the probability of rolling a 6 on a twelve sided die was 1 12 (or, about 8%). Let s make sure that

More information

Fallacies and Paradoxes

Fallacies and Paradoxes Fallacies and Paradoxes The sun and the nearest star, Alpha Centauri, are separated by empty space. Empty space is nothing. Therefore nothing separates the sun from Alpha Centauri. If nothing

More information

2 nd Int. Conf. CiiT, Molika, Dec CHAITIN ARTICLES

2 nd Int. Conf. CiiT, Molika, Dec CHAITIN ARTICLES 2 nd Int. Conf. CiiT, Molika, 20-23.Dec.2001 93 CHAITIN ARTICLES D. Gligoroski, A. Dimovski Institute of Informatics, Faculty of Natural Sciences and Mathematics, Sts. Cyril and Methodius University, Arhimedova

More information

The Mystery of Prime Numbers:

The Mystery of Prime Numbers: The Mystery of Prime Numbers: A toy for curious people of all ages to play with on their computers February 2006 Updated July 2010 James J. Asher e-mail: tprworld@aol.com Your comments and suggestions

More information

Thomas Kuhn's "The Structure of Scientific Revolutions"

Thomas Kuhn's The Structure of Scientific Revolutions Thomas Kuhn's "The Structure of Scientific Revolutions" Big History Project, adapted by Newsela staff Thomas Kuhn (1922 1996) was an American historian and philosopher of science. He began his career in

More information

HarperStacks.com HarperCollinsChildrens.com

HarperStacks.com HarperCollinsChildrens.com Educators Guide ABOUT THE BOOK Nine-year-old Mya Tibbs is boot-scootin excited for the best week of the whole school year SPIRIT WEEK! She and her megapopular best friend, Naomi Jackson, even made a pinky

More information

Superstar Teacher Resources

Superstar Teacher Resources Superstar Teacher Resources Created by Mandy Davis (the author) and Debby Davis (a master teacher and the author s mom) Start with a short Book Talk and get your students excited about reading Superstar!

More information

The Talent Store. by Rene Gutteridge. Cash register and table Cash Three colorful sacks of different sizes Three boxes of different sizes

The Talent Store. by Rene Gutteridge. Cash register and table Cash Three colorful sacks of different sizes Three boxes of different sizes by Rene Gutteridge What Who When Wear (Props) Mr. Broney is helping three customers search for extra talent in order to fulfill their obligations at church when he realizes by working together, they might

More information

A Guide to Paradigm Shifting

A Guide to Paradigm Shifting A Guide to The True Purpose Process Change agents are in the business of paradigm shifting (and paradigm creation). There are a number of difficulties with paradigm change. An excellent treatise on this

More information

The Paradox of the Unexpected Hanging

The Paradox of the Unexpected Hanging 's Unexpected Hanging CHAPTER ONE The Paradox of the Unexpected Hanging A new and powerful paradox has come to light. This is the opening sentence of a mind-twisting article by Michael Scriven that appeared

More information

Directions: Today you will be taking a short test using what you have learned about reading fiction texts.

Directions: Today you will be taking a short test using what you have learned about reading fiction texts. Name: Date: Teacher: Reading Fiction Lesson Quick Codes for this set: LZ925, LZ926, LZ927, LZ928, LZ929, LZ930, LZ931 Common Core State Standards addressed: RL.6.1, RL.6.10, RL.6.2, RL.6.5 Lesson Text:

More information

from The Worship Drama Library Volume 2 By Mike and Colleen Gray

from The Worship Drama Library Volume 2 By Mike and Colleen Gray Lillenas Drama Presents HE D LAUGH AT ME! from The Worship Drama Library Volume 2 By Mike and Colleen Gray Theme: God s acceptance regardless of our past, God s complete forgiveness Characters: Two women

More information

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson Math Objectives Students will recognize that when the population standard deviation is unknown, it must be estimated from the sample in order to calculate a standardized test statistic. Students will recognize

More information

ADAM By Krista Boehnert

ADAM By Krista Boehnert ADAM By Krista Boehnert Copyright 2016 by Krista Boehnert, All rights reserved. ISBN: 978-1-60003-860-0 Caution: Professionals and amateurs are hereby warned that this Work is subject to a royalty. This

More information

Jacob listens to his inner wisdom

Jacob listens to his inner wisdom 1 7 Male Actors: Jacob Shane Best friend Wally FIGHT OR FLIGHT Voice Mr. Campbell Little Kid Voice Inner Wisdom Voice 2 Female Actors: Big Sister Courtney Little Sister Beth 2 or more Narrators: Guys or

More information

Little Jack receives his Call to Adventure

Little Jack receives his Call to Adventure 1 7 Male Actors: Little Jack Tom Will Ancient One Steven Chad Kevin 2 or more Narrators: Guys or Girls Narrator : We are now going to hear another story about sixth-grader Jack. Narrator : Watch how his

More information

...so you don't just sit! POB Ames, IA / / fax 4

...so you don't just sit! POB Ames, IA / / fax 4 ...so you don't just sit! POB 742 4 Ames, IA 4 50010-0742 4 515/232-1247 4 515/232-3729 fax 4 al@alsmusic.com Al tackles one of the toughest questions a DJ ever has to answer: What kind of music do you

More information

Here s a question for you: What happens if we try to go the other way? For instance:

Here s a question for you: What happens if we try to go the other way? For instance: Prime Numbers It s pretty simple to multiply two numbers and get another number. Here s a question for you: What happens if we try to go the other way? For instance: With a little thinking remembering

More information

Charleston Conference Preview Interview with Katina Strauch & Leah Hinds & Tim Bowen, Copyright Clearance Center

Charleston Conference Preview Interview with Katina Strauch & Leah Hinds & Tim Bowen, Copyright Clearance Center Charleston Conference Preview Interview with Katina Strauch & Leah Hinds & Tim Bowen, Copyright Clearance Center For podcast release Monday, November 5, 2012 KENNEALLY: This November, hundreds of librarians,

More information

EXPRESSIONS FOR DISCUSSION AND DEBATE

EXPRESSIONS FOR DISCUSSION AND DEBATE Asking someone for their opinion about a topic Yes/No Questions OR Questions WH Questions Do you believe in? Do you think we should? Do you think everybody should? Do you think that? Would you consider?

More information

10 Steps To Effective Listening

10 Steps To Effective Listening 10 Steps To Effective Listening Date published - NOVEMBER 9, 2012 Author - Dianne Schilling Original source - forbes.com In today s high-tech, high-speed, high-stress world, communication is more important

More information

Understanding Plagiarism

Understanding Plagiarism Understanding Plagiarism What it is and how to avoid it Written by Sydney Sherman Graduate Research Assistant and TA in the Department of Astronomy University of Texas at Austin November 20, 2015 Contents

More information

Confrontation between Jackie and Daniel s ex-girlfriend

Confrontation between Jackie and Daniel s ex-girlfriend 1 1 Male Actor: Daniel 6 Female Actors: Little Jackie Dorothy Lacy Suzy Angela Ancient One 2 or more Narrators: Guys or Girls Narrator : Dorothy continued to almost violently insist to Jackie that she

More information

More Sample Essential Questions

More Sample Essential Questions More Sample Essential Questions Math How can you represent the same number in different ways? How does that help you? Why Do We Solve Systems of Equations? Why Do We Need to Strengthen Our Algebra Skills?

More information

Bring it On: The Gift of Conflict

Bring it On: The Gift of Conflict Bring it On: The Gift of Conflict Conflict Mode Self-assessment: Think about instances where you face a negotiation or disagreement with someone else. Select ONE STATEMENT in each pair of statements below

More information

Kaytee s Contest. Problem of the Week Teacher Packet. Answer Check

Kaytee s Contest. Problem of the Week Teacher Packet. Answer Check Problem of the Week Teacher Packet Kaytee s Contest Farmer Kaytee brought one of her prize-winning cows to the state fair, along with its calf. In order to get people to stop and admire her cow, she thought

More information

A STEP-BY-STEP PROCESS FOR READING AND WRITING CRITICALLY. James Bartell

A STEP-BY-STEP PROCESS FOR READING AND WRITING CRITICALLY. James Bartell A STEP-BY-STEP PROCESS FOR READING AND WRITING CRITICALLY James Bartell I. The Purpose of Literary Analysis Literary analysis serves two purposes: (1) It is a means whereby a reader clarifies his own responses

More information

Hangman. 2.1 How to Guard a Secret?

Hangman. 2.1 How to Guard a Secret? 2 Hangman At a trial a prisoner is sentenced to death by the judge. The verdict reads You will be executed next week, but the day on which you will be executed will be a surprise to you. The prisoner reasons

More information

The Debate. Cedarville University. Cody Rodriguez Cedarville University, Student Publications

The Debate. Cedarville University. Cody Rodriguez Cedarville University, Student Publications Cedarville University DigitalCommons@Cedarville Student Publications 9-1-2016 The Debate Cody Rodriguez Cedarville University, codyrodriguez@cedarville.edu Follow this and additional works at: http://digitalcommons.cedarville.edu/student_publications

More information

Same Name. by Steven Burton

Same Name. by Steven Burton Same Name by Steven Burton 1 INT. BEDROOM MORNING The fifty year old handsome Caucasian BENTON primps in front of a mirror as he speaks in voice over. CHUCK approaches Brent. They hug and kiss. (VO) My

More information

Improving Piano Sight-Reading Skills of College Student. Chian yi Ang. Penn State University

Improving Piano Sight-Reading Skills of College Student. Chian yi Ang. Penn State University Improving Piano Sight-Reading Skill of College Student 1 Improving Piano Sight-Reading Skills of College Student Chian yi Ang Penn State University 1 I grant The Pennsylvania State University the nonexclusive

More information

Thinking Involving Very Large and Very Small Quantities

Thinking Involving Very Large and Very Small Quantities Thinking Involving Very Large and Very Small Quantities For most of human existence, we lived in small groups and were unaware of things that happened outside of our own villages and a few nearby ones.

More information

11+ TEST English Paper

11+ TEST English Paper ELEVEN PLUS TEST: English External Use 11+ TEST English Paper 70 minutes First Name Middle Name/s Last Name School Date of Birth DD / MM / YYYY Introduction to the English exam You are allowed a total

More information

PROGRAM: 9 Game Theory Producer: Sean Hutchinson Host: Dan Rockmore

PROGRAM: 9 Game Theory Producer: Sean Hutchinson Host: Dan Rockmore PROGRAM: 9 Game Theory Producer: Sean Hutchinson Host: Dan Rockmore Produced by Oregon Public Broadcasting for Annenberg Media 1 Time Audio Code 00:00 OPENING CREDITS 00:40 HOST We ve all heard it said

More information

Qeauty and the Books: A Response to Lewis s Quantum Sleeping Beauty Problem

Qeauty and the Books: A Response to Lewis s Quantum Sleeping Beauty Problem Qeauty and the Books: A Response to Lewis s Quantum Sleeping Beauty Problem Daniel Peterson June 2, 2009 Abstract In his 2007 paper Quantum Sleeping Beauty, Peter Lewis poses a problem for appeals to subjective

More information

Kaytee s Contest Problem https://www.nctm.org/pows/

Kaytee s Contest Problem https://www.nctm.org/pows/ Pre-Algebra PoW Packet Kaytee s Contest Problem 16004 https://www.nctm.org/pows/ Welcome! This packet contains a copy of the problem, the answer check, our solutions, some teaching suggestions, and samples

More information

Copyright Corwin 2017

Copyright Corwin 2017 The Power of Gossip They Said What?! This session shows students how normalized yet destructive gossip can be and how to develop strategies to stop it. By understanding this dynamic and its consequences,

More information

This will count as a major assessment (test) grade, so be sure to put forth your best effort on this!

This will count as a major assessment (test) grade, so be sure to put forth your best effort on this! Summer Reading Assignment (for students entering 8 th grade) Due Date: August 14 th, 2018 (the second day of school) Due Date for Students Enrolled On/After August 1 st : August 28 th, 2018 Please read

More information

Didn t You Use to Be Famous?

Didn t You Use to Be Famous? Didn t You Use to Be Famous? Welcome to the VOA Learning English program This Is America. This week Barbara Klein and Christopher Cruise tell about several American actors who were widely recognized years

More information

Understanding & Resolving Conflicts. Teacher s Guide

Understanding & Resolving Conflicts. Teacher s Guide Understanding & Resolving Conflicts Teacher s Guide Contents Program Overview... 3 Learning Objectives... 3 Web Resources... 3 Transcript of the Program... 4 2 Program Overview This program outlines a

More information

The Product of Two Negative Numbers 1

The Product of Two Negative Numbers 1 1. The Story 1.1 Plus and minus as locations The Product of Two Negative Numbers 1 K. P. Mohanan 2 nd March 2009 When my daughter Ammu was seven years old, I introduced her to the concept of negative numbers

More information

CRISTINA VEZZARO Being Creative in Literary Translation: A Practical Experience

CRISTINA VEZZARO Being Creative in Literary Translation: A Practical Experience CRISTINA VEZZARO : A Practical Experience This contribution focuses on the implications of creative processes with respect to translation. Translation offers, indeed, a great ambiguity as far as creativity

More information

TEAM JUSTICE AND THE CITY HALL SUPERVILLAINS By Luke Simmons. (Excerpts may be used royalty free for auditions.)

TEAM JUSTICE AND THE CITY HALL SUPERVILLAINS By Luke Simmons. (Excerpts may be used royalty free for auditions.) TEAM JUSTICE AND THE CITY HALL SUPERVILLAINS By Luke Simmons (Excerpts may be used royalty free for auditions.) AUDITION -- for 5 m, 2 w, 7 flex In this scene, Team Justice discover the Supervillains evil

More information

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

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

More information

Look at the pictures. Can you guess what the topic idiom is about?

Look at the pictures. Can you guess what the topic idiom is about? 1H IDIOMS Look at the pictures. Can you guess what the topic idiom is about? EXERCISE A: Match the idioms in column A with their meanings in column B. A B 1. strike it lucky a. to think there might be

More information

The Paradox. Unexpected Hanging

The Paradox. Unexpected Hanging CHAPTER ONE The Paradox of the Unexpected Hanging "A NEW AND POWERFUL PARADOX has Come to light." This is the opening sentence of a mind-twisting article by Michael Scriven that appeared in the July 1951

More information

(OH MY GOD, IT S ANOTHER PLAY! has been published in Playscripts anthology NOTHING SERIOUS.)

(OH MY GOD, IT S ANOTHER PLAY! has been published in Playscripts anthology NOTHING SERIOUS.) the beginning of OH MY GOD, IT S ANOTHER PLAY! a short comedy by Rich Orloff (OH MY GOD, IT S ANOTHER PLAY! has been published in Playscripts anthology NOTHING SERIOUS.) Place: Yes. Time: Don t be so literal.

More information

Minds Work by Ear. What Positioning Taught Us. What Is a Picture Worth?

Minds Work by Ear. What Positioning Taught Us. What Is a Picture Worth? Minds Work by Ear Has anyone ever asked you which is more powerful, the eye or the ear? Probably not, because the answer is obvious. I ll bet that deep down inside, you believe the eye is more powerful

More information

SCIENCE FICTION JANICE GREENE

SCIENCE FICTION JANICE GREENE SCIENCE FICTION JANICE GREENE GREENE MORE PAGETURNERS SCIENCE FICTION NOVELS ESCAPE FROM EARTH Nick s new college roommate, Darryl, needs some help. At first glance, Nick thinks he s a real dork. And what

More information

DVI. Instructions. 3. I control the money in my home and how it is spent. 4. I have used drugs excessively or more than I should.

DVI. Instructions. 3. I control the money in my home and how it is spent. 4. I have used drugs excessively or more than I should. DVI Instructions You are completing this inventory to give the staff information that will help them understand your situation and needs. The statements are numbered. Each statement must be answered. Read

More information

Logic and argumentation techniques. Dialogue types, rules

Logic and argumentation techniques. Dialogue types, rules Logic and argumentation techniques Dialogue types, rules Types of debates Argumentation These theory is concerned wit the standpoints the arguers make and what linguistic devices they employ to defend

More information

Anansi Tries to Steal All the Wisdom in the World

Anansi Tries to Steal All the Wisdom in the World Read the folktales. Then answer the questions that follow. Anansi Tries to Steal All the Wisdom in the World a folktale from West Africa 1 Anansi the spider knew that he was not wise. He was a sly trickster

More information

Not ^ to Give a Talk. By Ogram Fizzy-Water On November 22, 2016 In CS261

Not ^ to Give a Talk. By Ogram Fizzy-Water On November 22, 2016 In CS261 Not How ^ to Give a Talk By Ogram Fizzy-Water On November 22, 206 In CS26 Do not put Titles on your slides Use unreadable FoNTs! use unreadable Colors Use REEAALLY interesting capitalization.*&) And P!unct$ation

More information

Rock Groups. URL: February 7, 2010, 7:00 pm. By STEVEN STROGATZ

Rock Groups. URL:  February 7, 2010, 7:00 pm. By STEVEN STROGATZ URL: http://opinionator.blogs.nytimes.com/2010/02/07/rock-groups/ February 7, 2010, 7:00 pm Rock Groups By STEVEN STROGATZ Like anything else, arithmetic has its serious side and its playful side. The

More information

3.1 Decimal Place Value

3.1 Decimal Place Value 3.1. Decimal Place Value www.ck12.org 3.1 Decimal Place Value Introduction The Ice Cream Stand Julie and her friend Jose are working at an ice cream stand for the summer. They are excited because in addition

More information

Patron-Driven Acquisition: What Do We Know about Our Patrons?

Patron-Driven Acquisition: What Do We Know about Our Patrons? Purdue University Purdue e-pubs Charleston Library Conference Patron-Driven Acquisition: What Do We Know about Our Patrons? Monique A. Teubner Utrecht University, m.teubner@uu.nl Henk G. J. Zonneveld Utrecht

More information

Passion Structure Language Form References. Writing Economics. How to Avoid the Worst in Academic Writing. Roman Horvath

Passion Structure Language Form References. Writing Economics. How to Avoid the Worst in Academic Writing. Roman Horvath Writing Economics How to Avoid the Worst in Academic Writing Roman Horvath Charles University, Institute of Economic Studies, Prague Quantitative Methods, 3 Oct 2012, presentation based on T. Havranek

More information

Jesus said that to prove his divinity. You re not Jesus. It s not funny to even joke about.

Jesus said that to prove his divinity. You re not Jesus. It s not funny to even joke about. Holy Humor Sunday, April 8, 2018 Phil Habecker 1 John 1:1 2:2 You may be wondering why I have this shepherd s staff up here: prop joke. I had to look all over for this thing. I was going to say that I

More information

Startle Response. Joyce Ma and Debbie Kim. September 2005

Startle Response. Joyce Ma and Debbie Kim. September 2005 Startle Response Joyce Ma and Debbie Kim September 2005 Keywords: < formative psychology exhibit multimedia interview observation > 1 Mind Formative Evaluation Startle Response Joyce Ma and Debbie Kim

More information

Chapter 4: How Universal Are Turing Machines? CS105: Great Insights in Computer Science

Chapter 4: How Universal Are Turing Machines? CS105: Great Insights in Computer Science Chapter 4: How Universal Are Turing Machines? CS105: Great Insights in Computer Science QuickSort quicksort(list): - if len of list

More information

Name Date PERSUASIVE SPEECH. 1. This presentation should persuade the audience toward the speaker s way of thinking on a particular subject.

Name Date PERSUASIVE SPEECH. 1. This presentation should persuade the audience toward the speaker s way of thinking on a particular subject. PERSUASIVE SPEECH 1. This presentation should persuade the audience toward the speaker s way of thinking on a particular subject. 2. Always use a brief introduction to get the audience s attention and

More information

Consciousness, Courage and Communications

Consciousness, Courage and Communications Consciousness, Courage and Communications Part II: Listening Gary Copeland Receiving Messages Almost every presentation on effective interpersonal communications (and I ve sat through a lot of them) makes

More information

BANG! BANG! BANG! The noise scared me at first, until I turned around and saw this kid in a dark-blue hockey jersey and a black tuque staring at me

BANG! BANG! BANG! The noise scared me at first, until I turned around and saw this kid in a dark-blue hockey jersey and a black tuque staring at me BANG! BANG! BANG! The noise scared me at first, until I turned around and saw this kid in a dark-blue hockey jersey and a black tuque staring at me through the wire mesh that went around the hockey rink.

More information

SURVEYS FOR REFLECTIVE PRACTICE

SURVEYS FOR REFLECTIVE PRACTICE SURVEYS FOR REFLECTIVE PRACTICE These surveys are designed to help teachers collect feedback from students about their use of the forty-one elements of effective teaching. The high school student survey

More information

PART II METHODOLOGY: PROBABILITY AND UTILITY

PART II METHODOLOGY: PROBABILITY AND UTILITY PART II METHODOLOGY: PROBABILITY AND UTILITY The six articles in this part represent over a decade of work on subjective probability and utility, primarily in the context of investigations that fall within

More information

15 Sure-Fire Tips to Wake Up and Feel Positive Every Day!

15 Sure-Fire Tips to Wake Up and Feel Positive Every Day! 2 15 Sure-Fire Tips to Wake Up and Feel Positive Every Day! Folks usually are as happy as they make up their minds to be ~Abraham Lincoln Did you ever wake up wishing that you could just turn over and

More information

And If You ve Tried CD s And Failed

And If You ve Tried CD s And Failed Teach Your Parrot To Talk Special Report: I m About To Reveal Secrets To Using Teach Your Parrot To Talk CD s To Train Your Bird Dozens Of New Words And If You ve Tried CD s And Failed How A Revolutionary

More information

Advanced Code of Influence. Book 6

Advanced Code of Influence. Book 6 Advanced Code of Influence Book 6 Table of Contents BOOK 6: PERSUASION... 3 The Ivory Throne: Human Persuasion... 3 Figuring Out Which Route a Person Will Take... 6 Exploring the Peripheral Route... 17

More information

The Boarder by Jennifer Gelbard (p. 109)

The Boarder by Jennifer Gelbard (p. 109) The Boarder by Jennifer Gelbard (p. 109) Teacher s Page Plot Summary This story is told by Mindy, a child who believes in her father s ideas even though she doesn t fully understand them. Her sister, Lisa,

More information

Check back at the NCTM site for additional notes and tasks next week.

Check back at the NCTM site for additional notes and tasks next week. Check back at the NCTM site for additional notes and tasks next week. PROOF ENOUGH FOR YOU? General Interest Session NCTM Annual Meeting and Exposition April 19, 2013 Ralph Pantozzi Kent Place School,

More information

Scientific Publication

Scientific Publication 2013-8-24 0 Introduction Scientific Publication Eric Hehner I have recently retired from a long and interesting career as a professor of computer science at the University of Toronto. An important part

More information

Sincerely, Darci the STEM Mom

Sincerely, Darci the STEM Mom Thank you purchasing this lesson titled Marshmallow Flight. More about this lesson can be found on my blog here: http://www.stemmom.org/2012/04/marshmallow puff tubes.html. This file contains two versions

More information

My Book Of Money: Dollars And Cents PDF

My Book Of Money: Dollars And Cents PDF My Book Of Money: Dollars And Cents PDF This sequel to My First Book of Money helps children make the difficult transition between cents and dollars. By first reviewing the names and values of coins, and

More information

Three Ways to Set Your Boundaries Over the Holidays: Part 1 of 3 in Dr. Dabney s Nice Guys Have Great Boundaries series

Three Ways to Set Your Boundaries Over the Holidays: Part 1 of 3 in Dr. Dabney s Nice Guys Have Great Boundaries series Three Ways to Set Your Boundaries Over the Holidays: Part 1 of 3 in Dr. Dabney s Nice Guys Have Great Boundaries series Dr. Laura Dabney MD Three Ways to Set Your Boundaries Over the Holidays: Part 1 of

More information

Guidelines on Format and Duplication of the Master s Thesis and Project Report

Guidelines on Format and Duplication of the Master s Thesis and Project Report Guidelines on Format and Duplication of the Master s Thesis and Project Report Office of the Associate Dean for Undergraduate and Graduate Academics LC 212 and LC 214 August 2017 Version ii Table of Contents

More information

Tony, Frank, John Movie Lesson 2 Text

Tony, Frank, John Movie Lesson 2 Text Tony, Frank, John Movie Lesson 2 Text Hi, it s AJ and welcome to part two of the Tony and Frank video. Actually, it s three people, Tony Robbins, Frank Kern and John Reece. We watched part one. Part one

More information

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! EDITORS NOTES GETTING YOUR ARTICLES PUBLISHED: JOURNAL EDITORS OFFER SOME ADVICE !!! EDITORS NOTES FROM

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! EDITORS NOTES GETTING YOUR ARTICLES PUBLISHED: JOURNAL EDITORS OFFER SOME ADVICE !!! EDITORS NOTES FROM EDITORS NOTES FROM EDITORS NOTES GETTING YOUR ARTICLES PUBLISHED: JOURNAL EDITORS OFFER SOME ADVICE EDITORS NOTE: Getting Your Articles Published; Journal s Offer Some Advice EDITORS NOTES FROM Valentin

More information

EXERCISE A: Match the idioms in column A with their meanings in column B.

EXERCISE A: Match the idioms in column A with their meanings in column B. Look at the pictures. Can you guess what the topic idiom is about? IDIOMS 1H EXERCISE A: Match the idioms in column A with their meanings in column B. A B 1. strike it lucky a. a slight chance 2. don t

More information

Anurag Kashyap on Black Friday at TEDxESPM (Full Transcript)

Anurag Kashyap on Black Friday at TEDxESPM (Full Transcript) Anurag Kashyap on Black Friday at TEDxESPM (Full Transcript) The following is the full transcript of Filmmaker Anurag Kashyap s TEDx Talk on the making of Black Friday at TEDxESPM. Full speaker bio: MP3

More information

Monty Hall Monte Carlo

Monty Hall Monte Carlo Maximum Likelihood Methods for the Social Sciences POLS 510 CSSS 510 Political Science and CSSS University of Washington, Seattle Monty Hall Monte Carlo Christopher Adolph Randall Munroe xkcd.com/1282

More information

UNIT 2 COMPLETE. Complete the conversation. Look at pages in the textbook to check your answers.

UNIT 2 COMPLETE. Complete the conversation. Look at pages in the textbook to check your answers. UNIT 2 COMPLETE Complete the conversation. Look at pages 23-25 in the textbook to check your answers. WOMAN: WOMAN: Excuse me. Aren t you the family moved into the Biden s old house? Yes, we. Hello, Michelle

More information

CONFESSIONS OF A FACEBOOK ADDICT

CONFESSIONS OF A FACEBOOK ADDICT CONFESSIONS OF A FACEBOOK ADDICT By John Hawk, Jr. and Nick Yaksich Copyright MMXI by John Hawk, Jr. and Nick Yaksich All Rights Reserved Brooklyn Publishers LLC in association with Heuer Publishing LLC

More information

Presentation Overview

Presentation Overview Critical Reading and Writing for Graduate School School of Social Work Graduate Writing Workshop Troy Hicks Steve Tuckey Beginning Words We are what we repeatedly do. Excellence, then, is not an act, but

More information

Comments: Alice Carson 10/25/15 1:41 AM. Comment [14]: Those$three$sentences$... [25] Alice Carson 10/25/15 1:41 AM. Alice Carson 10/25/15 1:43 AM

Comments: Alice Carson 10/25/15 1:41 AM. Comment [14]: Those$three$sentences$... [25] Alice Carson 10/25/15 1:41 AM. Alice Carson 10/25/15 1:43 AM On certain days, I might contemplate trading my soul to the devil for free pizza. So it s no surprise that three years ago, on the first day of school, two slices of pizza overcame my initial trepidation

More information

Google delays book scanning

Google delays book scanning www.breaking News English.com Ready-to-use ESL / EFL Lessons Google delays book scanning URL: http://www.breakingnewsenglish.com/0508/050814-books-e.html Today s contents The Article 2 Warm-ups 3 Before

More information

Liberty View Elementary. Social Smarts

Liberty View Elementary. Social Smarts Liberty View Elementary Social Smarts ` Which Road Do You Choose? Expected Road *CONSEQUENCES* Town of Smilesville Others Feelings YIELD Unexpected Road Others Feelings *CONSEQUENCES* YIELD Grumpy Town

More information

Peter D Adamo, an American doctor, produced a book titled Eat Right for

Peter D Adamo, an American doctor, produced a book titled Eat Right for !! Peter D Adamo, an American doctor, produced a book titled Eat Right for Your Type. In his publication he explains his idea about how people s blood type works as an important factor in determining a

More information

Independent Reading Project

Independent Reading Project English II and English II Honors Ms. Davis Independent Reading Project Forms and Guidelines Name: Period: Due Date: Monday, October 2, 2017 1 Independent Reading Project Guidelines 1. You will be required

More information

Skills 360 Levels of Formality in English (Part 2)

Skills 360 Levels of Formality in English (Part 2) Skills 360 Levels of Formality in English (Part 2) Discussion Questions 1. How many different levels of formality do you think there are in English? 2. In what situations do you think it s acceptable to

More information

Written by Judy Blume Illustrated by Sonia O. Lisker Packet by Kiley and Anisa Kyrene de las Brisas Elementary School April 2001

Written by Judy Blume Illustrated by Sonia O. Lisker Packet by Kiley and Anisa Kyrene de las Brisas Elementary School April 2001 Written by Judy Blume Illustrated by Sonia O. Lisker Packet by Kiley and Anisa Kyrene de las Brisas Elementary School April 2001 www.kyrene.org/schools/brisas/sunda/litpack/litstudy.htm You can find these

More information