MATLAB Linear Programming. Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University

Size: px
Start display at page:

Download "MATLAB Linear Programming. Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University"

Transcription

1 MATLAB Linear Programming Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University

2 MATLAB Linear Programming Greg Reese. All rights reserved

3 Optimization Optimization - finding value of a parameter that maimizes or minimizes a function with that parameter Talking about mathematical optimization, not optimization of computer code! "function" is mathematical function, not MATLAB language function 3

4 Optimization Optimization Can have multiple parameters Can have multiple functions Parameters can appear linearly or nonlinearly

5 Linear programming Most often used kind of optimization Tremendous number of practical applications "Programming" means determining feasible programs (plans, schedules, allocations) that are optimal with respect to a certain criterion and that obey certain constraints 5

6 A feasible program is a solution to a linear programming problem and that satisfies certain constraints In linear programming Constraints are linear inequalities Criterion is a linear epression Epression called the objective function In practice, objective function is often the cost of or profit from some activity 6

7 Many important problems in economics and management can be solved by linear programming Some problems are so common that they're given special names 7

8 DIET PROBLEM You are given a group of foods, their nutritional values and costs. You know how much nutrition a person needs. What combination of foods can you serve that meets the nutritional needs of a person but costs the least? 8

9 BLENDING PROBLEM Closely relate to diet problem Given quantities and qualities of available oils, what is cheapest way to blend them into needed assortment of fuels? 9

10 TRANSPORTATION PROBLEM You are given a group of ports or supply centers of a certain commodity and another group of destinations or markets to which commodity must be shipped. You know how much commodity at each port, how much each market must receive, cost to ship between any port and market. How much should you ship from each port to each market so as to minimize the total shipping cost? 0

11 WAREHOUSE PROBLEM You are given a warehouse of known capacity and initial stock size. Know purchase and selling price of stock. Interested in transactions over a certain time, e.g., year. Divide time into smaller periods, e.g., months. How much should you buy and sell each period to maimize your profit, subject to restrictions that. Amount of stock at any time can't eceed warehouse capacity. You can't sell more stock than you have

12 Linear programming Mathematical formulation The variables,,... n satisfy the inequalities and 0, 0,... n 0. Find the set of values of,,... n that minimizes (maimizes) Note that a pq and f i are known m n mn m m n n n n b a a a b a a a b a a a n f n f f

13 3 Linear programming Mathematical matri formulation Find the value of that minimizes (maimizes) f T given that 0 and A b, where n n m mn m m n f f f f b b b b a a a a a a a a a A and,,,

14 General procedure Linear programming. Restate problem in terms of equations and inequalities. Rewrite in matri and vector notation 3. Call MATLAB function linprog to solve

15 Eample - diet problem My son's diet comes from the four basic food groups - chocolate dessert, ice cream, soda, and cheesecake. He checks in a store and finds one of each kind of food, namely, a brownie, chocolate ice cream, Pepsi, and one slice of pineapple cheesecake. Each day he needs at least 500 calories, 6 oz of chocolate, 0 oz of sugar, and 8 oz of fat. Using the table on the net slide that gives the cost and nutrition of each item, figure out how much he should buy and eat of each of the four items he found in the store so that he gets enough nutrition but spends as little (of my money...) as possible. 5

16 Eample - diet problem Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice 6

17 Eample - diet problem What are unknowns? Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice = number of brownies to eat each day = number of scoops of chocolate ice cream to eat each day 3 = number of bottles of Coke to drink each day = number of pineapple cheesecake slices to eat each day In linear programming "unknowns" are called decision variables 7

18 Eample - diet problem Objective is to minimize cost of food. Total daily cost is Cost = (Cost of brownies) + (Cost of ice cream) + (Cost of Coke) + (Cost of cheesecake) Cost of brownies = (Cost/brownie) (brownies/day) =.5 Cost of ice cream = Cost of Coke =.5 3 Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice Cost of cheesecake = 8

19 Eample - diet problem Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice Therefore, need to minimize

20 Eample - diet problem Constraint - calorie intake at least 500 Calories from brownies = (calories/brownie)(brownies/day) = 00 Calories from ice cream = 00 Calories from Coke = 50 3 Calories from cheesecake = 500 So constraint is Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice

21 Eample - diet problem Constraint - chocolate intake at least 6 oz Chocolate from brownies = (Chocolate/brownie)(brownies/day) = 3 Chocolate from ice cream = Chocolate from Coke = 0 3 = 0 Chocolate from cheesecake = 0 = 0 So constraint is Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice 3 6

22 Eample - diet problem Constraint 3 - sugar intake at least 0 oz Sugar from brownies = (sugar/brownie)(brownies/day) = Sugar from ice cream = Sugar from Coke = 3 Sugar from cheesecake = So constraint 3 is Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice 3 0

23 Eample - diet problem Constraint - fat intake at least 8 oz Fat from brownies = (fat/brownie)(brownies/day) = Fat from ice cream = Fat from Coke = 3 Fat from cheesecake = 5 So constraint is Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice

24 Eample - diet problem Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice Finally, we assume that the amounts eaten are non-negative, i.e., we ignore throwing up. This means that we have 0, 0, 3 0, and 0

25 Eample - diet problem Putting it all together, we have to minimize subject to the constraints and Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice

26 Eample - diet problem Food Calories Chocolate Sugar (ounces) Fat (ounces) Cost (serving) Brownie 00 3 $.50 / brownie Chocolate ice cream 00 $.00 / scoop Coke 50 0 $.50 / bottle Pineapple cheesecake $.00 / slice In matri notation, want to minimize f T subject to A b and 0 where A , 5 b 500 6, 0 8 3, and f.5.5 6

27 MATLAB solves linear programming problem minimize f T A b such that Aeq beq lb ub where, b, beq, lb, and ub are vectors and A and Aeq are matrices. Can use one or more of the constraints "lb" means "lower bound", "ub" means "upper bound" Often have lb = 0 and ub =, i.e., no upper bound 7

28 MATLAB linear programming solver is linprog(), which you can call various ways: = linprog(f,a,b) = linprog(f,a,b,aeq,beq) = linprog(f,a,b,aeq,beq,lb,ub) = linprog(f,a,b,aeq,beq,lb,ub,0) = linprog(f,a,b,aeq,beq,lb,ub,0,options) = linprog(problem) [,fval] = linprog(...) [,fval,eitflag] = linprog(...) [,fval,eitflag,output] = linprog(...) [,fval,eitflag,output,lambda] = linprog(...) 8

29 9 Linear programming Eample - diet problem Us: MATLAB: Note two differences:.5.5 and,, , f b A b A f T 0 and subject to minimize such that minimize ub lb beq Aeq b A f T

30 Eample - diet problem ISSUE - We have A b but need A b One way to handle is to note that if A b then -A -b, so can have MATLAB use constraint (-A) (-b) ISSUE - We have 0 but MATLAB wants lb ub. Handle by omitting ub in call of linprog(). If omitted, MATLAB assumes no upper bound 30

31 Eample - diet problem = linprog(f,a,b,aeq,beq,lb,ub) We'll actually call = linprog(f,a,b,aeq,beq,lb) If don't have equality constraints, pass [] for Aeq and beq 3

32 Eample - diet problem Follow along now >> A = -[ ; 3 0 0; ;... 5 ]; >> b = -[ ]'; >> f = [.5.5 ]'; >> lb = [ ]'; >> = linprog( f, A, b, [], [], lb ) Optimization terminated. = % brownies % chocolate ice cream.0000 % Coke % cheesecake 3

33 Eample - diet problem Optimal solution is = [ ] T. In words, my son should eat 3 scoops of ice cream and drink Coke each day. 33

34 Eample - diet problem A constraint is binding if both sides of the constraint inequality are equal when the optimal solution is substituted. For = [ ] T the set becomes 6 6, so the chocolate and sugar constraints are binding. The other two are nonbinding

35 Eample - diet problem How many calories, and how much chocolate, sugar and fat will he get each day? >> -A* ans = % calories % chocolate % sugar % fat How much money will this cost? >> f'* ans =.5000 % dollars 35

36 Eample - diet problem Because it's common to want to know the value of the objective function at the optimum, linprog() can return that to you [ fval] = linprog(f,a,b,aeq,beq,lb,ub) where fval = f T >> [ fval] = linprog( f, A, b, [], [], lb ) = fval =

37 Special kinds of solutions Usually a linear programming problem has a unique (single) optimal solution. However, there can also be:. No feasible solutions. An unbounded solution. There are solutions that make the objective function arbitrarily large (ma problem) or arbitrarily small (min problem) 3. An infinite number of optimal solutions. The technique of goal programming is often used to choose among alternative optimal solutions. (Won't consider this case more) 37

38 Can tell about the solution MATLAB finds by using third output variable: [ fval eitflag] =... linprog(f,a,b,aeq,beq,lb,ub) eitflag - integer identifying the reason the algorithm terminated. Values are Function converged to a solution. 0 Number of iterations eceeded options. - No feasible point was found. -3 Problem is unbounded. - NaN value was encountered during eecution of the algorithm. -5 Both primal and dual problems are infeasible. -7 Search direction became too small. No further progress could be made. 38

39 Try It Linear programming Solve the following problem and display the optimal solution, the value of the objective value there, and the eit flag from linprog() Maimize z = - subject to,

40 0 Linear programming Try It First multiply second equation by - to get Then, with objective function z = - rewrite in matri form: 0, and,, 6, lb f b A

41 Linear programming Try It >> A = [ -; - - ]; >> b = [ -6 ]'; >> f = [ - ]'; >> lb = [ 0 0 ]'; 0 0 and,, 6, lb f b A

42 Try It IMPORTANT - linprog() tries to minimize the objective function. If you want to maimize the objective function, pass -f and use -fval as the maimum value of the objective function

43 Try It >> [ fval eitflag] = linprog( -f, A, b, [],[], lb ) Eiting: One or more of the residuals, duality gap, or total relative error has grown times greater than its minimum value so far: the dual appears to be infeasible (and the primal unbounded). (The primal residual < TolFun=.00e-008.) =.0e+06 * fval = -.69e+06 (-fval =.69e+06!!!) eitflag = -3 (Problem is unbounded) 3

44 Try It A farmer has 0 acres to plant in wheat and rye. He has to plant at least 7 acres. However, he has only $00 to spend and each acre of wheat costs $00 to plant and each acre of rye costs $00 to plant. Moreover, the farmer has to get the planting done in hours and it takes an hour to plant an acre of wheat and hours to plant an acre of rye. If the profit is $500 per acre of wheat and $300 per acre of rye how many acres of each should be planted to maimize profits?

45 Try It Decision variables is number of acres of wheat to plant y is number of acres of rye to plant Constraints "has 0 acres to plant in wheat and rye" In math this is y 0 " has to plant at least 7 acres" In math this is y 7 5

46 Try It Constraints Linear programming "he has only $00 to spend and each acre of wheat costs $00 to plant and each acre of rye costs $00 to plant" 00 00y In math this is 00 6

47 Try It Constraints Linear programming "the farmer has to get the planting done in hours and it takes an hour to plant an acre of wheat and hours to plant an acre of rye " y In math this is 7

48 Try It Objective function Linear programming "... the profit is $500 per acre of wheat and $300 per acre of rye" z In math this is y 8

49 Try It Put it together Constraints: y y 00 00y y y Objective function: z y 9

50 Try It Rename to and y to Change + y 7 to - - y -7 and then to z

51 5 Linear programming Try It Write in matri form Maimize Maimize z 0 0 and ,, , lb f b A f z T

52 Try It Find solution that maimizes profit. Display both >> A = [ ; - -; 00 00; ]; >> b = [ ]'; >> f = [ ]'; >> lb = [ 0 0 ]'; >> [ fval] = linprog( -f, A, b, [], [], lb ); >> ' A 00, 00 ans = >> maprofit = -fval 0 7 b, 00 maprofit = 3.000e+003, f and lb z f T 5

53 Try It - blending problem Alloy Miture Optimization (minimize epenses) There are four metals with the following properties: Metal Density %Carbon %Phosphor Price ($/kg) A B C D We want to make an alloy with properties in the following range: Range Density %Carbon %Phosphor Minimum Maimum What miture of metals should we use to minimize the cost of the alloy? 53

54 Try It - blending problem Decision variables is fraction of total alloy that is metal A is fraction of total alloy that is metal B 3 is fraction of total alloy that is metal C is fraction of total alloy that is metal D 5

55 Metal Density %Carbon %Phosphor Price ($/kg) A B C Range Density %Carbon %Phosphor Minimum Maimum Try It - blending problem Density constraints Alloy density must be at least 5950 In math this is Alloy density must be at most 6050 In math this is D

56 Try It - blending problem Carbon constraints Carbon concentration must be at least 0. In math this is Carbon concentration must be at most 0.3 In math this is Metal Density %Carbon %Phosphor Price ($/kg) Range A Density %Carbon %Phosphor B Minimum C Maimum D

57 Metal Density %Carbon %Phosphor Price ($/kg) A B C Range Density %Carbon %Phosphor Minimum Maimum Try It - blending problem Phosphor constraints Phosphor concentration must be at least 0. In math this is Phosphor concentration must be at most 0.3 In math this is D

58 Try It - blending problem Constraints Since only the four metals will make up the alloy, the sum of the fractional amounts must be one: 3 Fractional parts must be non-negative: 0 for i,,3, i (Each part must also be, but that's handled by first equation.) 58

59 Metal Density %Carbon %Phosphor Price ($/kg) A B C D Try It - blending problem Objective function Cost per kg z

60 Try It - blending problem Put it together Constraints: (Convert to ) i , i,,3, Objective function: z

61 6 Linear programming Try It - blending problem Write in matri form Minimize and, b, A, , , EQ T EQ 3 lb f b A f z T,,3, 0, i i

62 Linear programming A f, A Try It - blending problem EQ T, b EQ , , and lb b, >> A = [ ; ; ; ; ; ]; >> b = [ ]'; >> f = [.5.5 ]'; >> Aeq = [ ]; >> beq = ; >> lb = [ ]'; 6

63 Try It - blending problem >> [ fval] = linprog( f, A, b, Aeq, beq, lb ) Optimization terminated. = <- Metal A 0.85 <- Metal B <- Metal C 0.07 <- Metal D fval =.88 <- Profit in $/kg 63

64 MATLAB Linear Programming Questions? 6

65 The End 65

Excel Solver. Table of Contents. Introduction to Excel Solver slides 3-4. Example 1: Diet Problem, Set-Up slides 5-11

Excel Solver. Table of Contents. Introduction to Excel Solver slides 3-4. Example 1: Diet Problem, Set-Up slides 5-11 15.053 Excel Solver 1 Table of Contents Introduction to Excel Solver slides 3- : Diet Problem, Set-Up slides 5-11 : Diet Problem, Dialog Box slides 12-17 Example 2: Food Start-Up Problem slides 18-19 Note

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

Algebra II: Strand 2. Linear Functions; Topic 4. Applications of Linear Programming; Task 2.4.2

Algebra II: Strand 2. Linear Functions; Topic 4. Applications of Linear Programming; Task 2.4.2 1 TASK 2.4.2: LINEAR PROGRAMMING APPLICATIONS Solutions 1. A snack shop sells two kinds of mixed nuts. The standard mixture contains 100 g of cashews and 200 g of peanuts and sells for $1.85. The Cashew

More information

Sections are bigger at the bottom and narrower at the top to show that even within a food group, some foods should be eaten more often than others.

Sections are bigger at the bottom and narrower at the top to show that even within a food group, some foods should be eaten more often than others. Percent of a Number SUGGESTED LEARNING STRATEGIES: Summarize/ Paraphrase/Retell, Think Aloud, Guess and Check The U.S. Department of Agriculture found from much research that two big factors exercising

More information

Basic LP problem formulations

Basic LP problem formulations Basic LP problem formulations Notes for AGEC 622 Bruce McCarl Regents Professor of Agricultural Economics Texas A&M University 1 Basic LP formulations Linear programming formulations are typically composed

More information

Linear and Nonlinear Optimization

Linear and Nonlinear Optimization Linear and Nonlinear Optimization SECOND EDITION Igor Griva Stephen G. Nash Ariela Sofer George Mason University Fairfax, Virginia Society for Industrial and Applied Mathematics Philadelphia Contents Preface

More information

Diet Problem: Healthy Fast food

Diet Problem: Healthy Fast food Diet Problem: Healthy Fast food Svyatoslav Glazyrin, Brian Kang, Sylvia Xu Department of Mathematics, Simon Fraser University, Surrey BC Abstract In this paper we consider the specific diet problem, which

More information

CHOOSE HEALTH: FOOD, FUN, AND FITNESS. Read the Label!

CHOOSE HEALTH: FOOD, FUN, AND FITNESS. Read the Label! POSTER 1-1: REPLACE SWEETENED DRINKS Read the Label! Nutrition Facts 20 oz. cola Serving Size: 1 bottle (591mL) Servings Per Container: 1 Amount Per Serving Calories 240 Calories from Fat 0 % Daily Value

More information

TRACKS Lesson Plan. Caregiver Workshop - Deciphering the Nutrition Facts Label Audience: Caregivers

TRACKS Lesson Plan. Caregiver Workshop - Deciphering the Nutrition Facts Label Audience: Caregivers TRACKS Lesson Plan Caregiver Workshop - Deciphering the Nutrition Facts Label Audience: Caregivers I. Nutrition Education Objectives: Goal 1: Students will comprehend concepts consistent with USDA guidance

More information

The Overconsumption of Sugar

The Overconsumption of Sugar The Overconsumption of Sugar Module 3: Problem, Solution, and Evaluation Essays Figure 1. Added Sugar (Singer, 20013). Prompt: In recent years, the overconsumption of sugar has become a serious issue.

More information

How are you doing? Class 5: Handling Tricky Situations and Stocking the Kitchen Food for Life Eating and Cooking to Beat Diabetes

How are you doing? Class 5: Handling Tricky Situations and Stocking the Kitchen Food for Life Eating and Cooking to Beat Diabetes Class 5: Handling Tricky Situations and Stocking the Kitchen Food for Life Eating and Cooking to Beat Diabetes Please continue to help us help this program: Complete an evaluation. Let s Start Another

More information

Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments

Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments Test date Name Meal Planning for the Family Study Sheet References: Notes in class, lectures, labs, assignments Food for Today - Chapters 3.1, 3.2, 12.1,2,3 World of Food - Chapters 3, 5, 8 1. Know the

More information

ChooseMyPlate Weight Management (Key)

ChooseMyPlate Weight Management (Key) ChooseMyPlate Weight Management (Key) Learn What You Currently Eat and Drink Identifying what you are eating and drinking now will help you see where you can make better choices in the future. Get started

More information

Lesson materials for printing and projecting. School Curriculum. Helping Youth. Eat Real. Classroom Lessons to Transform Youth and Their Communities

Lesson materials for printing and projecting. School Curriculum. Helping Youth. Eat Real. Classroom Lessons to Transform Youth and Their Communities Lesson materials for printing and projecting School Curriculum Helping Youth Eat Real Classroom Lessons to Transform Youth and Their Communities Center for Food & Environment, Program in Nutrition teachers

More information

The Best Potato Chip for Young People: A Feasibility Report

The Best Potato Chip for Young People: A Feasibility Report The Best Potato Chip for Young People: A Feasibility Report Prepared for University of North Texas Students Prepared by Alexander Mulcahey Shahrokh Yousefi-Darani Thomas Daly Michael Hill December 2012

More information

BLOSSOMS - Optimizing Your Diet: What Linear Programming Can Tell You!

BLOSSOMS - Optimizing Your Diet: What Linear Programming Can Tell You! BLOSSOMS - Optimizing Your Diet: What Linear Programming Can Tell You! My name is Aysegul. I'm an operations researcher at Structured Decisions Corporation in Westminster, Massachusetts. I develop mathematical

More information

Rethink Your Drink Core Presentation Teens / Adults ( years)

Rethink Your Drink Core Presentation Teens / Adults ( years) Rethink Your Drink Core Presentation Teens / Adults (13 65+ years) Session Overview Class participants will examine what beverages they are drinking. They will learn how to make healthier beverage choices

More information

Reading Nutrition Labels

Reading Nutrition Labels Reading Nutrition Labels Objectives 1. Students will understand how to locate the serving size, servings per container and nutrients on a nutrition label. 2. Students will understand how to avoid eating

More information

Which could be made worse by the over-consumption of sugar or calories?

Which could be made worse by the over-consumption of sugar or calories? Which could be made worse by the over-consumption of sugar or calories? Added Sugars are sugars that are not found naturally in a product. Sugars are found naturally in fruits (fructose) and fluid milk

More information

Milk 1%, chocolate Milk 2% Amount Per Serving. %Daily Value* Total Fat 8g 12 % Saturated Fat 0g 0 % Saturated Fat 1.5g 8 %

Milk 1%, chocolate Milk 2% Amount Per Serving. %Daily Value* Total Fat 8g 12 % Saturated Fat 0g 0 % Saturated Fat 1.5g 8 % What s on the Label? Milk fat-free Milk 1%, chocolate Milk 2% Milk whole Calories 90 Calories from Fat 0 Calories 170 Calories from Fat 20 Calories 130 Calories from Fat 45 Calories 150 Calories from Fat

More information

Health Education Lesson Plan Teacher: Grade Level: 4

Health Education Lesson Plan Teacher: Grade Level: 4 Health Education Lesson Plan Teacher: Grade Level: 4 Core Idea: Wellness Safety Nutrition X Sexual Health Social Emotional Health Substance Use & Abuse Topic Beverages Unit Title Lesson Title Making Better

More information

Unit 2: Health and Nutrition

Unit 2: Health and Nutrition OBJECTIVES Unit 2: Health and Nutrition Students will create and solve word problems related to health and nutrition. Students will recognize everyday math applications related to nutritional content of

More information

Power House: Youth Experience Session 11

Power House: Youth Experience Session 11 Power House: Youth Experience Session 11 Drinks Session Objectives 1. Participants will engage in 45 minutes of physical activity. 2. Participants will learn the ingredients in soda. 3. Participants will

More information

Commissary Notes. Deciphering Labels and Making Healthy Choices. This is your Personal Shopping Tool. Decipher labels on foods your family loves

Commissary Notes. Deciphering Labels and Making Healthy Choices. This is your Personal Shopping Tool. Decipher labels on foods your family loves Commissary Notes Deciphering Labels and Making Healthy Choices This is your Personal Shopping Tool Make it easier to shop Decipher labels on foods your family loves Incorporate new healthy foods Update

More information

Oregon Nutrition Guidelines in the School Environment

Oregon Nutrition Guidelines in the School Environment I. GENERAL RECOMMENDATIONS Oregon Nutrition Guidelines in the School Environment These recommendations apply, campus wide, during the instructional day. Eliminate: Candy, soda, fried pastry and foods of

More information

City of Minneapolis Healthier Beverage Initiative Talking Points - suggested answers for partners

City of Minneapolis Healthier Beverage Initiative Talking Points - suggested answers for partners 1 City of Minneapolis Healthier Beverage Initiative Talking Points - suggested answers for partners Being prepared for tough questions from employees, visitors, community members, and the media is an important

More information

Fast Food. Figuring Out the Facts

Fast Food. Figuring Out the Facts Fast Food Figuring Out the Facts 1 Project Sponsors USDA project funded through the Supplemental Nutrition Assistance Program (SNAP) School District of Philadelphia Department of Nutrition Sciences, Drexel

More information

Starting Measurements. Food Journal

Starting Measurements. Food Journal Starting Measurements Measurements Before After Notes Chest at nipple height Lower Abs largest circumference Waist at belly button Hips largest circumference Thighs midpoint of thigh Arms midpoint of arm

More information

Calories per oz. Price per oz Corn Wheat

Calories per oz. Price per oz Corn Wheat Donald Wittman Lecture 1 Diet Problem Consider the following problem: Corn costs.6 cents an ounce and wheat costs 1 cent an ounce. Each ounce of corn has 10 units of vitamin A, 5 calories and 2 units of

More information

Semester 1 Final Scientific calculators are allowed, NO GRAPHING CALCULATORS. You must show all your work to receive full credit.

Semester 1 Final Scientific calculators are allowed, NO GRAPHING CALCULATORS. You must show all your work to receive full credit. Algebra 1 Name: Semester 1 Final Scientific calculators are allowed, NO GRAPHING CALCULATORS. You must show all your work to receive full credit. (F.IF.2 DOK 1) (1 point) 1. Evaluate the function when

More information

STUDENT'S BOOKLET. Staying Healthy. Contents. Meeting 4 Student s Booklet. May 3 UCI. 1 Exercising. 2 Sugary drinks. 3 A Balanced Dinner

STUDENT'S BOOKLET. Staying Healthy. Contents. Meeting 4 Student s Booklet. May 3 UCI. 1 Exercising. 2 Sugary drinks. 3 A Balanced Dinner Meeting 4 Student s Booklet Staying Healthy May 3 2017 @ UCI Contents 1 Exercising 2 Sugary drinks STUDENT'S BOOKLET 3 A Balanced Dinner 4 Nutrients UC IRVINE MATH CEO http://www.math.uci.edu/mathceo/

More information

How Many Carbs Should You Eat Per Day If You Have Diabetes

How Many Carbs Should You Eat Per Day If You Have Diabetes How Many Carbs Should You Eat Per Day If You Have Diabetes Watch out for this, as foods with added sugars have fewer nutrients than foods with Men over fifty should be eating 30 grams per day and women

More information

How Many Carbs Should You Eat Per Day To

How Many Carbs Should You Eat Per Day To How Many Carbs Should You Eat Per Day To Gain Weight If you want to add weight, you won't get much sympathy from anybody. type of food, or just eating 1 or 2 large meals a day isn't the way to gain muscle.

More information

Eating Behaviors. Maintaining a Healthy Weight

Eating Behaviors. Maintaining a Healthy Weight CHAPTER 11 Managing Weight and Eating Behaviors LESSON 1 Maintaining a Healthy Weight Before You Read Write down some steps that you can take to manage your weight in a healthful way. BIG Idea Maintaining

More information

Food Portions. Patient Education Section 9 Page 1 Diabetes Care Center. For carbohydrate counting

Food Portions. Patient Education Section 9 Page 1 Diabetes Care Center. For carbohydrate counting Patient Education Section 9 Page 1 For carbohydrate counting This handout answers the following questions: What s the difference between a portion and a serving? How do I know how big my portions are?

More information

EatHealthy. SUBJECTS: Health Science English Language Arts listening, speaking, and writing Math. Healthy

EatHealthy. SUBJECTS: Health Science English Language Arts listening, speaking, and writing Math. Healthy Bee you eat, think about what goes on your plate or in your cup or bowl. steps to build a healthy plate: Make half your plate Switch to skim or 1% milk Make at least half your Vary your protein food choices

More information

Designing a Healthier, Happier Meal Engineering Portfolio. This portfolio belongs to:

Designing a Healthier, Happier Meal Engineering Portfolio. This portfolio belongs to: Designing a Healthier, Happier Meal Engineering Portfolio This portfolio belongs to: Page 1 What Is Obesity? What does the word "obesity" mean? Answer each question in the chart below and create new rows

More information

HEALTHY EATING ON A BUDGET Eat Well (and Save Well)

HEALTHY EATING ON A BUDGET Eat Well (and Save Well) HEALTHY EATING ON A BUDGET Eat Well (and Save Well) First of all. What is healthy eating? A healthy eating plan gives your body the nutrients it needs every day while staying within your daily calorie

More information

NOTE: You must show your work to receive full credit. Simply stating the answer will not suffice.

NOTE: You must show your work to receive full credit. Simply stating the answer will not suffice. MATH 1314 Review #3 Name NOTE: You must show your work to receive full credit. Simply stating the answer will not suffice. Graph the function by making a table of coordinates. 1) f() = 4 6 y 1) 4 2-6 -4-2

More information

Using the New Nutrition Facts Label

Using the New Nutrition Facts Label Using the New Nutrition Facts Label Bulletin Board Created by Alyssa Tripp, SIU Dietetic Intern Resources: 1) Nutrition Facts Label Programs and Materials. U.S. Food & Drug Administration. Retrieved February

More information

Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets

Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets John P. Burkett October 15, 2015 1 Overview For this project, each student should (a) determine her or his nutritional needs,

More information

The Great Food Conundrum: Health vs Sustainability

The Great Food Conundrum: Health vs Sustainability The Great Food Conundrum: Health vs Sustainability Dr Christian Reynolds Knowledge Exchange Research Fellow (N8 AgriFood project) Department of Geography, University of Sheffield @sartorialfoodie Talk

More information

Food consumption patterns for women of child bearing age with different folic acid intakes (FSANZ April 2007)

Food consumption patterns for women of child bearing age with different folic acid intakes (FSANZ April 2007) Food consumption patterns for women of child bearing age with different folic acid intakes (FSANZ April 27) The choice of a food vehicle for fortification with folic acid has been the subject of considerable

More information

Lesson 1.1 Assignment

Lesson 1.1 Assignment Lesson 1.1 Assignment Name Date Show Someone You Care Send Flowers! Introduction to Ratios and Rates 1. Barry s Gym has a mixture of members that include students, adults, and seniors. Barry is thinking

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) A) 5 9 C) 9 4 3) A) 3 B) -3 C) 5 3

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) A) 5 9 C) 9 4 3) A) 3 B) -3 C) 5 3 Math 081 Exam5_Practice_Ch11&7_W2018v02 Dressler - YES CALCULATOR/NO NOTES/NO BOOK/55 MINUTES Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

More information

BIVARIATE DATA ANALYSIS

BIVARIATE DATA ANALYSIS BIVARIATE DATA ANALYSIS Sometimes, statistical studies are done where data is collected on two variables instead of one in order to establish whether there is a relationship between the two variables.

More information

September 21, 18. If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible.

September 21, 18. If adaptations were made or activity was not done, please describe what was changed and why. Please be as specific as possible. Washington State Snap-Ed Curriculum Fidelity for Continuous Improvement Lesson Assessment Tool for Food Smarts Workshop: Parenting Adult 5 week, 60 minutes Week 4 Setting the Stage for Healthy Choices

More information

Supplement Users Favor Vitamins, Minerals

Supplement Users Favor Vitamins, Minerals Success begins with good health. Al Amatuzio President and CEO, AMSOIL INC. DECEMBER 2014 Supplement Users Favor Vitamins, Minerals The Council for Responsible Nutrition in October revealed key findings

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. : 1 C) A) 1: 14 B) 6 : 14 C)3 : 7 D) 14 : 1

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. : 1 C) A) 1: 14 B) 6 : 14 C)3 : 7 D) 14 : 1 3161-Unit-2-Pretest Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Provide an appropriate response. 1) Express 72 : 102 as a ratio whose second

More information

Eating in America. Sooyoung Uhm, RD, LD Student Health Services Jan 2019

Eating in America. Sooyoung Uhm, RD, LD Student Health Services Jan 2019 Eating in America Sooyoung Uhm, RD, LD Student Health Services Jan 2019 American eating habits Standard American diet (SAD): excess consumption of refined carbohydrates, fatty meats and added fats that

More information

Department of Nutrition, University of California, Davis; University of California Agriculture and Natural Resources

Department of Nutrition, University of California, Davis; University of California Agriculture and Natural Resources Labels Food The United States Food and Drug Administration requires most packaged foods and beverages to have a Nutrition Facts label to help consumers make informed choices about the foods they eat. Serving

More information

FLAWLESS TRAINING Your guide to sugar and eczema

FLAWLESS TRAINING Your guide to sugar and eczema FLAWLESS TRAINING Your guide to sugar and eczema FLAWLESS TRAINING: SUGAR AND ECZEMA The USDA reports that the average American consumes a STAGGERING 2.5 pounds (over a kilo) of sugar a week: about 22

More information

TRACKS Lesson Plan. Choosing healthy beverages Rethink Your Drink Grade 5 8 Boys Club

TRACKS Lesson Plan. Choosing healthy beverages Rethink Your Drink Grade 5 8 Boys Club TRACKS Lesson Plan Choosing healthy beverages Rethink Your Drink Grade 5 8 Boys Club I. Nutrition Education Goal & Objective: Goal 1: Students will comprehend concepts consistent with USDA guidance related

More information

Knowing How Much to Eat

Knowing How Much to Eat MINTO PREVENTION & REHABILITATION CENTRE CENTRE DE PREVENTION ET DE READAPTATION MINTO Knowing How Much to Eat About This Kit In previous kits you learned about what to eat. Choose a variety of grains,

More information

HFCC Math Lab NAT 06 Solving Word Problems. Can you solve general word problems requiring multiple steps?

HFCC Math Lab NAT 06 Solving Word Problems. Can you solve general word problems requiring multiple steps? HFCC Math Lab NAT 06 Solving Word Problems Can you solve general word problems requiring multiple steps? Example 1: A student was required to spend about 60 hours during the semester to complete a project

More information

Coach on Call. Thank you for your interest in The Mighty Mediterranean Diet. I hope you find this tip sheet helpful.

Coach on Call. Thank you for your interest in The Mighty Mediterranean Diet. I hope you find this tip sheet helpful. It was great to talk with you. Thank you for your interest in. I hope you find this tip sheet helpful. Please give me a call if you have more questions about this or other topics. As your UPMC Health Plan

More information

UNIT 3, Reading Food Labels Scenario 2 READING FOOD LABELS

UNIT 3, Reading Food Labels Scenario 2 READING FOOD LABELS READING FOOD LABELS Anna's new family has learned a lot about nutrition. Bill and his children now eat differently. Now they eat more healthful foods. Bill eats more than just meat, potatoes, and desserts.

More information

Lesson 1 Carbohydrates, Fats & Proteins pages

Lesson 1 Carbohydrates, Fats & Proteins pages Lesson 1 Carbohydrates, Fats & Proteins pages 190-201 What are the 3 classes of nutrients that supply your body with energy and how does the body obtain the energy from foods? Describe the roles that carbohydrates,

More information

SMOOTHIES GEORGIA 4-H COTTON BOLL AND CONSUMER JUDGING 2016

SMOOTHIES GEORGIA 4-H COTTON BOLL AND CONSUMER JUDGING 2016 SMOOTHIES GEORGIA 4-H COTTON BOLL AND CONSUMER JUDGING 2016 Smoothies have become a popular choice for snacks and meals. While once something that you could only get from your home blender and a few basic

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Math 24 Chapter 24-Study Guide Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Solve the equation. ) -0.333x - 4 = 0.667x A) {-8} B) {-4} C)

More information

Diabetes Numeracy Test

Diabetes Numeracy Test Diabetes Numeracy Test Last Revised: January 19, 2005 (Answers Revised 3/05, format revised 3/07) Time Started: Time Completed: Total Time: The Diabetic Numeracy Test Description The Diabetic Numeracy

More information

2. Tell when and why the Nutrition Facts label was introduced.

2. Tell when and why the Nutrition Facts label was introduced. Welcome to Nutrition Facts Labels class! Choosing and preparing foods which meet the needs of many children and adults can be a mystery at times, but we can take a clue from Nutrition Labels. Use the Participant

More information

Section Processing

Section Processing Section 10000 Processing Table of Contents 10100 Introduction 10200 Participation 10300 Submit Requests in Pounds, Not Cases 10400 Approved Processors 10500 TDA Processing Contracts 10600 Value Pass-Through

More information

Analyzing a Food Nutrition Label for Sodium Intake. Content Analysis Report. Renee Adams Gail Arakaki Ryan Tanaka Michelle Yokota

Analyzing a Food Nutrition Label for Sodium Intake. Content Analysis Report. Renee Adams Gail Arakaki Ryan Tanaka Michelle Yokota Analyzing a Food Nutrition Label for Sodium Intake Content Analysis Report Renee Adams Gail Arakaki Ryan Tanaka Michelle Yokota adamsrk@hawaii.edu gailk@hawaii.edu rktanaka@hawaii.edu yokotam@hawaii.edu

More information

Lesson 1: Getting the Most Nutrition From Your Food. Lesson Highlights. Getting Started: Objective

Lesson 1: Getting the Most Nutrition From Your Food. Lesson Highlights. Getting Started: Objective Lesson 1: Getting the Most Nutrition From Your Food Lesson Highlights Objective Students will: Review the content of MyPyramid for Kids, identifying food groups and important nutrition messages relating

More information

Step Up and Celebrate

Step Up and Celebrate Step Up and Celebrate Physical Activity Physical Activity Healthy Eating Goals Met Rewards Goals Met 1. 1. Handout 12-1 Healthy Eating Rewards 2. 2. 3. 3. 4. 4. 5. 5. 6. 6. Choose an appropriate reward

More information

VIDEO WORKSHEET. Review: # Name: Hour: After viewing each segment, answer the following questions. Making Family Meals Happen

VIDEO WORKSHEET. Review: # Name: Hour: After viewing each segment, answer the following questions. Making Family Meals Happen #300008 Name: Hour: VIDEO WORKSHEET Review: After viewing each segment, answer the following questions. Making Family Meals Happen 1. What is one of the most important keys to feeding well? 2. Children

More information

Choosing the Right Corn Hybrid for Silage 1. William P. Weiss

Choosing the Right Corn Hybrid for Silage 1. William P. Weiss 1. Take Home Message Choosing the Right Corn Hybrid for Silage 1 William P. Weiss Department of Animal Sciences Ohio Agricultural Research and Development Center The Ohio State University, Wooster, OH

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Evaluate the expression for the given value or values. ) 42 + y for y = 43 A) 76 B) 58 C) 85 D) 67

More information

Taking Care of Your Kidneys

Taking Care of Your Kidneys Taking Care of Your Kidneys Roseville & Sacramento Medical Centers Health Education Department Nutrition Services Agenda Slide The functions of the kidneys Explaining chronic kidney disease Protecting

More information

The 12- Question Carb Quiz

The 12- Question Carb Quiz The 12- Question Carb Quiz Although it's like trying to remember what the world was like back when everyone had to dial the telephone, there really was a time when the average Joe didn't know exactly what

More information

Fat Replacers Leader's Guide

Fat Replacers Leader's Guide Fat Replacers Leader's Guide Note: This Leader's Guide is a comprehensive lesson plan to be utilized with HE 3-208, Fat Replacers. Pick and choose and revise what you can use in presenting your lesson.

More information

ice cream pint halo top pint vanilla bean vanilla bean Chocolate Halo Chocolate Ice Cream Pint Top Pint

ice cream pint halo top pint vanilla bean vanilla bean Chocolate Halo Chocolate Ice Cream Pint Top Pint ice cream vanilla bean ice cream pint Calories: 945 Fat: 59.5 Carbs: 84 Sugar: 70 Protein: 14 Calories: 240 Fat: 8 Carbs: 36 Sugar: 16 Protein: 24 vanilla bean halo top pint Chocolate Ice Cream Pint Calories:

More information

05. Conversion Factors tutorial.doc. Introduction

05. Conversion Factors tutorial.doc. Introduction Introduction In this tutorial you will learn to use conversion factors to solve a variety of problems that arise in chemistry. Roughly 90 of all the mathematics done in beginning chemistry involves using

More information

Unit 5L.4: Food. Know that humans require food as an energy source. Know that a balanced diet must contain proteins, fats,

Unit 5L.4: Food. Know that humans require food as an energy source. Know that a balanced diet must contain proteins, fats, Unit 5L.4: as an energy source Balanced diet Requirements for different lifestyles Science skills: Observing Classifying By the end of this unit you should: Know that humans require food as an energy source.

More information

Arizona Western College Prealgebra Final Exam Review. Name Class Time. Show your work for full credit.

Arizona Western College Prealgebra Final Exam Review. Name Class Time. Show your work for full credit. Arizona Western College Prealgebra Final Exam Review Name Class Time Show your work for full credit. Write in expanded notation. 1) 2958 1) Provide an appropriate response. 2) The total population of a

More information

T een. Lesson Plan. Concept Enable pre-teenagers and teenagers to identify low fat dairy products and understand the benefits of consuming them.

T een. Lesson Plan. Concept Enable pre-teenagers and teenagers to identify low fat dairy products and understand the benefits of consuming them. Lesson Plan Cathy Reed MS, RD, LD/N MoOove to Low Fat Dairy Erin Sharp-Miller Kristen Janssen-Rezac FL DOE Dietetic Interns Florida Department of Education Concept Enable pre-teenagers and teenagers to

More information

CHILD AND ADULT MEALS

CHILD AND ADULT MEALS UPDATED CHILD AND ADULT CARE FOOD PROGRAM MEAL PATTERNS: CHILD AND ADULT MEALS USDA recently revised the CACFP meal patterns to ensure children and adults have access to healthy, balanced meals throughout

More information

Lesson Five: Rules to Live By

Lesson Five: Rules to Live By Small Steps to Health and Wealth Lesson Plan Learning Objectives Participants will: Understand the need for moderation in consumption related to food and spending. Learn about balancing consumption of

More information

TRACKS Lesson Plan. Choosing Healthy Beverages Rethink Your Drink Grade: 9-12

TRACKS Lesson Plan. Choosing Healthy Beverages Rethink Your Drink Grade: 9-12 Choosing Healthy Beverages Rethink Your Drink Grade: 9-12 TRACKS Lesson Plan I. Nutrition Education Goal & Objective: Goal 1: Students will comprehend concepts consistent with USDA guidance related to

More information

Run Yourself Skinny: Lose Weight Fast Without Dieting By Michael Thomas READ ONLINE

Run Yourself Skinny: Lose Weight Fast Without Dieting By Michael Thomas READ ONLINE Run Yourself Skinny: Lose Weight Fast Without Dieting By Michael Thomas READ ONLINE Today, I'm going to share 10 easy but effective ways to hel wants to lose weight * * realises I need to If you want to

More information

Contemporary Issues in Foods and Nutrition FCS 321

Contemporary Issues in Foods and Nutrition FCS 321 Contemporary Issues in Foods and Nutrition FCS 321 MEAL PLAN PROJECT REVIEW Must include a MENU and MEAL PLAN What is the difference? Drinks/beverages? Coffee, tea, juices, milk, etc Don t need to include

More information

MSU Extension Publication Archive. Scroll down to view the publication.

MSU Extension Publication Archive. Scroll down to view the publication. MSU Extension Publication Archive Archive copy of publication, do not use for current recommendations. Up-to-date information about many topics can be obtained from your local Extension office. Food for

More information

1. Dry roasted unsalted or raw almonds, walnuts, pine nuts or Brazil nuts. (optional)

1. Dry roasted unsalted or raw almonds, walnuts, pine nuts or Brazil nuts. (optional) Congratulations on purchasing the Deep Cleansing and Fat Burning System. The following pages will be your schedule to follow for the 30 days of deep cleansing. Each page will guide you through each day.

More information

EATING HEALTHY ON A BUDGET

EATING HEALTHY ON A BUDGET EATING HEALTHY ON A BUDGET WSR Nutrition & Wellness Megan Kennedy Nutrition & Wellness Consultant Brown rice $0.18 per ¼ cup serving A 1 lb. bag costs about $1.50 and contains 10 servings 100% whole wheat

More information

Multiplication and Division of Whole Numbers: Division of Whole Numbers

Multiplication and Division of Whole Numbers: Division of Whole Numbers Connexions module: m34865 1 Multiplication and Division of Whole Numbers: Division of Whole Numbers Wade Ellis Denny Burzynski This work is produced by The Connexions Project and licensed under the Creative

More information

You probably don t spend a lot of time here, but if you do, you are reacting to the most basic needs a human has survival and protection.

You probably don t spend a lot of time here, but if you do, you are reacting to the most basic needs a human has survival and protection. Emotional Eating Food Diary An emotional eating food diary will take some work on your part. You can dismiss it because you don t feel like doing it or you don t think it will help. However, if you choose

More information

Nutrition Facts. BEK Item # Product Last Saved Date:31 March 2015 MARG NTF PRT 30/1# Product Specifications: Code

Nutrition Facts. BEK Item # Product Last Saved Date:31 March 2015 MARG NTF PRT 30/1# Product Specifications: Code MARG NTF PRT 30/1# Margarine NTF Ref Prints 30/1# BEK Item # 779256 Product Last Saved Date:31 March 2015 Nutrition Facts Serving Size: 14.00 Servings Per Container: 960 Amount Per Serving Calories: 100.00

More information

5.01 and 5.02 Page 1 of 8

5.01 and 5.02 Page 1 of 8 TEST NAME: 5.01 and 5.02 TEST ID: 1413556 GRADE: 10 - Tenth Grade - 12 - Twelfth Grade SUBJECT: Vocational Home Economics TEST CATEGORY: School Assessment 5.01 and 5.02 Page 1 of 8 Student: Class: Date:

More information

Chapter 38: Healthy and Safe Schools

Chapter 38: Healthy and Safe Schools Chapter 38: Healthy and Safe Schools Rule 38.11 Nutrition Standards. 1. The Mississippi Department of Education recognizes that: a. A crucial relationship exists between nutrition and health and nutrition

More information

The key to a healthy balanced diet is eating the right amount of food for how active you are and eating a range of foods including:

The key to a healthy balanced diet is eating the right amount of food for how active you are and eating a range of foods including: FACTSHEET No. 22 BREAD AS PART OF A HEALTHY DIET Background There is increasingly persuasive evidence that our diets have a significant effect on our long term health. Not only does being over or underweight

More information

Maryland SNAP-Ed: Producing Change. Talking Points FSNE Impact Data

Maryland SNAP-Ed: Producing Change. Talking Points FSNE Impact Data Maryland SNAP-Ed: Producing Change Talking Points FSNE Impact Data Updated April 2018 Maryland SNAP-Ed Produces Change: FSNE Impact Data Talking Points The University of Maryland Extension Food Supplement

More information

Lesson #5: Finding the Energy

Lesson #5: Finding the Energy Lesson #5: Finding the Energy Chapter Five Although Cristina has introduced her family to ways to eat healthier, she is still confused about one thing. The doctor arranged for her grandmother to talk to

More information

Digestion and Excretion

Digestion and Excretion Digestion and Excretion Nutrition What do you think? Read the two statements below and decide whether you agree or disagree with them. Place an A in the Before column if you agree with the statement or

More information

Target Section 2 Skill WS - Linear Programming

Target Section 2 Skill WS - Linear Programming Intermediate Algebra V Ab0epK GKVuPt`aU wsiorfdtqwhaprgel MLnLECl.B U EArlWll cruiyglhdtwsk trnecsxexrovpendh. Target. - Section Skill WS - Linear Programming Name The variables have been defined, the

More information

Hockey Nutrition Tips

Hockey Nutrition Tips Hockey Nutrition Tips 6 Classes of Nutrients Essential for Top Performance 1. Carbohydrates 2. Fat 3. Protein 4. Vitamins 5. Minerals 6. Water Carbohydrates: are a source of energy that can be either simple

More information

12/7/2016. Hard Cider in the North Central Region: Industry Survey Findings and Opportunities for Rural Development. About the Survey.

12/7/2016. Hard Cider in the North Central Region: Industry Survey Findings and Opportunities for Rural Development. About the Survey. Hard Cider in the North Central Region: Industry Survey Findings and Opportunities for Rural Development Background US Cider Industry Sales Volume* Hard cider is a rapidly growing industry nationwide Cider

More information

First 2 Weeks After Gastric Bypass Surgery What you may eat and tips to help you recover

First 2 Weeks After Gastric Bypass Surgery What you may eat and tips to help you recover UW MEDICINE PATIENT EDUCATION First 2 Weeks After Gastric Bypass Surgery What you may eat and tips to help you recover This handout offers guidelines to help you: Choose the right foods right after surgery

More information

INTRODUCTION EL CIVICS NUTRITION UNIT Intermediate Level

INTRODUCTION EL CIVICS NUTRITION UNIT Intermediate Level INTRODUCTION EL CIVICS NUTRITION UNIT Intermediate Level This guide will take you through the Nutrition 46.6 Objective: Access resources for nutrition and information related to the purchase and preparation

More information

New Sports Times. Now Yours Sports Time

New Sports Times. Now Yours Sports Time New Sports Times Now Yours Sports Time A daily active life Do s and don ts In a daily active life you should do some sports at least for 2-4 hours a day. You should often take brakes in trainings and hydrated.

More information