1.4 Super Procedures and Sub Procedures

Size: px
Start display at page:

Download "1.4 Super Procedures and Sub Procedures"

Transcription

1 1.4 Super Procedures and Sub Procedures Here is a new problem: Write a procedure to draw a equilateral triangle of side 40. Your procedure should look something like this: To TRIANGLE REPEAT 3[ FD 40 RT 120] Type: POTS POTS - stands for Print Out Titles. This list all the procedures in the workspace. This stands for Print Out Titles. It shows you what procedures you have defined in the workspace. You should have Square and Triangle defined. Now we want to define a new procedure called house. The output will look like the following: Notice that this procedure is made up of triangle and square. Therefore we are going to define a Superprocedure House with Subprocedures: Square and Triangle. This might be a first try: TO HOUSE SQUARE TRIANGLE

2 Draft - T. Giambrone MAT 306- September 12, Page 2 But there is a problem because the output looks like this: So we need to put some glue moves in to glue the two procedures together. Try to edit house to make it successful. TO HOUSE SQUARE FD 40 RT 30 TRIANGLE NOTE : I put the glue moves all on the same line to keep them together. This will make it easier to debug a procedure in the future. You can put as many commands on a single line as long as they are separated by a space. I also have the glue outside square or triangle procedure so I can still use these procedures in other projects. Problem Use house and PU &PD to define a new procedure Neighborhood that looks something like the following: Don't be surprised if it takes several tries. Here is one that works: TO NEIGHBORHOOD PU LT 90 FD 120 RT 90 PD REPEAT 4[ HOUSE PU LT 30 BK 40 RT 90 FD 60 LT 90 PD ]

3 Draft - T. Giambrone MAT 306- September 12, Page Structured Programming Now we are ready for a big project. We will write a procedure to do the following: On the surface it looks a bit intimidating. This is were structure programming and structured problem solving come together. Lets look at the problem this way: To Sail To Sail To Rudder To Hull Now the problem is to write three procedures and glue them together.

4 Draft - T. Giambrone MAT 306- September 12, Page 4 The picture drawn on graph paper will help you get started. Consider each of the grids 10 turtle steps. TO HULL LT 90 FD 160 RT 45 FD 28 RT 135 FD 180 RT 90 FD 20 LT 180 NOTE: That I turned the turtle is in the same place it started and facing in the original position. This will help me keep track of where the turtle is when I put these procedures together. Now Hull is complete. Resize your turtle window so the hull fits on the screen without wrapping. We will see later how to do this from within the program. TO SAIL FD 100 RT 150 FD 80 RT 120 FD 70 RT 120 FD 60 LT 30 BK 83

5 Draft - T. Giambrone MAT 306- September 12, Page 5 NOTE: I returned the turtle to its original position and original orientation. This will make glueing the procedures together easier. Now we need to RUDDER TO RUDDER REPEAT 2 [FD 5 RT 90 FD 30 RT 90] FD 5 RT 90 FD 30 REPEAT 2 [FD 5 RT 90 FD 30 RT 90] RT 90 FD 30 LT 180 REPEAT 2 [FD 5 RT 90 FD 30 RT 90] FD 25 LT 90 FD 30 RT 90 Now TO BOAT TO BOAT HULL PU FD 20 LT 90 FD 140 RT 90 PD SAIL PU RT 90 FD 110 LT 90 PD SAIL PU RT 90 FD 10 LT 90 FD 5 PD RUDDER PU BK 25 RT 90 FD 20 LT 90 PD In general when you write a subprocedure, have the turtle return to the begining point with the begining orientation. Now it is your turn. Construct a procedure to draw the following castle.

6 Draft - T. Giambrone MAT 306- September 12, Page 6 The structure of your castle should look something like this: Castle Tower Frame Door Rectangle Triangle Lookout Square 1.6 VARIABLES Let's return to our square procedure: TO SQUARE REPEAT 4[ FD 40 RT 90] If we want to change this procedure to draw a square of side 100, we could do so by just changing the 40 to 100. In fact, to vary the side of the square we need only to change the input for the FD command. Here is how we do it.

7 Draft - T. Giambrone MAT 306- September 12, Page 7 General form for a variable : (variable name) The (:) means "The contents of". A variable in LOGO can be a number, a word or a list of words or numbers. Lets return to square. To make it variable we will type TO VSQUARE :SIDE REPEAT 4[ FD :SIDE RT 90] Now type VSQUARE <RETURN> You got an error message that said: "VSQUARE needs more inputs" This is because it is not expecting you to accompany the procedure with a number. Try typing VSQUARE 60 <RETURN> Now try using your VSQUARE procedure to draw the following: Problem Write procedures for VTRIANGLE, and VHOUSE You can also use an arithmetic expression for and input. Try typing VSQUARE 6*7, LOGO will compute the expression and do a square of Using several variables. You can have as many inputs as you what. Suppose you want to write a variable procedure to draw a rectangle. This procedure will need two inputs: TO VRECTANGLE :LENGTH :WIDTH

8 Draft - T. Giambrone MAT 306- September 12, Page 8 REPEAT 2[ FD :LENGTH RT 90 FD :WIDTH RT 90] Now we type: VRECTANGLE The numbers must be on the same line and separated by a space. Problem: Change your Castle procedure to draw different size castles 1.8 TURTLE TRIP THEOREM. You have written procedures for triangle and square. The procedures have looked something like the following: REPEAT 3[ FD 40 RT 120] REPEAT 4 [ FD 40 RT 90 ] Notice that in these procedure the number in front of the repeat bracket tells us the number of sides for each procedure and the number following the RT is the turn for the shape. Let s explore the turns for any regular polygon by using the following procedure: TO POLY :SIDES :TURN REPEAT :SIDES [ FD 40 RT :TURN] -Now type : POLY CG POLY 4 90 CG You got the triangle and the square. Let s explore with POLY by filling out the following chart: Number of sides Angle of the turn

9 Draft - T. Giambrone MAT 306- September 12, Page Some of these will be easier to find than others. Try to look at the table and find a pattern to help you out. This is called the turtle trip theorem. In general, if the turtle takes a trip and returns facing the same direction the turtle has gone 360 degrees or a multiple of 360 degrees. This makes the standard theorem that the sum of the exterior angles of a polygon equals 360 much easier to see. List push the mathematics a little further.. Consider the following hexagon: The extra lines are shown to indicate the exterior angles. What are the angles? Can you tell what the interior angle should be? Why? The exterior angle is 60 degrees and the interior angle is or 120 degrees because the two angles form a straight line. Now here is a new problem.

10 Draft - T. Giambrone MAT 306- September 12, Page 10 Problem 1.4 What is the central angle for this hexagon? Remember: the sum of the angles of a triangle is 180 degrees. Can you generalize these three ideas for any polygon?

Turtle 102 Square Spiral

Turtle 102 Square Spiral Turtle 101 Square See if you can make a bigger square. Change each angle to 45 degrees. What do you get? Can you add to the program to make it a complete shape? Turtle 102 Square Spiral Turtle Blocks Turtle

More information

Parking Lot HW? Joke of the Day: What do you call a leg that is perpendicular to a foot? Goals:

Parking Lot HW? Joke of the Day: What do you call a leg that is perpendicular to a foot? Goals: Parking Lot Joke of the Day: HW? What do you call a leg that is perpendicular to a foot? a right ankle Goals: Agenda 1 19 hw? Course Recommendations Simplify Radicals skill practice L8 2 Special Right

More information

Unit 7. Math Problem 1. This segment will go through the endpoint of the original line segment, perpendicular to the line segment.

Unit 7. Math Problem 1. This segment will go through the endpoint of the original line segment, perpendicular to the line segment. Math 1007 Unit 7 1 Construct a square with sides equal to r. 1: Extend the segment and draw a circle centered at one of the endpoints of the segment 2: Draw two larger congruent circles centered where

More information

Lesson 6.1 Assignment

Lesson 6.1 Assignment Lesson 6.1 Assignment Name Date Soon You Will Determine the Right Triangle Connection The Pythagorean Theorem 1. Lamar goes shopping for a new flat-panel television. A television is usually described by

More information

Lesson 3: Using the Pythagorean Theorem. The Pythagorean Theorem only applies to triangles. The Pythagorean Theorem + = Example 1

Lesson 3: Using the Pythagorean Theorem. The Pythagorean Theorem only applies to triangles. The Pythagorean Theorem + = Example 1 Lesson 3: Using the Pythagorean Theorem The Pythagorean Theorem only applies to triangles. The Pythagorean Theorem + = Example 1 A sailboat leaves dock and travels 6 mi due east. Then it turns 90 degrees

More information

Unit 4. Triangle Relationships. Oct 3 8:20 AM. Oct 3 8:21 AM. Oct 3 8:26 AM. Oct 3 8:28 AM. Oct 3 8:27 AM. Oct 3 8:27 AM

Unit 4. Triangle Relationships. Oct 3 8:20 AM. Oct 3 8:21 AM. Oct 3 8:26 AM. Oct 3 8:28 AM. Oct 3 8:27 AM. Oct 3 8:27 AM Unit 4 Triangle Relationships 4.1 -- Classifying Triangles triangle -a figure formed by three segments joining three noncollinear points Classification of triangles: by sides by angles Oct 3 8:20 AM Oct

More information

Chapter 10. Right Triangles

Chapter 10. Right Triangles Chapter 10 Right Triangles If we looked at enough right triangles and experimented a little, we might eventually begin to notice some relationships developing. For instance, if I were to construct squares

More information

Vectors in the City Learning Task

Vectors in the City Learning Task Vectors in the City Learning Task Amy is spending some time in a city that is laid out in square blocks. The blocks make it very easy to get around so most directions are given in terms of the number of

More information

Name: Date: Period: Score: Rotational Symmetry

Name: Date: Period: Score: Rotational Symmetry Rotational Symmetry Symmetry: Symmetry is the property of a shape that allows it to be carried onto itself either by by reflection, or rotation. The second kind of symmetry is called rotational symmetry.

More information

Week 8, Lesson 1 1. Warm up 2. ICA Scavanger Hunt 3. Notes Arithmetic Series

Week 8, Lesson 1 1. Warm up 2. ICA Scavanger Hunt 3. Notes Arithmetic Series CAN WE ADD AN ARITHMETIC SEQUENCE? Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Week 8, Lesson 1 1. Warm up 2. ICA

More information

CK-12 Geometry: Special Right Triangles

CK-12 Geometry: Special Right Triangles CK-12 Geometry: Special Right Triangles Learning Objectives Identify and use the ratios involved with isosceles right triangles. Identify and use the ratios involved with 30-60-90 triangles. Review Queue

More information

Edexcel GCSE. Mathematics A 1387 Paper 5523/03. November Mark Scheme. Mathematics A 1387

Edexcel GCSE. Mathematics A 1387 Paper 5523/03. November Mark Scheme. Mathematics A 1387 Edexcel GCSE Mathematics A 187 Paper 552/0 November 2007 Mark Scheme Edexcel GCSE Mathematics A 187 NOTES ON MARKING PRINCIPLES 1 Types of mark M marks: method marks A marks: accuracy marks B marks: unconditional

More information

THE 2018 ROSENTHAL PRIZE for Innovation in Math Teaching. Geometry Project: DARTBOARD

THE 2018 ROSENTHAL PRIZE for Innovation in Math Teaching. Geometry Project: DARTBOARD THE 2018 ROSENTHAL PRIZE for Innovation in Math Teaching Geometry Project: DARTBOARD Geometric Probability Theoretical Probability and Experimental Probability Elizabeth Masslich Geometry grades 6-12 Table

More information

Riverboat Simulator Activity

Riverboat Simulator Activity Riverboat Simulator Activity Purpose: The purpose of this activity is to analyze the relationship between the two vector components of motion for a river boat as it travels across a river in the presence

More information

Mathematics Spiral Review Quarter 2.1 Grade 5

Mathematics Spiral Review Quarter 2.1 Grade 5 Mathematics Spiral Review Quarter 2.1 Basic Computation (5.NBT.7) Find the sum: 47.8 + 6.23 = Place Value (4.MBT.2) Compare the values using : a) 12 thousands 6 ten thousands b) 24 hundreds 3

More information

Geometry: Pythagoras theorem

Geometry: Pythagoras theorem Geometry: Pythagoras theorem. Pythagoras theorem HOMWORK In each of the following triangles, find the hypotenuse, rounding off to a suitable degree of accuracy. a b c 5. cm cm. cm cm 3 cm 3.7 cm d e f.

More information

Lesson 21: Special Relationships within Right Triangles Dividing into Two Similar Sub-Triangles

Lesson 21: Special Relationships within Right Triangles Dividing into Two Similar Sub-Triangles : Special Relationships within Right Triangles Dividing into Two Similar Sub-Triangles Learning Targets I can state that the altitude of a right triangle from the vertex of the right angle to the hypotenuse

More information

Parking Lot HW? Joke of the Day: What do you get when you combine a flat, infinite geometric figure with a beef patty?

Parking Lot HW? Joke of the Day: What do you get when you combine a flat, infinite geometric figure with a beef patty? Parking Lot HW? Joke of the Day: What do you get when you combine a flat, infinite geometric figure with a beef patty? a plane burger Agenda 1 23 hw? Finish Special Right Triangles L8 3 Trig Ratios HW:

More information

The Bruins I.C.E. School

The Bruins I.C.E. School The Bruins I.C.E. School Lesson 1: Area and Volume of a Cylinder Lesson 2: Using and Applying the Pythagorean Theorem Lesson 3: Investigating patterns of association in bivariate data Lesson 4: Investigating

More information

Sail Through Engineering Post-Workshop Activity

Sail Through Engineering Post-Workshop Activity Sail Through Engineering Post-Workshop Activity Thank you for participating in the Sail Through Engineering Workshop. We hope you and your students enjoyed your time at the MIT Museum. This post-workshop

More information

Discovering Special Triangles Learning Task

Discovering Special Triangles Learning Task The image cannot be displayed. Your computer may not have enough memory to open the image, or the image may have been corrupted. Restart your computer, and then open the file again. If the red x still

More information

Skills Practice Skills Practice for Lesson 3.1

Skills Practice Skills Practice for Lesson 3.1 Skills Practice Skills Practice for Lesson.1 Name Date Get Radical or (Be) 2! Radicals and the Pythagorean Theorem Vocabulary Write the term that best completes each statement. 1. An expression that includes

More information

IDEAS FOR MATHS TRAILS

IDEAS FOR MATHS TRAILS IDEAS FOR MATHS TRAILS These ideas were put together by the teachers attending maths courses in the Autumn term. Some are specific to the venue of the courses, or to the teachers own schools, but can almost

More information

1 8 Practice Perimeter Circumference And Area Answers Form G

1 8 Practice Perimeter Circumference And Area Answers Form G 1 8 Practice Perimeter Circumference And Area Answers Form G We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

Topic Check In b and 10.01c Units and measurement N

Topic Check In b and 10.01c Units and measurement N Topic Check In - 10.01b and 10.01c Units and measurement 1. A three figure bearing of 090 is the same as which direction on a compass? W E 2. A compass bearing of SW is the same as which three-figure bearing?

More information

Put in simplest radical form. (No decimals)

Put in simplest radical form. (No decimals) Put in simplest radical form. (No decimals) 1. 2. 3. 4. 5. 6. 5 7. 4 8. 6 9. 5 10. 9 11. -3 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 3 28. 1 Geometry Chapter 8 - Right Triangles

More information

Simplifying Radical Expressions and the Distance Formula

Simplifying Radical Expressions and the Distance Formula 1 RD. Simplifying Radical Expressions and the Distance Formula In the previous section, we simplified some radical expressions by replacing radical signs with rational exponents, applying the rules of

More information

Math 154 Chapter 7.7: Applications of Quadratic Equations Objectives:

Math 154 Chapter 7.7: Applications of Quadratic Equations Objectives: Math 154 Chapter 7.7: Applications of Quadratic Equations Objectives: Products of numbers Areas of rectangles Falling objects Cost/Profit formulas Products of Numbers Finding legs of right triangles Finding

More information

Measuring Length. Goals. You will be able to

Measuring Length. Goals. You will be able to Measuring Length Goals You will be able to choose, use, and rename metric length measurements measure perimeters of polygons solve problems using diagrams and graphs Running in a Triathlon Racing Snails

More information

CH 34 MORE PYTHAGOREAN THEOREM AND RECTANGLES

CH 34 MORE PYTHAGOREAN THEOREM AND RECTANGLES CH 34 MORE PYTHAGOREAN THEOREM AND RECTANGLES 317 Recalling The Pythagorean Theorem a 2 + b 2 = c 2 a c 90 b The 90 angle is called the right angle of the right triangle. The other two angles of the right

More information

Length, Perimeter & Area

Length, Perimeter & Area St Andrew s Academy Mathematics Department S BLOCK Length, Perimeter & Area Name : Score : Line Segment - Ruler Centimeter: S1 Measure the length of each line segment. 1) cm ) cm 3) cm 4) cm 5) cm Draw

More information

BASICS OF TRIGONOMETRY

BASICS OF TRIGONOMETRY Mathematics Revision Guides Basics of Trigonometry Page 1 of 9 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Foundation Tier BASICS OF TRIGONOMETRY Version: 1. Date: 09-10-015 Mathematics Revision

More information

Riverboat Simulator Activity Sheet

Riverboat Simulator Activity Sheet Riverboat Simulator Activity Sheet Purpose: The purpose of this activity is to analyze the relationship between the two vector components of motion for a river boat as it travels across a river in the

More information

TEST NAME: G.7 TEST ID: GRADE:08 Eighth Grade SUBJECT: Mathematics TEST CATEGORY:School Assessment

TEST NAME: G.7 TEST ID: GRADE:08 Eighth Grade SUBJECT: Mathematics TEST CATEGORY:School Assessment TEST NAME: G.7 TEST ID:877132 GRADE:08 Eighth Grade SUBJECT: Mathematics TEST CATEGORY:School Assessment G.7 Page 1 of 89 Student: Class: Date: 1. Mr. Lopez has a rectangular classroom that measures 36

More information

Areas of Parallelograms and Triangles 7-1

Areas of Parallelograms and Triangles 7-1 Areas of Parallelograms and Triangles 7-1 Parallelogram A parallelogram is a quadrilateral where the opposite sides are congruent and parallel. A rectangle is a type of parallelogram, but we often see

More information

4-3 Angle Relationships in Triangles

4-3 Angle Relationships in Triangles Warm Up 1. Find the measure of exterior DBA of BCD, if m DBC = 30, m C= 70, and m D = 80. 150 2. What is the complement of an angle with measure 17? 73 3. How many lines can be drawn through N parallel

More information

COMPACTED MATHEMATICS CHAPTER 10 AREA AND PERIMETER TOPICS COVERED:

COMPACTED MATHEMATICS CHAPTER 10 AREA AND PERIMETER TOPICS COVERED: COMPACTED MATHEMATICS CHAPTER 10 AREA AND PERIMETER TOPICS COVERED: Perimeter of polygons Area of rectangles and squares Area of parallelograms Area of triangles Area of trapezoids Activity 10-1 Perimeter

More information

5-8 Applying Special Right Triangles

5-8 Applying Special Right Triangles 5-8 Applying Special Right Triangles Warm Up Lesson Presentation Lesson Quiz Geometry Warm Up For Exercises 1 and 2, find the value of x. Give your answer in simplest radical form. 1. 2. Simplify each

More information

Geometry Chapter 7 Review Right Triangles Use this review to help prepare for the Chapter 7 Test. The answers are attached at the end of the document.

Geometry Chapter 7 Review Right Triangles Use this review to help prepare for the Chapter 7 Test. The answers are attached at the end of the document. Use this review to help prepare for the hapter 7 Test. The answers are attached at the end of the document. 1. Solve for a and b. 2. Find a, b, and h. 26 24 a h b 10 b a 4 12. The tangent of is. 4. A is

More information

1. Five more than three times a number x. 3. Seventeen percent of a number x.

1. Five more than three times a number x. 3. Seventeen percent of a number x. Pre-Calculus: 1.7.1 Mastery Practice Name: Date Period Write a mathematical expression for the quantity described verbally: 1. Five more than three times a number x. 3. Seventeen percent of a number x.

More information

Grade 7 & 8 Math Circles Pair-O -Dice: The Game April 2/3, 2013

Grade 7 & 8 Math Circles Pair-O -Dice: The Game April 2/3, 2013 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Instructions Set Up Grade 7 & 8 Math Circles Pair-O -Dice: The Game April 2/3, 2013 Get into a group of 3 to 5 players. Each group needs 2 different dice

More information

Parallel Lines Cut by a Transversal

Parallel Lines Cut by a Transversal Name Date Class 11-1 Parallel Lines Cut by a Transversal Parallel Lines Parallel Lines Cut by a Transversal A line that crosses parallel lines is a transversal. Parallel lines never meet. Eight angles

More information

The Pythagorean Theorem Diamond in the Rough

The Pythagorean Theorem Diamond in the Rough The Pythagorean Theorem SUGGESTED LEARNING STRATEGIES: Shared Reading, Activating Prior Knowledge, Visualization, Interactive Word Wall Cameron is a catcher trying out for the school baseball team. He

More information

1 8 Practice Perimeter Circumference And Area Form K Answers

1 8 Practice Perimeter Circumference And Area Form K Answers 1 8 Practice Perimeter Circumference And Area Form K Answers We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

General Certificate of Secondary Education Foundation Tier

General Certificate of Secondary Education Foundation Tier Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Pages 3 Mark General Certificate of Secondary Education Foundation Tier 4 5 6 7 Mathematics (Linear) B Paper 2

More information

Practice A. Congruent Figures. Are there any congruent figures in each picture? If there are, describe them

Practice A. Congruent Figures. Are there any congruent figures in each picture? If there are, describe them Name Date Class Practice A Are there any congruent figures in each picture? If there are, describe them. Determine the unknown measure in each set of congruent polygons. 7. 8. 9. 10. Name Date Class Practice

More information

EQ: GPE.7 How do I find the perimeter and area of polygons?

EQ: GPE.7 How do I find the perimeter and area of polygons? EQ: GPE.7 How do I find the perimeter and area of polygons? Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Week 14,

More information

About Finish Line PA Core Math 5

About Finish Line PA Core Math 5 Table of COntents About Finish Line PA Core Math 5 Unit 1: Big Ideas from Grade 4 7 Lesson 1 CC.2.1.4.B.2 Multiplying and Dividing Whole Numbers [connects to CC.2.1.5.B.2] 8 Lesson 2 CC.2.1.4.C.3 Understanding

More information

Applications of Mathematics

Applications of Mathematics Write your name here Surname Other names Pearson Edexcel GCSE Centre Number Candidate Number Applications of Mathematics Unit 1: Applications 1 For Approved Pilot Centres ONLY Foundation Tier Wednesday

More information

A life not lived for others is not a life worth living. Albert Einstein

A life not lived for others is not a life worth living. Albert Einstein life not lived for others is not a life worth living. lbert Einstein Sides adjacent to the right angle are legs Side opposite (across) from the right angle is the hypotenuse. Hypotenuse Leg cute ngles

More information

Besides the reported poor performance of the candidates there were a number of mistakes observed on the assessment tool itself outlined as follows:

Besides the reported poor performance of the candidates there were a number of mistakes observed on the assessment tool itself outlined as follows: MATHEMATICS (309/1) REPORT The 2013 Mathematics (309/1) paper was of average standard. The paper covered a wide range of the syllabus. It was neither gender bias nor culture bias. It did not have language

More information

All Work and no Play. Is that work? Work, work, work. You might head off to your job one day, sit at a computer, and type away at the keys.

All Work and no Play. Is that work? Work, work, work. You might head off to your job one day, sit at a computer, and type away at the keys. All Work and no Play Work, work, work. You might head off to your job one day, sit at a computer, and type away at the keys. Is that work? To a physicist, only parts of it are. Work is done when a force

More information

Year 10 Mathematics, 2009

Year 10 Mathematics, 2009 Student s Name: Teacher s Name: 10 Year 10 Mathematics, 2009 Algebra Use straightforward algebraic methods and sketch and interpret features of linear graphs Time: 20 minutes. Check that you have entered

More information

POST TEST KEY. Math in a Cultural Context*

POST TEST KEY. Math in a Cultural Context* Fall 2007 POST TEST KEY Building a Fish Rack: Investigation into Proof, Properties, Perimeter and Area Math in a Cultural Context* UNIVERSITY OF ALASKA FAIRBANKS Student Name: POST TEST KEY Grade: Teacher:

More information

BIGGAR HIGH SCHOOL HOMEWORK BOOKLET NATIONAL 4

BIGGAR HIGH SCHOOL HOMEWORK BOOKLET NATIONAL 4 BIGGAR HIGH SCHOOL HOMEWORK BOOKLET NATIONAL Rounding 1. Round these numbers to the nearest 10: a) 238 b) 719 c) 682 3 2. Round these numbers to the nearest 100: a) 6783 b) 13295 c) 199 3 3. Round these

More information

Lesson 14: Modeling Relationships with a Line

Lesson 14: Modeling Relationships with a Line Exploratory Activity: Line of Best Fit Revisited 1. Use the link http://illuminations.nctm.org/activity.aspx?id=4186 to explore how the line of best fit changes depending on your data set. A. Enter any

More information

Learning Goal: I can explain when to use the Sine, Cosine and Tangent ratios and use the functions to determine the missing side or angle.

Learning Goal: I can explain when to use the Sine, Cosine and Tangent ratios and use the functions to determine the missing side or angle. MFM2P Trigonometry Checklist 1 Goals for this unit: I can solve problems involving right triangles using the primary trig ratios and the Pythagorean Theorem. U1L4 The Pythagorean Theorem Learning Goal:

More information

100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men?

100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men? 100-Meter Dash Olympic Winning Times: Will Women Be As Fast As Men? The 100 Meter Dash has been an Olympic event since its very establishment in 1896(1928 for women). The reigning 100-meter Olympic champion

More information

GCSE Mathematics. Foundation Tier

GCSE Mathematics. Foundation Tier For Edexcel Name GCSE Mathematics Paper 2F (Calculator) Foundation Tier Time: 1 hour and 30 minutes Materials required Ruler, protractor, compasses, pen, pencil, eraser. Tracing paper may be used. Instructions

More information

Special Right Triangles

Special Right Triangles GEOMETRY Special Right Triangles OBJECTIVE #: G.SRT.C.8 OBJECTIVE Use trigonometric ratios and the Pythagorean Theorem to solve right triangles in applied problems. *(Modeling Standard) BIG IDEA (Why is

More information

Assignment. Get Radical or (Be) 2! Radicals and the Pythagorean Theorem. Simplify the radical expression. 45x 3 y 7. 28x x 2 x 2 x 2x 2 7x

Assignment. Get Radical or (Be) 2! Radicals and the Pythagorean Theorem. Simplify the radical expression. 45x 3 y 7. 28x x 2 x 2 x 2x 2 7x Assignment Assignment for Lesson.1 Name Date Get Radical or (Be)! Radicals and the Pythagorean Theorem Simplify the radical expression. 1. 60. 60 4 15 15. 8x 5 4. 8x 5 4 7 x x x x 7x 108 108 6 6 45x y

More information

V International Origami Internet Olympiad

V International Origami Internet Olympiad Russia 2015 V International Origami Internet Olympiad Russia 2015 1 Jury: Andrey Ermakov - founder of the olympiad Peter Stein - origami olympiad champion in 2014 Yaroslav Terehov - administrator of oriart.ru

More information

GCSE Mathematics Practice Tests: Set 6

GCSE Mathematics Practice Tests: Set 6 GCSE Mathematics Practice Tests: Set 6 Paper 3F (Calculator) Time: 1 hour 30 minutes You should have: Ruler graduated in centimetres and millimetres, protractor, pair of compasses, pen, HB pencil, eraser,

More information

A2.A.73: Law of Sines 4: Solve for an unknown side or angle, using the Law of Sines or the Law of Cosines

A2.A.73: Law of Sines 4: Solve for an unknown side or angle, using the Law of Sines or the Law of Cosines A2.A.73: Law of Sines 4: Solve for an unknown side or angle, using the Law of Sines or the Law of Cosines 1 In the accompanying diagram of ABC, m A = 65, m B = 70, and the side opposite vertex B is 7.

More information

Navigation with Leeway

Navigation with Leeway Navigation with Leeway Leeway, as we shall use the term, means how much a vessel is pushed downwind of its intended course when navigating in the presence of wind. To varying extents, knowledge of this

More information

Test Booklet. Subject: MA, Grade: NECAP 6th Grade Math. Student name:

Test Booklet. Subject: MA, Grade: NECAP 6th Grade Math. Student name: Test Booklet Subject: MA, Grade: 06 2005 NECAP 6th Grade Math Student name: Author: Rhode Island District: Rhode Island Released Tests Printed: Tuesday September 04, 2012 1 On Saturday, Dora practiced

More information

SECTION 4 25 Questions

SECTION 4 25 Questions SECTION 4 25 Questions Following each problem in this section, there are five suggested answers. Work each problem in your head or in the blank space provided at the right of the page. Then look at the

More information

Practice 9-1. The Real Numbers. Write all names that apply to each number

Practice 9-1. The Real Numbers. Write all names that apply to each number Chapter 9 Practice 9-1 The Real Numbers Write all names that apply to each number. 1. 3.2 2. 2 5 3. 12 4. 4 2 5. 20 6. 16 7. 7 8 8. 0.15 9. 18 2 10. 45 11. 25 12. 6.75 State if the number is rational,

More information

Perimeter. Perimeter is the distance around a shape. You can use grid. Step 1 On grid paper, draw a rectangle that has a length

Perimeter. Perimeter is the distance around a shape. You can use grid. Step 1 On grid paper, draw a rectangle that has a length Lesson 13.1 Perimeter Perimeter is the distance around a shape. You can use grid paper to count the number of units around the outside of a rectangle to find its perimeter. How many feet of ribbon are

More information

Perimeter and area Test Find the area. A 182 cm 2 B 195 cm 2 C 210 cm 2 D 58 cm 2. 2 Find the area. A 28 yd 2 B 14 yd 2 C 27 yd 2 D 35 yd 2

Perimeter and area Test Find the area. A 182 cm 2 B 195 cm 2 C 210 cm 2 D 58 cm 2. 2 Find the area. A 28 yd 2 B 14 yd 2 C 27 yd 2 D 35 yd 2 Name: ate: 1 Find the area. 182 cm 2 195 cm 2 210 cm 2 58 cm 2 2 Find the area. 28 yd 2 14 yd 2 27 yd 2 35 yd 2 opyright Pearson Education, Inc. or its affiliates. ll Rights Reserved. Page 1 of 18 3 Find

More information

7.4 Special Right Triangles

7.4 Special Right Triangles 7.4 Special Right Triangles Goal p Use the relationships among the sides in special right triangles. Your Notes The etended ratio of the side lengths of a --908 triangle is 1:1: Ï 2. THEOREM 7.8: --908

More information

Two Special Right Triangles

Two Special Right Triangles Page 1 of 7 L E S S O N 9.3 In an isosceles triangle, the sum of the square roots of the two equal sides is equal to the square root of the third side. Two Special Right Triangles In this lesson you will

More information

Two-Dimensional Motion and Vectors

Two-Dimensional Motion and Vectors Science Objectives Students will measure and describe one- and two-dimensional position, displacement, speed, velocity, and acceleration over time. Students will graphically calculate the resultant of

More information

Gurudwara Road Model Town, Hisar SSC CGL Tier 2

Gurudwara Road Model Town, Hisar SSC CGL Tier 2 Gurudwara Road Model Town, Hisar 9729327755 SSC CGL Tier 2 Math Paper code: 7 ------------------------------------------------------------------------------------------------------------------- No. of

More information

1ACE Exercise 4. Name Date Class

1ACE Exercise 4. Name Date Class 1ACE Exercise 4 Investigation 1 4. A farm wants to add a small rectangular petting zoo for the public. They have a fixed amount of fencing to use for the zoo. This graph shows the lengths and areas of

More information

Name Date PD. Pythagorean Theorem

Name Date PD. Pythagorean Theorem Name Date PD Pythagorean Theorem Vocabulary: Hypotenuse the side across from the right angle, it will be the longest side Legs are the sides adjacent to the right angle His theorem states: a b c In any

More information

Review of. Bell B206 Replica Torque Pedals. Manufactured by OE-XAM

Review of. Bell B206 Replica Torque Pedals. Manufactured by OE-XAM Review of Bell B206 Replica Torque Pedals Manufactured by OE-XAM Intro During my quest around flight simulation hardware I have set my focus on hardware manufactured specifically for helicopter flight

More information

GCSE 9-1 Higher Edexcel Set C Paper 1 - Non Calculator

GCSE 9-1 Higher Edexcel Set C Paper 1 - Non Calculator Name: GCSE 9-1 Higher Edexcel Set C Paper 1 - Non Calculator Equipment 1. A black ink ball-point pen. 2. A pencil. 3. An eraser. 4. A ruler. 5. A pair of compasses. 6. A protractor. Guidance 1. Read each

More information

Similar Right Triangles

Similar Right Triangles MATH 1204 UNIT 5: GEOMETRY AND TRIGONOMETRY Assumed Prior Knowledge Similar Right Triangles Recall that a Right Triangle is a triangle containing one 90 and two acute angles. Right triangles will be similar

More information

Warm Up Find what numbers the following values are in between.

Warm Up Find what numbers the following values are in between. Warm Up Find what numbers the following values are in between. 1. 30 2. 14 3. 55 4. 48 Color squares on each side of the triangles with map pencils. Remember A square has 4 equal sides! Looking back at

More information

GCSE Mathematics Practice Tests: Set 5

GCSE Mathematics Practice Tests: Set 5 GCSE Mathematics Practice Tests: Set 5 Paper 2H (Calculator) Time: 1 hour 30 minutes You should have: Ruler graduated in centimetres and millimetres, protractor, pair of compasses, pen, HB pencil, eraser,

More information

THE UNIVERSITY OF BRITISH COLUMBIA. Math 335 Section 201. FINAL EXAM April 13, 2013

THE UNIVERSITY OF BRITISH COLUMBIA. Math 335 Section 201. FINAL EXAM April 13, 2013 Page 1 of 11 THE UNIVERSITY OF BRITISH COLUMBIA Math 335 Section 201 Calculators are allowed No cell phones or information sheets allowed Exam length is 2 hours and 30 minutes FINAL EXAM April 13, 2013

More information

13.7 Quadratic Equations and Problem Solving

13.7 Quadratic Equations and Problem Solving 13.7 Quadratic Equations and Problem Solving Learning Objectives: A. Solve problems that can be modeled by quadratic equations. Key Vocabulary: Pythagorean Theorem, right triangle, hypotenuse, leg, sum,

More information

2nd Grade Quarter Four Assessment Guide

2nd Grade Quarter Four Assessment Guide nd Grade Quarter Four Assessment Guide Measurement Data Geometry Essential Questions How can you select an appropriate measurement tool? How can you compare measurement lengths in different units? Can

More information

CCM8 Unit 7: Pythagorean Theorem Vocabulary

CCM8 Unit 7: Pythagorean Theorem Vocabulary CCM8 Unit 7: Pythagorean Theorem Vocabulary Base Exponent Hypotenuse Legs Perfect Square Pythagorean Theorem When a number is raised to a power, the number that is used as a factor The number that indicates

More information

Tennessee - Test P. Predictive Assessment See what they know. Teach what they need. *TNRC-MA04PG-001* Practice Example: M A T H

Tennessee - Test P. Predictive Assessment See what they know. Teach what they need. *TNRC-MA04PG-001* Practice Example: M A T H M A T H Tennessee - Test P Predictive Assessment See what they know. Teach what they need. Practice Example: Gr Frank has pairs of shoes. How many shoes does he have in all? Items -7 A B C D TN-TNRC-MA-P-G--_

More information

Warm Up: Thursday, 11/5/2015

Warm Up: Thursday, 11/5/2015 Warm Up: Thursday, 11/5/2015 5x inches (2x 4) inches Chapter 4 Section 1 All 1.) What is the perimeter of the rectangle? P = 2l + 2w 2.) What is the area of the rectangle? A = lw 2.) Look at note packets

More information

2013 Excellence in Mathematics Contest Team Project Level I (Precalculus and above) School Name: Group Members:

2013 Excellence in Mathematics Contest Team Project Level I (Precalculus and above) School Name: Group Members: 013 Excellence in Mathematics Contest Team Project Level I (Precalculus and above) School Name: Group Members: Reference Sheet Formulas and Facts You may need to use some of the following formulas and

More information

Geometry 1A Multiple Choice Final Exam Practice

Geometry 1A Multiple Choice Final Exam Practice Name Date: Per: Geometry 1 Multiple hoice Final Eam Practice 1. Let point E be between points F and G. Solve for r. FE = 6r 20 EG = 5r 24 FG = 55 [] r = 14 [] r = 5 [] r = 4 [D] r = 9 2. m JHI = ( 2 7)

More information

GCSE 185/08 MATHEMATICS FOUNDATION TIER PAPER 2. A.M. THURSDAY, 17 November hours. Centre Number. Candidate Number. Surname.

GCSE 185/08 MATHEMATICS FOUNDATION TIER PAPER 2. A.M. THURSDAY, 17 November hours. Centre Number. Candidate Number. Surname. Surname Other Names Centre Number 0 Candidate Number GCSE 185/08 MATHEMATICS FOUNDATION TIER PAPER 2 A.M. THURSDAY, 17 November 2011 2 hours For s use Question Maximum Mark Mark Awarded ADDITIONAL MATERIALS

More information

Unit 2. Looking for Pythagoras. Investigation 5: Using the Pythagorean Theorem: Analyzing Triangles and Circles

Unit 2. Looking for Pythagoras. Investigation 5: Using the Pythagorean Theorem: Analyzing Triangles and Circles I can understand and apply the Pythagorean Theorem. Investigation 5 Unit 2 Looking for Pythagoras Investigation 5: Using the Pythagorean Theorem: Analyzing Triangles and Circles Lesson 1: Stopping Sneaky

More information

C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a

C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 9 0 9 7 C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 30S/30E/30M An Interactive Digital Media Course 9 0 9 7 : C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 3 0 S

More information

Combination Analysis Tutorial

Combination Analysis Tutorial Combination Analysis Tutorial 3-1 Combination Analysis Tutorial It is inherent in the Swedge analysis (when the Block Shape = Wedge), that tetrahedral wedges can only be formed by the intersection of 2

More information

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary 8-1 The Pythagorean Theorem and Its Converse Vocabulary Review 1. Write the square and the positive square root of each number. Number 9 Square Positive Square Root 1 4 1 16 Vocabulary Builder leg (noun)

More information

Application of Geometric Mean

Application of Geometric Mean Section 8-1: Geometric Means SOL: None Objective: Find the geometric mean between two numbers Solve problems involving relationships between parts of a right triangle and the altitude to its hypotenuse

More information

Chapter. Similar Triangles. Copyright Cengage Learning. All rights reserved.

Chapter. Similar Triangles. Copyright Cengage Learning. All rights reserved. Chapter 5 Similar Triangles Copyright Cengage Learning. All rights reserved. 5.4 The Pythagorean Theorem Copyright Cengage Learning. All rights reserved. The Pythagorean Theorem The following theorem will

More information

21-110: Problem Solving in Recreational Mathematics

21-110: Problem Solving in Recreational Mathematics 21-110: Problem Solving in Recreational Mathematics Homework assignment 1 solutions Problem 1. Find my office. Sign your name on the sheet posted outside my office door. Solution. My office is in the Physical

More information

Candidate Number. General Certificate of Secondary Education Foundation Tier January 2013

Candidate Number. General Certificate of Secondary Education Foundation Tier January 2013 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials General Certificate of Secondary Education Foundation Tier January 2013 Pages 3 4 5 Mark Mathematics

More information

Geom- Chpt. 8 Algebra Review Before the Chapter

Geom- Chpt. 8 Algebra Review Before the Chapter Geom- Chpt. 8 Algebra Review Before the Chapter Solving Quadratics- Using factoring and the Quadratic Formula Solve: 1. 2n 2 + 3n - 2 = 0 2. (3y + 2) (y + 3) = y + 14 3. x 2 13x = 32 1 Working with Radicals-

More information

Warm Up: Thursday, 11/5/2015

Warm Up: Thursday, 11/5/2015 Warm Up: Thursday, 11/5/2015 5x inches (2x 4) inches Chapter 4 Section 1 1.) What is the perimeter of the rectangle? P = 2l + 2w 2.) What is the area of the rectangle? A = lw 2.) Look at note packets for

More information