Computer Science 101 Project 2: Predator Prey Model

Size: px
Start display at page:

Download "Computer Science 101 Project 2: Predator Prey Model"

Transcription

1 Computer Science 101 Project 2: Predator Prey Model Real-life situations usually are complicated and difficult to model exactly because of the large number of variables present in real systems. Computer models generally simplify the system or process being studied by including only the variables that constitute its essence and neglecting the rest. We will do this for a particular type of system, called a predator-prey system. A. Understanding the System The The first step in developing a computer model is to understand the system well. In this case, our system is one in which there are two types of organisms involved. The prey, which serves as food for the predator. The prey also relies on the predator for population control The predator, which has the prey as its main food source. The predator relies on prey being present, because if the prey dies out the predator doesn t have another source of food. Our interest is in developing a model of how the populations of such a system will vary over time. We hope that the model s predictions will give us some insight into several research questions: How will the populations change with time? Is there any relationship between the sizes of the populations as they change? Do the initial sizes of the populations have any bearing on their subsequent behavior? How do the birth and death rates of the species affect the population dynamics? B. Simplifying Assumptions The second step in developing a computer model is to choose the most important features of the system in order to simplify it, while still retaining its essence. We will consider a simplified case of an island occupied only by rabbits and foxes. Our assumptions will be the following: The island furnishes more than enough food to feed the rabbits. The only way the rabbits die is being eaten by foxes. The foxes only eat rabbits The foxes die only of natural causes. Admittedly these assumptions are only an approximation, but we think that they do capture the essence of the system in which we are interested and that they may help us understand how such a system behaves. 1

2 C. Symbolic/Mathematical Equations The next step is to express the simplified features of the system symbolically as mathematical equations. We will look at the populations of rabbits and foxes at different times. At each time interval we will make the following assumptions: The number of rabbits is equal to: o the number of rabbits in the previous time interval o plus the number of rabbits born o minus the number of rabbits eaten by the foxes. The number of foxes is equal to: o the number of foxes at the previous time interval o minus the number of foxes that die o plus the number of extra foxes born because there are enough rabbits available as food. We can write this symbolically in terms of mathematical equations: R(t) = # rabbits at time t R(t+1) = # rabbits at the following time t+1 F(t) = # foxes at time t F(t+1) = # foxes at the following time t+1 B = rabbit birth rate D = fox death rate L = rate of rabbit loss due to foxes eating them G = rate of gain in foxes due to eating rabbits R(t+1) = R(t) + B*R(t) L*R(t)*F(t) F(t+1) = F(t) D*F(t) + G*R(t)*F(t) * means multiply For example, suppose that the values are the following: R(t) = 200 F(t) = 50 B =.07 D =.05 L =.0007 G =.0002 Then the number of rabbits and foxes at the next time interval would be the following: R(t+1) = (.07)*(200) (.0007)*(200)*(50) = = 207 F(t+1) = 50 (.05)*(50) + (.0002)*(200)*(50) = = 49.5 Don t worry about the fractional foxes. This is just a model. 2

3 D. The Algorithm As well as the sequence of operations defined by the mathematical equations above, the algorithm for their solution also needs some other things: Input: six values are necessary as input for our model o The initial number of rabbits o The initial number of foxes o The rabbit birth rate (B) o The fox death rate (D) o The rate of loss of rabbits due to foxes eating them (L) o The rate of gain in foxes due to them eating the rabbits (G) When to Stop o Stop when the time t = 1000 Output o The output will be the number of rabbits and foxes at each time from 1 to o We will display the output with an Excel spreadsheet printout like the below. 3

4 E. The Calculations The next step is to do the algorithmic calculations using a computer. This will be your second project. F. Your Project Working independently, you should design a spreadsheet for this model. The upper part of the spreadsheet should look like the picture below. 4

5 Information about the spreadsheet is given below. Send this spreadsheet to me as an attachment. I will grade the spreadsheet file and do not want a printed version. 1. The column width of columns A through K should be All fonts are 10 pt Arial, with the following exceptions a. The title is 14 pt and in bold b. Rows 3 through 9 are in 11 pt. The titles in row 3 are in bold c. Row 12 is in bold 3. Merge the cells required to make the Input and Model tables look like the picture on page Some of the cells have been shaded light gray. 5. Borders a. Add thin and thick borders as shown in the picture on page Text a. See the picture on page Put a function in cell E1 so that it will display today s date. Format the date as shown in the picture on page Cells E4 through E9 hold the values of the input variables a. Enter the values shown in the picture on page 4 9. The times are in cells A13 through A1013. a. Enter the number 0 in cell A13 b. Put a formula in cell A14 that adds 1 to the value in cell A13 c. Copy cell A14 and then paste it into cells A15 through A Put a formula in cell B13 setting it equal to the value in cell E4 11. Put a formula in cell C13 setting it equal to the value in cell E5 12. Put a formula in cell B14 that does a calculation matching the algebraic equation shown below: a. R(t) + B*R(t) L*R(t)*F(t) b. R(t) is in cell B13 c. F(t) is in cell C13 d. B is in cell E6 e. L is in cell E8 f. HINT: Use absolute references when writing this formula. We will copy and paste it into other cells and don t want the values of B or L to change. 5

6 13. Put a formula in cell C14 that does a calculation matching the algebraic equation shown below: a. F(t) - D*F(t) + G*R(t)*F(t) b. R(t) is in cell B13 c. F(t) is in cell C13 d. D is in cell E7 e. G is in cell E9 f. HINT: Use absolute references when writing this formula. We will copy and paste it into other cells and don t the values of D or G to change. 14. Put a formula in cell D13 and E13 calculating the percents of rabbits and foxes relative to the initial numbers of rabbits and foxes respectively. a. Use absolute references when writing the formulas in cells D13 and E Copy cells B14 and C14 and paste them into the block between cells B15 and C Copy cells D13 and E13, and paste then into the block between cells D14 and E Format and position the numbers as shown in the picture on page Create the line chart that is shown in the picture on page 4. (You will need to figure out how to format the values on the x-axis.) 19. The worksheet tab should have the name Predator-Prey. 20. Add a Footer so the printed version of the spreadsheet will look like the picture on page 3. (Use Print Preview!) 21. You may need to change the page margins to fit everything into the printed page. 22. Save the sheet with the name LastName_FirstName_PP. An example would be Whisnant_David_PP. 23. Send the file to me as an attachment by April 22. 6

7 G. Experimenting with the Model: Research Questions We will use the model to give us some insight about an actual predator-prey system. Use the model as a guide to try to understand and make predictions about the actual system. To help answer most of the questions below, observe the predictions of the model for values in these ranges: Initial # rabbits (R): between 50 and 200 Initial # foxes (F): between 50 and 200 Rabbit birth rate (B): between.04 and.07 Fox death rate (D:) between.04 and.07 Rate of loss of rabbits from being eaten (L): equal to.0007 Rate of gain of foxes from eating the rabbits (G): equal to.0002 Consider these questions: The model may suggest how the populations of rabbits and foxes will vary with time. o Question 1: What does the model predict about how the populations will vary over time? o Question 2: Do these predictions make sense? Assuming that the foxes and rabbits live together in an isolated location, such as an island, why might their populations behave like the model suggests? Or why not? The model may suggest how the relative populations of rabbits and foxes compare with each other; o Question 3: In the model, is one population (rabbits or foxes) always larger or smaller than the other? o Question 4: Does this prediction make sense? Why might the populations behave like the model suggests? Or why not? o Question 5: What does this have to do with a concept from Ecology called the Ecological Pyramid? The initial populations may have an effect on subsequent population sizes o Question 6: In the model, how does the initial size of the rabbit population affect the sizes of the rabbit and fox populations at later times? o Question 7: Does this prediction make sense? Why might the populations behave like the model suggests? Or why not? o Question 8: In the model, how does the initial size of the fox population affect the sizes of the rabbit and fox populations at later times? o Question 9: Does this prediction make sense? Why might the populations behave like the model suggests? Or why not? The model may suggest what would happen if there were only rabbits, and no foxes, on the island. Use an initial # foxes (F) equal 0 for this question. o Question 10: In the model, what do you observe when there are no foxes present (initial F = 0)? o Question 11: Does this prediction make sense for a real system? Why or why not. 7

8 The model may suggest what would happen if there were only foxes, and no rabbits, on the island. Use an initial # rabbits (R) equal 0 for this question. o Question 12: In the model, what do you observe when there are no rabbits present (initial R = 0)? o Question 13: Does this prediction make sense for a real system? Why or why not? The model may suggest how the birth rate of the rabbits will affect the populations. o Question 14: In the model, how does the birth rate of the rabbits (B) affect the populations of foxes and rabbits? o Question 15: Does this prediction make sense for a real system? Why or why not? The model may suggest how the death rate of the foxes will affect the populations. o Question 16: In the model, how does the death rate of the foxes (D) affect the populations of foxes and rabbits? o Question 17: Does this prediction make sense for a real system? Why or why not? The model may suggest what will happen if one of the species dies out. Assume that a population value less than 0.5 is essentially zero. o Question 18: In the model, there are several initial conditions for which the rabbit or fox populations drop to below 0.5 at some later time. What do you observe happening to this population after it has dropped below 0.5? Does it remain at zero? o Question 19: Does this prediction make sense for a real system? Why or why not? We need to think about the assumptions we have made for our model (see the first page of this handout). o Question 20: How could we improve our assumptions so that the model is somewhat more realistic? o More than one person may answer this question. If you have an original contribution to make, you may include it even if someone else also has answered the question. The final step in model building is to compare the model s predictions with experiment. We need to find experimental observations that help evaluate the model. o Question 21: What kind of information can you find on the web or in the Library databases about real systems that may be described by the predator-prey model? What real populations have been studied that may be described by this model? What kind of animals, plants, or other organisms were involved? Where were they located? How well does our model describe the real populations? Include references to the web sites or databases o This is an IMPORTANT question because models must be evaluated by comparison with experiment. o More than one person may answer this question. If you have an original contribution to make, you may include it even if someone else also has answered the question. 8

9 And finally, o Question 22: Is there anything else you would like to say about the model or its predictions. o More than one person may answer this question. If you have an original contribution to make, you may include it even if someone else also has answered the question. H. Collaborating Using a Wiki The entire class is going to produce a collaborative web document focusing on these research questions. We will use a Wiki to develop the document. Class members are asked to enter answers to the above research questions in the Wiki document. Your entry should not duplicate what someone else already has said. However, you may make a contribution about a research question someone else has answered if you have something different to say, or if you want to make a change in what they have said. You do not need to limit yourself to the research questions if you notice something interesting. The important thing is to make a new and original contribution to the document. By Thursday, April 17 each person should have answered ONE research question in the Wiki document. Please answer only one question to give everyone an opportunity to participate. The only exceptions to this are Questions 20, 21 and 22. Anyone can answer these questions before April 17, even if they have already answered one of the others. When you enter an answer in the wiki, make sure you fill out the Short description of changes: section. (See page 5 of the Using the CS 101 Wiki instructions). As added insurance send me an message describing what you have done. On April 17, anyone can feel free to make as many more contributions to the Wiki document as they desire. The quality and quantity of your contribution(s) to the Wiki document will influence the grade on the project. Remember that this is a collaborative document, so all members of the class are responsible for ensuring that the information in the document is reliable. We must police the document for errors. If you see a statement that you think is inaccurate, strike through the offending text. (See page 7 of the Using the CS 101 Wiki instructions), and add text you think is more correct. DO NOT DELETE TEXT THAT IS WRONG, JUST STRIKE IT THROUGH. I will be the final arbitrator of disputes all wikis need one. 9

10 I. Project Grading This project will count 70 points 50 for the spreadsheet and 20 for the wiki. There will be four contributions to the wiki grade: Quantity: How many contributions have you made? o Remember that, until April 17, you may only answer one question. Questions 20, 21, and 22 are exceptions. There probably will be many contributions to these questions and they may be answered before April 17, even if you have answered another. o If someone has already answered a question, but you have something else original to say, you may add it. o Between April 17 and April 25, you may answer as many as you want, as long as your contributions are original. Quality: How useful are your contributions to the discussion? Use of wiki syntax o On pages 6 9 of the Using the CS 101C Wiki handout, I have included instructions on how to use the wiki syntax to add variety and emphasis to text entered in the wiki. Even more information on the syntax of this wiki can be found at the URL below: o I will look for use of wiki syntax in your answers Overall wiki quality: Does the wiki contain reliable information? Are there errors, inaccuracies, or poor wording present? o It is everyone s responsibility to keep the wiki as reliable as possible. Everyone must police the wiki and correct problems that they see. If you do correct a problem, strike through offending text and then enter your correction. I will be the final arbitrator of what is correct. o A portion of your wiki grade will be an overall class grade. A few points of your grade will depend on the overall quality of the wiki s information. This portion of the grade will be the same for every member of the class. DUE DATES: April 16: Deadline for answering one question on the wiki. Questions 20, 21, and 22 are exceptions. These may be answered any time, even if you have answered another question. April 22: Deadline for sending me the spreadsheet as an attachment. April 25: Deadline for answering more questions on the wiki. 10

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft Excel , (Weixel et al.) Arkansas Spreadsheet Applications - Curriculum Content Frameworks Prentice Hall Learning Microsoft Excel 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Spreadsheet s - Curriculum Content Frameworks Arkansas Spreadsheet s - Curriculum Content Frameworks Unit

More information

Logic Model. When do you create a Logic Model? Create your LM at the beginning of an evaluation and review and update it periodically.

Logic Model. When do you create a Logic Model? Create your LM at the beginning of an evaluation and review and update it periodically. RRC Evaluation Tool Basket: Logic Model 1 Logic Model What is a Logic Model? A logic model is a series of if-then statements that outlines what you expect to happen in your program. For example, If these

More information

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions

Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology Prepare a list of terms with definitions AR Computer Applications I Correlated to Benchmark Microsoft Office 2010 (492490) Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1.1 Define terminology 1.1.1 Prepare a list

More information

NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010

NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010 NATIONAL CERTIFICATE (VOCATIONAL) LIFE ORIENTATION (Second Paper) NQF LEVEL 2 SUPPLEMENTARY EXAMINATION 2010 (7601012) 16 February (X-Paper) 09:00 11:00 This question paper consists of 10 pages and a 1-page

More information

PAGE 1 of 6. Summative Assessment - Dietary Analysis Report Data Worksheets

PAGE 1 of 6. Summative Assessment - Dietary Analysis Report Data Worksheets 1 PAGE 1 of 6 Name _ S.A. # Hour Summative Assessment - Dietary Analysis Report Data Worksheets READ CAREFULLY!!! Welcome to the PROJECT part of your Dietary Analysis Report. You will be entering information

More information

How to use FitDay.com to track your calories (v1.0)

How to use FitDay.com to track your calories (v1.0) How to use FitDay.com to track your calories (v1.0) 2010 Bryne Carruthers -- http://eatfruitfeelgood.com/ Fit Day is a free, easy to use online program that allows you to monitor your intake of calories

More information

Statisticians deal with groups of numbers. They often find it helpful to use

Statisticians deal with groups of numbers. They often find it helpful to use Chapter 4 Finding Your Center In This Chapter Working within your means Meeting conditions The median is the message Getting into the mode Statisticians deal with groups of numbers. They often find it

More information

Table of Contents Foreword 9 Stay Informed 9 Introduction to Visual Steps 10 What You Will Need 10 Basic Knowledge 11 How to Use This Book

Table of Contents Foreword 9 Stay Informed 9 Introduction to Visual Steps 10 What You Will Need 10 Basic Knowledge 11 How to Use This Book Table of Contents Foreword... 9 Stay Informed... 9 Introduction to Visual Steps... 10 What You Will Need... 10 Basic Knowledge... 11 How to Use This Book... 11 The Screenshots... 12 The Website and Supplementary

More information

Character and Life Skills: Self-Control Lesson Title: Red Light, Green Light Grade Level: 3-5

Character and Life Skills: Self-Control Lesson Title: Red Light, Green Light Grade Level: 3-5 Lesson Title: Red Light, Green Light Project and Purpose Students discuss various strategies to show self-control and use a red light, yellow light, green light model to represent how they choose to show

More information

NUTRITIONAL ANALYSIS PROJECT

NUTRITIONAL ANALYSIS PROJECT Name Date Period NUTRITIONAL ANALYSIS PROJECT The purpose of this project is for you to analyze your diet and to determine its strengths and weaknesses. Detailed instructions can be found at the following

More information

Participant Information Sheet

Participant Information Sheet Appendix A Participant Information Sheet for Young People Participant Information Sheet Exploring experiences of disclosure and non-disclosure amongst young adolescents who hear voices Hi. My name is Rachel

More information

Psy201 Module 3 Study and Assignment Guide. Using Excel to Calculate Descriptive and Inferential Statistics

Psy201 Module 3 Study and Assignment Guide. Using Excel to Calculate Descriptive and Inferential Statistics Psy201 Module 3 Study and Assignment Guide Using Excel to Calculate Descriptive and Inferential Statistics What is Excel? Excel is a spreadsheet program that allows one to enter numerical values or data

More information

Paper Airplanes & Scientific Methods

Paper Airplanes & Scientific Methods Paper Airplanes & Scientific Methods Scientific Inquiry refers to the many different ways in which scientists investigate the world. Scientific investigations are done to answer questions and solve problems.

More information

Mentoring. Awards. Debbie Thie Mentor Chair Person Serena Dr. Largo, FL

Mentoring. Awards. Debbie Thie Mentor Chair Person Serena Dr. Largo, FL Mentoring What is a mentor, the dictionary says it is someone who is an experienced and trusted adviser, an experienced person who trains and counsels others in the workings of a workplace or organization.

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

A Penny for Your Thoughts: Scientific Measurements and Introduction to Excel

A Penny for Your Thoughts: Scientific Measurements and Introduction to Excel A Penny for Your Thoughts: Scientific Measurements and Introduction to Excel Pre-lab Assignment: Introduction Reading: 1. Chapter sections 1.4 through 1.6 in your course text. 2. This lab handout. Questions:

More information

7.NPA.3 - Analyze the relationship of nutrition, fitness, and healthy weight management to the prevention of diseases such as diabetes, obesity,

7.NPA.3 - Analyze the relationship of nutrition, fitness, and healthy weight management to the prevention of diseases such as diabetes, obesity, 7.NPA.3 - Analyze the relationship of nutrition, fitness, and healthy weight management to the prevention of diseases such as diabetes, obesity, cardiovascular diseases, and eating disorders. 7.NPA.3.2

More information

IMPORTANT!!! Please read the FAQ document BEFORE you step through this tutorial.

IMPORTANT!!! Please read the FAQ document BEFORE you step through this tutorial. IMPORTANT!!! Please read the FAQ document BEFORE you step through this tutorial. If you choose to participate in the CrossFit Viral Nutrition Challenge, please purchase the Premium version of My Fitness

More information

LEAVING EVERYONE WITH THE IMPRESSION OF INCREASE The Number One Key to Success

LEAVING EVERYONE WITH THE IMPRESSION OF INCREASE The Number One Key to Success LESSON ELEVEN LEAVING EVERYONE WITH THE IMPRESSION OF INCREASE The Number One Key to Success 167 Lesson Eleven AREA 1 NAME AREA 2 NAME AREA 3 NAME KEY POINTS Riches, in the context of this program, refers

More information

Experiment 1: Scientific Measurements and Introduction to Excel

Experiment 1: Scientific Measurements and Introduction to Excel Experiment 1: Scientific Measurements and Introduction to Excel Reading: Chapter 1 of your textbook and this lab handout. Learning Goals for Experiment 1: To use a scientific notebook as a primary record

More information

Choosing Life: Empowerment, Action, Results! CLEAR Menu Sessions. Substance Use Risk 2: What Are My External Drug and Alcohol Triggers?

Choosing Life: Empowerment, Action, Results! CLEAR Menu Sessions. Substance Use Risk 2: What Are My External Drug and Alcohol Triggers? Choosing Life: Empowerment, Action, Results! CLEAR Menu Sessions Substance Use Risk 2: What Are My External Drug and Alcohol Triggers? This page intentionally left blank. What Are My External Drug and

More information

High School Lesson Plan

High School Lesson Plan High School Lesson Plan Choosing Healthy Beverages Rethink Your Drink Grades 9-12 I. Lesson Objectives: A. Students will explain the importance of water and hydration. B. Students will identify healthy

More information

Spartan Dairy 3 Tutorial

Spartan Dairy 3 Tutorial Spartan Dairy 3 Tutorial Evaluating an existing ration and rebalancing it In this exercise, we will open an existing ration, alter the animal description, edit feeds, and rebalance to meet the new requirements.

More information

you-try-it-02.xlsx Step-by-Step Guide ver. 8/26/2009

you-try-it-02.xlsx Step-by-Step Guide ver. 8/26/2009 you-try-it-02.xlsx Step-by-Step Guide ver. 8/26/2009 Abstract This document provides step-by-step instructions for the Excel workbook you-try-it-02.xlsx (Excel 2007). The worksheets contain data for practice

More information

Title Be specific, but keep the title simple, short, and to the point regarding what your experiment was about.

Title Be specific, but keep the title simple, short, and to the point regarding what your experiment was about. A Guide to Writing Scientific Lab Reports Scientific writing is essential for the dissemination of research results, and the ability to clearly convey detailed information to someone else is essential

More information

Allegany Rehabilitation Associates Personalized Recovery Oriented Services. PROS Service: CRS Wellness Self-Management Coping Skill Training

Allegany Rehabilitation Associates Personalized Recovery Oriented Services. PROS Service: CRS Wellness Self-Management Coping Skill Training Allegany Rehabilitation Associates Total Number of Sessions: Approximately 12-14 Duration of Each Session: 30-45 minutes PROS Service: CRS Wellness Self-Management Coping Skill Training Target Population:

More information

MITOCW ocw f99-lec20_300k

MITOCW ocw f99-lec20_300k MITOCW ocw-18.06-f99-lec20_300k OK, this is lecture twenty. And this is the final lecture on determinants. And it's about the applications. So we worked hard in the last two lectures to get a formula for

More information

Using the New Nutrition Facts Label Formats in TechWizard Version 5

Using the New Nutrition Facts Label Formats in TechWizard Version 5 Using the New Nutrition Facts Label Formats in TechWizard Version 5 Introduction This document covers how to utilize the new US Nutrition Facts label formats that are part of Version 5. Refer to Installing

More information

Progress Monitoring Handouts 1

Progress Monitoring Handouts 1 Progress Monitoring Handouts Teacher Administration Scripts, Teacher Sheets, and Student Sheets Reading Letter Sound Fluency (LSF)..2 Word Identification Fluency (WIF)...5 Passage Reading Fluency (PRF)

More information

about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat.

about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat. Brad Pilon 1 2 3 ! For many people, the best thing about Eat Stop Eat is that there is the equivalent of two days a week where you don t have to worry about what you eat.! However, this still means there

More information

You can find a wealth of information and extra support on epilepsy in the following places:

You can find a wealth of information and extra support on epilepsy in the following places: Seizure Diary Epilepsy Introduction Some people find that their brain tumour causes epilepsy. Our brain functions on electrical activity. When there is a sudden abnormal burst of this electrical activity,

More information

To learn how to use the molar extinction coefficient in a real experiment, consider the following example.

To learn how to use the molar extinction coefficient in a real experiment, consider the following example. Week 3 - Phosphatase Data Analysis with Microsoft Excel Week 3 Learning Goals: To understand the effect of enzyme and substrate concentration on reaction rate To understand the concepts of Vmax, Km and

More information

AT THE MARKET (PART II)

AT THE MARKET (PART II) AT THE MARKET (PART II) AS YOU MAY REMEMBER, WE ENDED THE LAST WORKSHOP BY DISCUSSING HEALTHY SHOPPING TIPS. NOW WE RE GOING TO HAVE A BIT OF FUN WHILE DISCUSSING THE FOOD PYRAMID. THE FOOD PYRAMID WILL

More information

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful.

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. icausalbayes USER MANUAL INTRODUCTION You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. We expect most of our users

More information

Newcastle disease and Newcastle disease vaccination in village poultry. A training manual

Newcastle disease and Newcastle disease vaccination in village poultry. A training manual Newcastle disease and Newcastle disease vaccination in village poultry A training manual National Rural Poultry Centre PO Box 81 Likuni Malawi http://www.ruralpoultrymalawi.org Acknowledgements and Introduction

More information

Do You Want Ketchup With Those Nutrients?

Do You Want Ketchup With Those Nutrients? Do You Want Ketchup With Those Nutrients? By Ferri Lockhart for Blue Ridge Public Television (WBRA, WMSY,WSBN) Fleming/Ruffner Magnet Center, Roanoke, VA Grade Level: 7-12 Time Allotment: Two 45 minute

More information

Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg.

Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg. Photometry Frequently Asked Questions Q: How do I get the protein concentration in mg/ml from the standard curve if the X-axis is in units of µg. Protein standard curves are traditionally presented as

More information

Problem Situation Form for Parents

Problem Situation Form for Parents Problem Situation Form for Parents Please complete a form for each situation you notice causes your child social anxiety. 1. WHAT WAS THE SITUATION? Please describe what happened. Provide enough information

More information

NR , CCNE: Reducing Your Risk for Type 2 Diabetes

NR , CCNE: Reducing Your Risk for Type 2 Diabetes NR-000-53, CCNE: Reducing Your Risk for Type 2 Diabetes Client-centered nutrition education uses methods like group discussions and hands-on activities to engage participants in learning. This outline

More information

TASC CONFERENCES & TRAINING EVENTS

TASC CONFERENCES & TRAINING EVENTS TASC is sponsored by the Administration on Developmental Disabilities (ADD), the Center for Mental Health Services (CMHS), the Rehabilitation Services Administration (RSA), the Social Security Administration

More information

RESULTS REPORTING MANUAL. Hospital Births Newborn Screening Program June 2016

RESULTS REPORTING MANUAL. Hospital Births Newborn Screening Program June 2016 RESULTS REPORTING MANUAL Hospital Births Newborn Screening Program June 2016 CONTENTS GETTING STARTED... 1 Summary... 1 Logging In... 1 Access For New Hires... 2 Reporting Parental Refusals... 3 Adding

More information

DAY 2 RESULTS WORKSHOP 7 KEYS TO C HANGING A NYTHING IN Y OUR LIFE TODAY!

DAY 2 RESULTS WORKSHOP 7 KEYS TO C HANGING A NYTHING IN Y OUR LIFE TODAY! H DAY 2 RESULTS WORKSHOP 7 KEYS TO C HANGING A NYTHING IN Y OUR LIFE TODAY! appy, vibrant, successful people think and behave in certain ways, as do miserable and unfulfilled people. In other words, there

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

Intro to SPSS. Using SPSS through WebFAS

Intro to SPSS. Using SPSS through WebFAS Intro to SPSS Using SPSS through WebFAS http://www.yorku.ca/computing/students/labs/webfas/ Try it early (make sure it works from your computer) If you need help contact UIT Client Services Voice: 416-736-5800

More information

15.053x. OpenSolver (http://opensolver.org/)

15.053x. OpenSolver (http://opensolver.org/) 15.053x OpenSolver (http://opensolver.org/) 1 Table of Contents Introduction to OpenSolver slides 3-4 Example 1: Diet Problem, Set-Up slides 5-11 Example 1: Diet Problem, Dialog Box slides 12-17 Example

More information

observational studies Descriptive studies

observational studies Descriptive studies form one stage within this broader sequence, which begins with laboratory studies using animal models, thence to human testing: Phase I: The new drug or treatment is tested in a small group of people for

More information

Selection at one locus with many alleles, fertility selection, and sexual selection

Selection at one locus with many alleles, fertility selection, and sexual selection Selection at one locus with many alleles, fertility selection, and sexual selection Introduction It s easy to extend the Hardy-Weinberg principle to multiple alleles at a single locus. In fact, we already

More information

General Kcal Count Information

General Kcal Count Information KCAL COUNTS General Kcal Count Information There are 2 kinds of Kcal Counts: E8 and non-e8. E8 have slips of paper that they write on Non E8 have envelopes that they use E8 KCAL COUNTS Non-E8 KCAL COUNTS

More information

HERITABILITY INTRODUCTION. Objectives

HERITABILITY INTRODUCTION. Objectives 36 HERITABILITY In collaboration with Mary Puterbaugh and Larry Lawson Objectives Understand the concept of heritability. Differentiate between broad-sense heritability and narrowsense heritability. Learn

More information

Medicaid Denied My Request for Services, Now What?

Medicaid Denied My Request for Services, Now What? Medicaid Denied My Request for Services, Now What? A Handbook on How to Appeal Medicaid Services Denial Kentucky Protection & Advocacy This handbook gives legal information about how to file a Kentucky

More information

Quick Read Series. Information for people with seizure disorders

Quick Read Series. Information for people with seizure disorders Quick Read Series Information for people with seizure disorders 2003 Epilepsy Foundation of America, Inc. This pamphlet is designed to provide general information about epilepsy to the public. It does

More information

AFSP SURVIVOR OUTREACH PROGRAM VOLUNTEER TRAINING HANDOUT

AFSP SURVIVOR OUTREACH PROGRAM VOLUNTEER TRAINING HANDOUT AFSP SURVIVOR OUTREACH PROGRAM VOLUNTEER TRAINING HANDOUT Goals of the AFSP Survivor Outreach Program Suggested Answers To Frequently Asked Questions on Visits Roadblocks to Communication During Visits

More information

Dementia Direct Enhanced Service

Dementia Direct Enhanced Service Vision 3 Dementia Direct Enhanced Service England Outcomes Manager Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100

More information

MBios 478: Systems Biology and Bayesian Networks, 27 [Dr. Wyrick] Slide #1. Lecture 27: Systems Biology and Bayesian Networks

MBios 478: Systems Biology and Bayesian Networks, 27 [Dr. Wyrick] Slide #1. Lecture 27: Systems Biology and Bayesian Networks MBios 478: Systems Biology and Bayesian Networks, 27 [Dr. Wyrick] Slide #1 Lecture 27: Systems Biology and Bayesian Networks Systems Biology and Regulatory Networks o Definitions o Network motifs o Examples

More information

Follow-up Call Script and Log

Follow-up Call Script and Log Patient Name: Follow-up Call Script and Log The adoption of this worksheet is optional but we have tried to create it so that it will both guide the educator through the follow-up phone calls and help

More information

Living well today...32 Hope for tomorrow...32

Living well today...32 Hope for tomorrow...32 managing diabetes managing managing managing managing managing managing diabetes Scientific research continually increases our knowledge of diabetes and the tools to treat it. This chapter describes what

More information

Working Together To Outrun Cancer

Working Together To Outrun Cancer Lesson: Talking to Students About Cancer Curriculum Connection: Language Arts / Health Education Grade Level: Primary Time: Approximately 40-60 minutes Lesson Snapshot Sometimes teachers wonder how they

More information

Natural Selection Simulation: Predation and Coloration

Natural Selection Simulation: Predation and Coloration Name Period Date Natural Selection Simulation: Predation and Coloration This simulation was invented by G. Ledyard Stebbins, a pioneer in the evolution of plants. The purpose of the game is to illustrate

More information

10 session activity guide for women s circles

10 session activity guide for women s circles WOMENS CIRCLE Identity Who I Am 10 session activity guide for women s circles Authors: Karrie A. Mills, Christa J. Porter, and Vicki K. Pitstick With Giovanna Taormina, Kitty Tyrol, and Beth Hossfeld,

More information

Science 3105 From Life to Lifestyle Study Guide

Science 3105 From Life to Lifestyle Study Guide Adult Basic Education Science From Life to Lifestyle Study Guide Credit Value: 1 Prerequisites: None Text: science.connect1; Colbourne, Fernandez, et al; McGraw-Hill Ryerson; 2002. Science Courses [General

More information

4/14/2016. Take ownership of the care - This is my patient!

4/14/2016. Take ownership of the care - This is my patient! Guidelines and Training in how to be a Emergency Health Professional NAVIGATOR 2016 Paul Stiegler MD FACEP Medical Director EMD Dane County PSCC Onstar LLC Take ownership of the care - This is my patient!

More information

Market Research on Caffeinated Products

Market Research on Caffeinated Products Market Research on Caffeinated Products A start up company in Boulder has an idea for a new energy product: caffeinated chocolate. Many details about the exact product concept are yet to be decided, however,

More information

PBSI-EHR Off the Charts!

PBSI-EHR Off the Charts! PBSI-EHR Off the Charts! Enhancement Release 3.2.1 TABLE OF CONTENTS Description of enhancement change Page Encounter 2 Patient Chart 3 Meds/Allergies/Problems 4 Faxing 4 ICD 10 Posting Overview 5 Master

More information

GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS

GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS GCSE PSYCHOLOGY UNIT 2 SURVEYS SURVEYS SURVEY = is a method used for collecting information from a large number of people by asking them questions, either

More information

MY FITNESS PAL USER GUIDE

MY FITNESS PAL USER GUIDE MY FITNESS PAL USER GUIDE DIET PROFILE To help personalize your fitness goals, enter the following: Current weight Goal weight Height Gender Date of birth You also enter your normal daily activity options

More information

APA Style. Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre

APA Style. Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre APA Style Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre What is APA anyway? It stands for The American Psychological Association.

More information

Who will benefit from using this app?

Who will benefit from using this app? INSTRUCTIONS for THE MINDFUL EATING COACH APP (available at Apple Store) (These instructions provide more detail than what is currently in the app under the Coaching tab) Who will benefit from using this

More information

New Food Label Pages Diabetes Self-Management Program Leader s Manual

New Food Label Pages Diabetes Self-Management Program Leader s Manual New Food Label Pages The FDA has released a new food label, so we have adjusted Session 4 and provided a handout of the new label. Participants use the handout instead of looking at the label in the book

More information

Pain Journaling: Clues to Fall Prevention and Movement Inhibition*

Pain Journaling: Clues to Fall Prevention and Movement Inhibition* Pain Journaling: Clues to Fall Prevention and Movement Inhibition* Susan J. Grosse Aquatic Consulting & Education Resource Services sjgrosse@execpc.com http://my.execpc.com/~sjgrosse Pain is our body s

More information

Charts Worksheet using Excel Obesity Can a New Drug Help?

Charts Worksheet using Excel Obesity Can a New Drug Help? Worksheet using Excel 2000 Obesity Can a New Drug Help? Introduction Obesity is known to be a major health risk. The data here arise from a study which aimed to investigate whether or not a new drug, used

More information

Section 3 Correlation and Regression - Teachers Notes

Section 3 Correlation and Regression - Teachers Notes The data are from the paper: Exploring Relationships in Body Dimensions Grete Heinz and Louis J. Peterson San José State University Roger W. Johnson and Carter J. Kerk South Dakota School of Mines and

More information

mehealth for ADHD Parent Manual

mehealth for ADHD Parent Manual mehealth for ADHD adhd.mehealthom.com mehealth for ADHD Parent Manual al Version 1.0 Revised 11/05/2008 mehealth for ADHD is a team-oriented approach where parents and teachers assist healthcare providers

More information

2010 March of Dimes Foundation

2010 March of Dimes Foundation - 2010 March of Dimes Foundation Welcome to March for Babies 2011! We re so glad you decided to join us as we walk together for stronger, healthier babies. March for Babies is America s favorite walking

More information

Experiment 1: Scientific Measurements and Introduction to Excel

Experiment 1: Scientific Measurements and Introduction to Excel Experiment 1: Scientific Measurements and Introduction to Excel Reading: Chapter 1 of your textbook and this lab handout. Learning Goals for Experiment 1: To use a scientific notebook as a primary record

More information

Steps to Creating a New Workout Program

Steps to Creating a New Workout Program Steps to Creating a New Workout Program Step 1: Log into lab website: https://fitnessandhealthpromotion.ca/ a. If you have never logged in, use your FOL username without the @fanshaweonline.ca portion

More information

To open a CMA file > Download and Save file Start CMA Open file from within CMA

To open a CMA file > Download and Save file Start CMA Open file from within CMA Example name Effect size Analysis type Level Tamiflu Symptom relief Mean difference (Hours to relief) Basic Basic Reference Cochrane Figure 4 Synopsis We have a series of studies that evaluated the effect

More information

Building Friendships: Avoid Discounting

Building Friendships: Avoid Discounting Module 3 Part 2 Building Friendships: Avoid Discounting Objectives: 1. Explore the relationship between stress and discounting. 2. Understand what discounting is and how it relates to stress in relationships.

More information

Physiological Simulations: Plasma Glucose Regulation 1 Physiology Biology 390

Physiological Simulations: Plasma Glucose Regulation 1 Physiology Biology 390 Physiological Simulations: Plasma Glucose Regulation 1 Physiology Biology 390 I. An Introduction to this Lab and to Models 2 in General: The purpose of this exercise is to use a computer simulation to

More information

User Guide: The Thrifty Food Plan Calculator

User Guide: The Thrifty Food Plan Calculator User Guide: The Thrifty Food Plan Calculator Parke Wilde, Joseph Llobrera, and Flannery Campbell Friedman School of Nutrition Science and Policy, Tufts University Overview This calculator is a tool for

More information

DEPARTMENT OF POLITICAL SCIENCE AND INTERNATIONAL RELATIONS Research Methods Posc 302 ANALYSIS OF SURVEY DATA

DEPARTMENT OF POLITICAL SCIENCE AND INTERNATIONAL RELATIONS Research Methods Posc 302 ANALYSIS OF SURVEY DATA DEPARTMENT OF POLITICAL SCIENCE AND INTERNATIONAL RELATIONS Research Methods Posc 302 ANALYSIS OF SURVEY DATA I. TODAY S SESSION: A. Second steps in data analysis and interpretation 1. Examples and explanation

More information

Content Part 2 Users manual... 4

Content Part 2 Users manual... 4 Content Part 2 Users manual... 4 Introduction. What is Kleos... 4 Case management... 5 Identity management... 9 Document management... 11 Document generation... 15 e-mail management... 15 Installation

More information

Module 4. Relating to the person with challenging behaviours or unmet needs: Personal histories, life journeys and memories

Module 4. Relating to the person with challenging behaviours or unmet needs: Personal histories, life journeys and memories Module 4 Relating to the person with challenging behaviours or unmet needs: Personal histories, life journeys and memories 1 Key questions How are residents personal histories, life journeys and memories

More information

WRITTEN ASSIGNMENT 1 (8%)

WRITTEN ASSIGNMENT 1 (8%) WRITTEN ASSIGNMENT 1 (8%) The purpose of this first written assignment is to give you practice at thinking scientifically about psychological issues. It s highly likely you have come across claims and

More information

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected?

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected? Some Similarities between the Spread of an Infectious Disease and Population Growth by Jennifer Doherty and Dr. Ingrid Waldron, Department of Biology, University of Pennsylvania, 2007 1 How Does an Infectious

More information

Instructor Guide to EHR Go

Instructor Guide to EHR Go Instructor Guide to EHR Go Introduction... 1 Quick Facts... 1 Creating your Account... 1 Logging in to EHR Go... 5 Adding Faculty Users to EHR Go... 6 Adding Student Users to EHR Go... 8 Library... 9 Patients

More information

Chapter 8: Two Dichotomous Variables

Chapter 8: Two Dichotomous Variables Chapter 8: Two Dichotomous Variables On the surface, the topic of this chapter seems similar to what we studied in Chapter 7. There are some subtle, yet important, differences. As in Chapter 5, we have

More information

Chapter 1: Managing workbooks

Chapter 1: Managing workbooks Chapter 1: Managing workbooks Module A: Managing worksheets You use the Insert tab on the ribbon to insert new worksheets. True or False? Which of the following are options for moving or copying a worksheet?

More information

Excel Project 8 Fast Food Fun

Excel Project 8 Fast Food Fun Excel Project 8 Fast Food Fun Procedure: Step One: Decide which fast food restaurant you would like to visit. Click on that restaurant's web on Mrs. Gudmundson s home page. Once there, plan a meal with

More information

Class #5: THOUGHTS AND MY MOOD

Class #5: THOUGHTS AND MY MOOD : THOUGHTS AND MY MOOD CLASS OUTLINE I. Announcements & Agenda II. III. IV. General Review Personal Project Review Relaxation Exercise V. New Material VI. Personal Project I. Any Announcements? II. GENERAL

More information

Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations)

Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations) Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations) After receiving my comments on the preliminary reports of your datasets, the next step for the groups is to complete

More information

Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table.

Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table. Ages 0-18 mos. Try using a number as an adjective when talking to children. Let s take three books home or There are two chairs at this table. Ages 0-18 mos. Use the words more and less to describe stacks

More information

Tips for Youth Group Leaders

Tips for Youth Group Leaders OVERWHELMED Sometimes youth on the Autism Spectrum become so over-whelmed they are unable to function Most situations can be avoided by asking the youth to gauge their own comfort level Because the body

More information

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES 24 MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES In the previous chapter, simple linear regression was used when you have one independent variable and one dependent variable. This chapter

More information

Scientific Method Stations

Scientific Method Stations Stations Mandatory Things You will need: Station instructions and questions. (Attached) Student Response Sheet (Print one from the blog if you were absent or misplaced your copy) Instructions: Follow the

More information

Directions for Menu Worksheet ***Updated 9/3/2014 for SY Breakfast *** General Information:

Directions for Menu Worksheet ***Updated 9/3/2014 for SY Breakfast *** General Information: Directions for Menu Worksheet ***Updated 9/3/2014 for SY 2014-15 Breakfast *** Welcome to the FNS Menu Worksheet, a tool designed to assist School Food Authorities (SFAs) in demonstrating that each of

More information

Ecosystem Energy Exchange

Ecosystem Energy Exchange Ecosystem Energy Exchange An ecosystem has lots of parts. It is made up of many living things. It has plants and animals and more. Some of them are producers. They make their own food. The rest are consumers.

More information

The Hospital Anxiety and Depression Scale Guidance and Information

The Hospital Anxiety and Depression Scale Guidance and Information The Hospital Anxiety and Depression Scale Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment

More information

How to apply for Access to Work (AtW) online: (Correct as of September 2018)

How to apply for Access to Work (AtW) online: (Correct as of September 2018) This is information to help you apply for AtW. It is worth reading all of this before you start applying because it will help you be prepared with your answers, and gives you suggestions about how to explain

More information

FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS)

FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS) FREQUENTLY ASKED QUESTIONS MINIMAL DATA SET (MDS) Date in parentheses is the date the question was added to the list or updated. Last update 6/25/05 DEFINITIONS 1. What counts as the first call? (6/24/05)

More information