DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 13/06/2015. Este caderno contém 11 páginas com a descrição de 11 problemas definidos a seguir:

Size: px
Start display at page:

Download "DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 13/06/2015. Este caderno contém 11 páginas com a descrição de 11 problemas definidos a seguir:"

Transcription

1 DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 13/06/2015 Este caderno contém 11 páginas com a descrição de 11 problemas definidos a seguir: A The Pony Cart problem (Valladolid 12853) B The Other Two Trees (Valladolid 10250) C Trouble with a Pentagon (Valladolid 10286) D Superman (Valladolid 10355) E The tinker's puzzlle (Valladolid 12851) F Region (Valladolid 10991) G Colourful Flowers (Valladolid 11152) H Atlhetics Track (Valladolid 11646) I Elevator (Valladolid 11834) J Little Masters (Valladolid 12704) K- Refraction (Valladolid 12901) (ver no site) Desafios: K Where Can You Hide (Valladolid 10011) L Campus Roads (Valladolid 11473) M Tunnelling the Earth (Valladolid 11817) N Trapezium Drawing (Valladolid 12404) 1. Os alunos podem trabalhar em grupos de 2, usando um micro apenas. 2. Alguns dos problemas são do site da Universidade de Valladolid. 3. Pode ser consultado qualquer material escrito. Não se pode usar pen-drives nem Internet na aula, a menos que seja expressamente permitido pelo professor. 4. Os problemas serão posteriormente checados para verificar sua originalidade. 5. Cada problema resolvido durante a aula acrescenta 0,2 na média final de cada aluno da dupla. Quando feitos em casa, na semana seguinte, acrescentam 0,1. A pontuação máxima é de 2 pontos. 6. As linguagens permitidas são: Pascal, C, C++. JAVA quando permitido expressamente, 7. Usaremos o sistema BOCA para submissão e correção dos problemas. - Cada dupla receberá um código: time1 a time40, com password inicial igual ao nome do time, que poderá ser trocada. Esse nome será usado em todo o curso. - Para acessar o sistema BOCA usar a URL xxx será informado no início de cada aula. - Logar usando os parâmetros da dupla. - Submeter cada programa com o nome correto: Ex: A.pas, C.cpp, B.c 8. Resolver e programar com calma. Boa sorte.

2 Problema A (Valladolid 12853) The Pony Cart problem What is the circumference of the outer track? While driving a speedy pony, a young boy went around a sharp turn at a gait which threatened an upset to the pony cart, as well as to his father's nerves. Fortunately no accidents occurred, and after some experimentation, the following information was gathered: In turning the pony cart around within a ring of a certain diameter, which might be said to be reasonably safe, it was found that the outer wheels made two turns to the inner wheels one; the wheels were fxed at the statutory distance of fve feet apart on the axletree. The problem is to guess the circumference of the track described by the outer wheels in making the turn. Assume that the tracks marked on the foor are perfectly circular, that the distance between a wheel on one side and its opposite on the other side is D feet, and that for one turn of the inner wheels, the outer wheels make N turns. Determine the circumference of the circle formed by the outer wheels. starts with a positive integer T, that denotes the number of test cases. Each test case is described by the two real numbers D and N in the same line. These numbers are always given with two digits after the decimal point. T 1000; 3 D 10; 1 < N 10 For each test case, print the case number, followed by the circumference of the outer tracks (in feet), with exactly three digits after the decimal point. Sample Sample Case 1: Case 2: Case 3:

3 Problema B (Valladolid 10250) The Other Two Trees You have a quadrilateral shaped land whose opposite fences are of equal length. You have four neighbors whose lands are exactly adjacent to your four fences, that means you have a common fence with all of them. For example if you have a fence of length d in one side, this fence of length d is also the fence of the adjacent neighbor on that side. The adjacent neighbors have no fence in common among themselves and their lands also don t intersect. The main difference between their land and your land is that their lands are all square shaped. All your neighbors have a tree at the center of their lands. Given the Cartesian coordinates of trees of two opposite neighbors, you will have to find the Cartesian coordinates of the other two trees. The input file contains several lines of input. Each line contains four floating point or integer numbers x1, y1, x2, y2, where (x1, y1), (x2, y2) are the coordinates of the trees of two opposite neighbors. is terminated by end of file. For each line of input produce one line of output which contains the line Impossible. without the quotes, if you cannot determine the coordinates of the other two trees. Otherwise, print four floating point numbers separated by a single space with ten digits after the decimal pointax1, ay1, ax2, ay2, where (ax1, ay1) and (ax2, ay2) are the coordinates of the other two trees. The output will be checked with special judge program, so don t worry about the ordering of the points or small precision errors. The sample output will make it clear. Sample Sample

4 Problema C (Valladolid 10286) Trouble with a Pentagon You are asked to place the largest possible square inside a regular pentagon (whose internal angles are same and all the sides are same in length). You are given the information that one vertex of the square will be coincident with a vertex of the square as shown in the figure below. You will have to find the length of a side of the square when a side of the regular pentagon is given. Fig: Square in a pentagon. The input file contains several lines of input. Each line contains a floating point number F (0<=F<=100000) which indicates the length of a side of the pentagon. is terminated by end of file. For each line of input produce one line of output containing a floating point number with ten digits after the decimal point. This number indicates the largest possible side of a square that fits in the pentagon. This output will be judged with a special correction program, so don t worry about small precision errors. Sample Sample

5 Problema D (Valladolid 10355) Superman Superman, with his incredible power, can fly faster than rockets! He can even pierce the Great Wall if it is in his path, and this doesn't affect his speed. But he is facing an unbearable problem in large cities now a days. Some regions of these cities are covered with polluted air. When flying through these regions, he can hardly breathe and his speed reduces significantly. He wants to find out whether he could pass through such regions by finding out the length of his path through these regions. Superman knows that each regions of polluted air have the shape of a sphere. He also knows where the polluted regions are located. But he doesn't know how to calculate the path length inside a sphere. So, he requests you to do that for him. There are multiple datasets. is terminated by EOF. Each dataset consists of the followings (All numbers are integers < 21 in absolute value): City name (consisting of 1 to 8 alphanumeric characters) in the first line. Starting and ending points' coordinates (x 1, y1, z1, x2, y2, z2) of Superman's path (separated by space(s)). He always flies in a straight line. Number (between 1 and 10 inclusive) of polluted regions in the third line. Center and radius (x, y, z, r) of each region (separated by space(s)), one line per region. No two regions intersect each other. For each dataset, print the city name in a line followed by the percentage of his path inside polluted regions. The result should be correct to 2 places after the decimal point. Sample Dhaka Rio Sample Dhaka Rio 86.60

6 Problema E (Valladolid 12851) The tinker's puzzlle There is an old nursery rhyme that says: I agreed with a tinker whose name was Doo-little to make for my aunt a fat-bottomed kettle. Twelve inches exactly the depth of the same, and twenty-fve gallons of beer to contain. The inches across at the top would show just twice the width, as measured below. So tell me that width, across at the top for auntie now wants a lid from the shop. Can you indicate the diameter of the required lid to ft on the kettle, which is twelve inches deep, and will hold just twenty-five gallons? Given the depth of the kettle, and the volume it can hold, calculate its diameter at the top which is twice the diameter at the bottom. The depth is given in inches, while the volume is given in "beer gallons", which you should assume to be equivalent to 282 cubic inches. starts with a positive integer T, that denotes the number of test cases. Each test case contains two integers: D and V which denote the depth and the volume of the kettle, respectively. T 1000; 1 D 50; 1 V 100. For each test case, print the case number, followed by the diameter at the top of the kettle, in inches. Print this as a real number rounded to exactly three digits after the decimal point. Sample Sample Case 1: Case 2:

7 Problema F (Valladolid 10991) Region From above figure, it is clear that C1, C2 and C3 circles are touching each other. Consider, C1 circle have R1 radius. C2 circle have R2 radius. C3 circle have R3 radius. Write a program that will calculate the area of shaded region G The first line will contain an integer k (1 k 1000) which is the number of cases to solve. Each of the following k Lines will contain threefloating point number R1 (1 R1 1000), R2 (1 R2 1000) and R3 (1 R3 1000). For each line of input, generate one line of output containing the area of G rounded to six decimal digits after the decimal point. Floating-point errors will be ignored by special judge program. Sample for Sample

8 Problema G (Valladolid 11152) Colourful Flowers "Roses are red, violets are blue..." Millionaire Mr Smith is well-known -- not for his wealth, but for his odd sense of "art"... Mr Smith has got a circular garden. On the boundary he picks three points and gets a triangle. He then finds the largest circle in that triangular region. So he gets something like this Mr Smith then plants yellow sunflowers, blue violets and red roses in the way shown in the figure. (Nice combination, eh? :-) Given the lengths of the three sides of the triangle, you are to find the areas of the regions with each kind of flowers respectively. and Each line of input contains three integers a, b, c, the lengths of the three sides of the triangular region, with 0 < a b c For each case, your program should output the areas of the regions with sunflowers, with violets and with roses respectively. Print your answers correct to 4 decimal places. Sample Sample

9 Problema H (Valladolid 11646) Atlhetics Track London Olympics is approaching very shortly in just 3 years. Three years might not sound as that small a time to say just, but it is indeed for those who have to organize the competition. There are so many things to do preparing the venues, building the Olympic village for accommodating athletes and officials, improving the transportation of the entire city as the venues are located all over the city and also there will be great number of tourists / spectators during the Olympics. One of the most important tasks is to build the stadium. You are appointed as a programmer to help things out in certain matters more specifically in designing and building the athletics tracks. After some study, you find out that athletics tracks have a general shape of a rectangle with two sliced circles on two ends. Now the turf that is placed inside this rectangle is prepared elsewhere and comes in different shapes different length to width ratios. You know one thing for certain your track should have a perimeter of 400 meters. That s the standard length for athletics tracks. You are supplied with the design parameter length to width ratio. You are also told that the sliced circles will be such that they are part of the same circle. You have to find the length and width of the rectangle. There will be at most 1000 test cases. Each test case will be given in one line. It will contain ratio of the length and width of the rectangle in the format a : b. Here, a and b will be integers and both will be between 1 and 1000 (inclusive). For each test case, output a line in the following format Case n: L W where n is the case no (starting from 1) and L and W are length and width of the rectangle (in meters) respectively. You can output as many digits as you want after the decimal point. will be verified by a validator for 1E-5 precision. Sample 3 : 2 5 : 4 for Sample Case 1: Case 2:

10 Problema I (Valladolid 11834) Elevator The FCC (Factory of Cylinders of Carbon) manufactures various types of cylinders of carbon. FCC is installed on the tenth floor of a building, and uses the several building's elevators to transport the cylinders. For security, the cylinders must be transported in the upright position, and since they are heavy, at most two cylinders can be transported in a single elevator ride. The elevators have the shape of a parallelepiped and their height is always greater than the height of the cylinders. To minimize the number of elevator trips to transport the cylinders, the FCC wants, whenever possible, to put two cylinders in the elevator. The figure below illustrates, schematically (top view) a case where this is possible (a), and a case where this is not possible (b): As there is a very large amount of elevators and types of cylinders, FCC hired you to write a program that, given the dimensions of the elevator and of the two cylinders, determines whether it is possible to put the two cylinders in the elevator. The input contains several test cases. The first and only line of each test case contains four integers L, C, R 1 and R 2, separated by blanks, indicating the width ( 1 L 100) and the length ( 1 C 100) of the elevator and the radii of the cylinders ( 1 R 1, R 2 100). The last test case is followed by a line containing four zeros separated by blanks. For each test case your program should print a single line with a single character, `S' if you can put the two cylinders in the elevator and `N' otherwise. Sample Sample S N N S

11 Problema J (Valladolid 12704) Little Masters Bangladesh whitewashed New Zealand in the three-match one day international series defeating the visitors by four wickets in the last and final match in Narayanganj. The Tigers scored 309 runs in 49.2 overs for the loss of six wickets at the Khan Shaheb Osman Ali Stadium in Fatullah.The most remarkable was the performance from the batsman of tiger side. Mominul, Nasir, Naeem, Mushfiq all showed tremendous batting performance. People call them little masters. They are clever enough to find a quick boundary. Here we have to do a little task for our busy little masters. We have to find out the length of the shortest and longest boundary distance from the batsman. We know the radius of the circular stadium and the position of the batsman. Center of the stadium is always the origin (0, 0). Boundary means the perimeter of the circular field. starts with an integer T ( 100), denoting the number of test cases. Each case starts with a line containing three integers x, y, r (0 x; y; r 1000). (x; y) denotes the coordinate of the batsman. And r denotes the radius of the stadium. You can safely assume that coordinate of the batsman will not be out of the stadium. For each case, print the shortest and longest boundary distance. Show exactly 2 digits after decimal point, properly rounded. See the samples for exact formatting. Sample Sample

DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 02/12/2017. Este caderno contém 11 páginas com a descrição de 10 problemas definidos a seguir:

DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 02/12/2017. Este caderno contém 11 páginas com a descrição de 10 problemas definidos a seguir: DESENV. E IMPLEMENTAÇÃO DE ALGORITMOS 02/12/2017 Este caderno contém 11 páginas com a descrição de 10 problemas definidos a seguir: A The Pony Cart problem (Valladolid 12853) B The Other Two Trees (Valladolid

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

Cumulative Test. Name. Score. Show all work on this paper. Please use the Student Reference Guide.

Cumulative Test. Name. Score. Show all work on this paper. Please use the Student Reference Guide. Name Score Math Course 1 1A 1. Use the numbers 6, 12, and 18 to make two addition facts and two subtraction facts. 12 + 12 12 + 12 12 12 12 12 2. Use the numbers 5, 15, and 75 to make two multiplication

More information

Practice Test. 2 What is the area of this figure?

Practice Test. 2 What is the area of this figure? Practice Test 1 Which letter has a line of symmetry? S J R W L 3 Jane's house has a garden which is in the shape of a square. If each side of the garden is 18 feet then what is the perimeter of the garden?

More information

Problem 1. A cuboid of length x, width 5 less than x and a height of half the length has a surface area of 250 cm 2. Show that 4x 2 15x 250 = 0

Problem 1. A cuboid of length x, width 5 less than x and a height of half the length has a surface area of 250 cm 2. Show that 4x 2 15x 250 = 0 Problem 1 Expand x(x+5) Write an expression for: 6 less than x Calculate the surface area of the cuboid Simplify 5x + x 2 + 8x + 3 + x 2 half of x 5 cm 8 cm 3 cm A cuboid of length x, width 5 less than

More information

Perimeter. Perimeter is the distance around a figure. Add to find the perimeter (P) of each figure. P

Perimeter. Perimeter is the distance around a figure. Add to find the perimeter (P) of each figure. P Place Value: Large Numbers... 5 Comparing Numbers...6 Rounding Numbers...7 Two-Digit Addition with Regrouping...8 Three-Digit Addition with Regrouping...9 Addition of Large Numbers... 10 Problem olving:

More information

LLT Education Services

LLT Education Services 12. Find the area of a quadrilateral ABCD in which AB = 3 cm, BC = 4 cm, CD = 4 cm, DA = 5 cm and AC = 5 cm. 13. There is a slide in a park. One of its side walls has been painted in some colour with a

More information

Experiences with Area Assessment Materials

Experiences with Area Assessment Materials Experiences with Area Assessment Materials 1. Jenny bought a rectangular rug that had an area of 24 square feet and a perimeter of 20 feet. Which model shows the correct dimensions of the rug? A. 8 feet

More information

Cumulative Test. Name. Score. Show all work on this paper. Please use the Student Reference Guide.

Cumulative Test. Name. Score. Show all work on this paper. Please use the Student Reference Guide. Name Score Math Course 1 1B 1. Use the numbers 5, 11, and 16 to make two addition facts and two subtraction facts. 11 + 12 12 + 12 12 12 12 12 2. Use the numbers 4, 16, and 64 to make two multiplication

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

2015 FHSPS Playoff May 16, 2015 Online

2015 FHSPS Playoff May 16, 2015 Online 2015 FHSPS Playoff May 16, 2015 Online Filename eye lasertag movie radio science soccer speed swan Problem Name Top of the Eye Laser Tag Dinner and a Movie Radio Prizes Science Center Membership Orlando

More information

FIELD EVENTS DIAGRAMS

FIELD EVENTS DIAGRAMS FIELD EVENTS DIAGRAMS Landing System Approach HIGH JUMP The declination in the high jump approach shall not exceed 1:100 (1%). The approach shall consist of a semicircle or rectangle of unvarying surface.

More information

Perimeter. Name. 22 Topic 17. Reteaching Find the perimeter of the figure below.

Perimeter. Name. 22 Topic 17. Reteaching Find the perimeter of the figure below. Perimeter Reteaching 1-1 Find the perimeter of the figure below. 15 m x 4 ft 4 ft 2 ft y 2 ft 5 ft 6 m 20 ft Reteaching 1-1 By using a formula: There are two equal lengths and equal widths, so you can

More information

ROUND TOSS-UP: What is the square root of one million? (1000) (10 points) BONUS: How many zeros are at the end of ?

ROUND TOSS-UP: What is the square root of one million? (1000) (10 points) BONUS: How many zeros are at the end of ? ROUND 1 1. TOSS-UP: What is 24% of 50? (12) (10 points) BONUS: A clothing store is having a 60% off sale on its dresses. Brandi has a coupon that lets her take 20% off of the sale price. If she pays $24

More information

Sum Fun Tournament Meeting (Multiple Topics)

Sum Fun Tournament Meeting (Multiple Topics) Sum Fun Sum Fun Tournament Meeting (Multiple Topics) Sum Fun Topic There are a wide range of topics and difficulty levels covered during this meeting. Materials Needed The first four items listed below

More information

2016 School Competition Sprint Round Problems 1 30

2016 School Competition Sprint Round Problems 1 30 Name 2016 School Competition Sprint Round Problems 1 30 0 1 2 3 4 5 6 7 8 DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO. 9 This section of the competition consists of 30 problems. You will have 40 minutes

More information

Pythagorean Theorem Name:

Pythagorean Theorem Name: Name: 1. A wire reaches from the top of a 13-meter telephone pole to a point on the ground 9 meters from the base of the pole. What is the length of the wire to the nearest tenth of a meter? A. 15.6 C.

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

Mad Hatter 6-8. Math Field Day Mad Hatter 6-8. Part I

Mad Hatter 6-8. Math Field Day Mad Hatter 6-8. Part I Mad Hatter 6-8 Math Field Day 2012 Mad Hatter 6-8 CSU Fresno http://www.csufresno.edu/math 21 April 2012 The Mad Hatter Marathon is a competition in rapid computation and problem solving. You will find

More information

June x. 2. x. 3. x. Sunday Monday Tuesday Wednesday Thursday Friday Saturday 8.NS.1 8.NS.1 8.NS.1 8.NS.1 8.NS /3 + 1/9 2.

June x. 2. x. 3. x. Sunday Monday Tuesday Wednesday Thursday Friday Saturday 8.NS.1 8.NS.1 8.NS.1 8.NS.1 8.NS /3 + 1/9 2. June 2018 Sunday Monday Tuesday Wednesday Thursday Friday Saturday 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 Father s Day 24 25 26 27 28 29 30 1. 1/3 + 1/9 2. 1 8/9 + 3 2/3 3. 9 6/7 +

More information

Name: Class: Date: Geometry Chapter 4 Test Review

Name: Class: Date: Geometry Chapter 4 Test Review Name: Class: Date: ID: C Geometry Chapter 4 Test Review. 1. Determine the measure of angle UPM in the following figure. Explain your reasoning and show all your work. 3. Determine the side length of each

More information

Mark Scheme (Results) Summer 2009

Mark Scheme (Results) Summer 2009 Mark Scheme (Results) Summer 2009 GCSE GCSE Mathematics (Linear) - 1380 Paper: 1380_2F 2 NOTES ON MARKING PRINCIPLES 1 Types of mark M marks: method marks A marks: accuracy marks B marks: unconditional

More information

Related Rates - Classwork

Related Rates - Classwork Related Rates - Classwork Earlier in the year, we used the basic definition of calculus as the mathematics of change. We defined words that meant change: increasing, decreasing, growing, shrinking, etc.

More information

2017 AMC 12B. 2. Real numbers,, and satisfy the inequalities,, and. Which of the following numbers is necessarily positive?

2017 AMC 12B. 2. Real numbers,, and satisfy the inequalities,, and. Which of the following numbers is necessarily positive? 2017 AMC 12B 1. Kymbrea's comic book collection currently has 30 comic books in it, and she is adding to her collection at the rate of 2 comic books per month. LaShawn's comic book collection currently

More information

5. Find two numbers whose sum is 48 and whose product is to be a maximum.

5. Find two numbers whose sum is 48 and whose product is to be a maximum. 1 Optimization Practice (4.4) 1. If 40 passengers hire a special car on a train, they will be charged $8 each. This fare will be reduced by $.10 each passenger, for each person in addition to these 40.

More information

2018 Chapter Competition Countdown Round Problems 1 80

2018 Chapter Competition Countdown Round Problems 1 80 2018 Chapter Competition Countdown Round Problems 1 80 This booklet contains problems to be used in the Countdown Round. 2018 MATHCOUNTS National Competition Sponsor National Sponsors Raytheon Company

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

11 TH ANNUAL MATHLETES IN ACTION

11 TH ANNUAL MATHLETES IN ACTION 11 TH ANNUAL MATHLETES IN ACTION NOVEMBER 8, 2014 SPRINT ROUND PROBLEMS 1-25 NAME SCHOOL DO NOT BEGIN UNTIL INSTRUCTED TO DO SO. This round of the competition consists of twenty-five problems. You will

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

Additional Exercises 3.1

Additional Exercises 3.1 Additional Exercises 3.1 Express the statement as an algebraic expression. 1. Fifteen divided by a number x. 1. 2. The difference between a number x and 50 2. 3. The cost C decreased by 14% 3. 4. The profit

More information

Chapter 0 Pretest = 4

Chapter 0 Pretest = 4 Determine whether you need an estimate or an exact answer. Then solve. 1. SHOPPING Addison paid $1.29 for gum and $0.89 for a package of notebook paper. She gave the cashier a $5 bill. If the tax was $0.14,

More information

Purchasing for Our New Park Assessment

Purchasing for Our New Park Assessment Purchasing for Our New Park Assessment Name: Date: Final Assessment: Purchasing for our new park..how much will it cost? Multiple Choice: 1. Antawan was painting a picture for his aunt s birthday. His

More information

Math is Cool Masters

Math is Cool Masters Sponsored by: American Chemical Society Individual Contest Written by Cherie Clymer GENERAL INSTRUCTIONS Good sportsmanship is expected throughout the competition by all involved. Bad sportsmanship may

More information

Unit 3, Lesson 4: Applying Circumference

Unit 3, Lesson 4: Applying Circumference Unit 3, Lesson 4: Applying Circumference Lesson Goals Use the equation to solve problems. Fluently use the terms diameter, radius, and circumference. Know when and how to use approximations for. Required

More information

1. Which geometric solid would be best to use as a model of the following objects found in the real world. A. B. c.

1. Which geometric solid would be best to use as a model of the following objects found in the real world. A. B. c. 1. Sec 5.6 Geometric & Algebra Connections Geometric Models Name: Choosing a Model Prism Pyramid Cylinder Cone Sphere Hemisphere SA = 2(lh + hw + lw) SA = LA + B SA = 2πrh + 2πr 2 SA = πrl + πr 2 SA =

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

FRA SUMMER MATH 2017 Math Course 3

FRA SUMMER MATH 2017 Math Course 3 FRA SUMMER MATH 2017 Math Course 3 The following can be found within this file on the specific pages listed: Content Math Course 3 Teacher Letter and Summer Math Directions Pages 2 Math Course 3 Overview

More information

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

2011 Excellence in Mathematics Contest Team Project Level I (Precalculus and above) School Name: Group Members: 011 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

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

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

Corkagh Park Maths Trail

Corkagh Park Maths Trail Open your Corkagh Park Maths Trail In association with: This trail begins at the noticeboard at the entrance near the St John s Wood car parks in Corkagh Park The producers of this Maths Trail accept no

More information

ASVAB Arithmetic Reasoning

ASVAB Arithmetic Reasoning ASVAB Arithmetic Reasoning Number: Arithmetic Reasoning Passing Score: 800 Time Limit: 120 min File Version: 1.0 Arithmetic Reasoning QUESTION 1 If there are 3 quarts of gas in a gallon container, how

More information

Free Response Review

Free Response Review Name Free Response Review 1. A rescue team 1000 ft. away from the base of a vertical cliff measures the angle of elevation to the top of the cliff to be 70. A climber is stranded on a ledge. The angle

More information

2011 Excellence in Mathematics Contest Team Project Level I (Precalculus and above)

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

More information

Tilden Middle School Summer Math Packet Incoming Grade 6

Tilden Middle School Summer Math Packet Incoming Grade 6 Tilden Middle School Summer Math Packet Incoming Grade 6 . Several expressions are shown. Decide if the value of the expression is less than, equal to, or greater than 5. Write the expressions in the corresponding

More information

ACCEL CA/ GEO A. Worksheet I- Unit 9 Test Review PART 1: Part 2:

ACCEL CA/ GEO A. Worksheet I- Unit 9 Test Review PART 1: Part 2: ACCEL CA/ GEO A Name Worksheet I- Unit 9 Test Review PART 1: 16. 17. 9 Part 2: Part 3: Part 4: 7 8, 7. 8. Part 5: 1) The device shown is a 10 second game timer. The top button starts and stops the timer.

More information

Dazzling Dragons Play Magical Mini Golf

Dazzling Dragons Play Magical Mini Golf 25 Putt-Putt Holes Putt-Putt Simpson s style: https://www.youtube.com/watch?v=iudkwvgdrag BLUE = Water hazard, not part of the area of the hole RED = Obstacle, part of the area of the hole = Tee box, part

More information

Louis M. Edwards Mathematics Super Bowl Valencia Community College -- April 19, 2002

Louis M. Edwards Mathematics Super Bowl Valencia Community College -- April 19, 2002 Practice Round 1. At Wakeel s Pizza Emporium, large pizzas (14 diameter round) cost $9.99, extra large pizzas (16 diameter round) cost $13.99 and super large pizzas (18 diameter round) cost $16.99. What

More information

Preliminary Round. 2 nd Annual WSMA Math Bowl April 28, 2012

Preliminary Round. 2 nd Annual WSMA Math Bowl April 28, 2012 Preliminary Round 2 nd Annual WSMA Math Bowl April 28, 2012 This test material is copyright 2012 by the Washington Student Math Association and may not be distributed or reproduced otherthan for nonprofit

More information

Math is Cool Championships

Math is Cool Championships Sponsored by: Western Polymer Corporation & Wenatchee Valley Clinic 7 th & 8 th Grade October 22, 2004 Individual Contest Express all answers as reduced fractions unless stated otherwise. Leave answers

More information

2018 School Competition Sprint Round Problems 1 30

2018 School Competition Sprint Round Problems 1 30 Name 08 School Competition Sprint Round Problems 0 0 4 5 6 7 8 DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO. 9 This section of the competition consists of 0 problems. You will have 40 minutes to complete

More information

Name. STAR CITY Math / Geometry / Special Right Triangles. Teacher Period. Use the diagram below to answer question 1.

Name. STAR CITY Math / Geometry / Special Right Triangles. Teacher Period. Use the diagram below to answer question 1. STAR CITY Math / Geometry / Special Right Triangles Use the diagram below to answer question 1. Name Teacher Period 2. The drawing shows the measurements in a section of a circular design. How long is

More information

CARIBBEAN EXAMINATIONS COUNCIL CARIBBEAN CERTIFICATE OF SECONDARY LEVEL COMPETENCE MATHEMATICS SPECIMEN PAPER MULTIPLE CHOICE QUESTIONS 75 Minutes

CARIBBEAN EXAMINATIONS COUNCIL CARIBBEAN CERTIFICATE OF SECONDARY LEVEL COMPETENCE MATHEMATICS SPECIMEN PAPER MULTIPLE CHOICE QUESTIONS 75 Minutes FORM TP 05134010 TEST CODE 05134010/SPEC/2010 CARIBBEAN EXAMINATIONS COUNCIL CARIBBEAN CERTIFICATE OF SECONDARY LEVEL COMPETENCE MATHEMATICS SPECIMEN PAPER MULTIPLE CHOICE QUESTIONS 75 Minutes READ THE

More information

1. I: 3. M: 5. C: about m 6. T: m. 7. O: about. 9. O: about m 10. COMPOSITE cm cm

1. I: 3. M: 5. C: about m 6. T: m. 7. O: about. 9. O: about m 10. COMPOSITE cm cm 8.4 Warm Up For use before Activity 8.4. 100 ft. 150 m 56 in. 0 cm 5. about 14 ft 6. about 7850 yd 8.4 Start Thinking! For use before Lesson 8.4 Check students drawings and calculations. 8.4 Warm Up For

More information

Name Date Period. (D) 4 π. 3. One revolution per minute is about: (A) rad/s (B) rad/s (C) 0.95 rad/s (D) 1.57 rad/s (E) 6.

Name Date Period. (D) 4 π. 3. One revolution per minute is about: (A) rad/s (B) rad/s (C) 0.95 rad/s (D) 1.57 rad/s (E) 6. Name Date Period Worksheet 5.2 Applications of Angles Show all work. All answers must be given as either simplified, exact answers. A calculator is permitted unless otherwise stated. Unless stated otherwise,

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

Maneuver Descriptions

Maneuver Descriptions 2017-2018 Senior Pattern Association Section III Maneuver Descriptions NOTE: MANEUVER DESCRIPTIONS THAT FOLLOW ARE TAKEN VERBATIM FROM THE APPROPRIATE AMA RULE BOOKS FROM WHICH THE MANEUVERS WERE TAKEN.

More information

2019 State Competition Sprint Round Problems 1 30

2019 State Competition Sprint Round Problems 1 30 1 19 State Competition Sprint Round Problems 1 3 HONOR PLEDGE I pledge to uphold the highest principles of honesty and integrity as a Mathlete. I will neither give nor accept unauthorized assistance of

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

Fantasy Baseball Filename: baseball

Fantasy Baseball Filename: baseball Fantasy Baseball Filename: baseball Each year the state of Florida picks a Most Valuable Player (MVP) amongst all of its baseball players. Last year however, many were outraged when the winner became the

More information

Rosa Parks Middle School. Summer Math Packet Incoming C2.0 Math- 6 Student Name: Teacher Name: Date:

Rosa Parks Middle School. Summer Math Packet Incoming C2.0 Math- 6 Student Name: Teacher Name: Date: Rosa Parks Middle School Summer Math Packet Incoming C2.0 Math- 6 Student Name: Teacher Name: Date: Dear Student and Parent, The purpose of this packet is to provide a review of objectives that were taught

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

The Agility Association of Canada

The Agility Association of Canada APPENDIX F - OBSTACLE CONSTRUCTION STANDARDS, 2018 JUMP HEIGHTS F 2 Obstacle Specifications F 2.5 Jumps: General Construction Notes Notes: Jump height is measured from the ground to the top of the pole

More information

Circle Terms.notebook March 27, 2017

Circle Terms.notebook March 27, 2017 10.01+.notebook March 27, 2017 Welcome back! It's so good to see you! New seats today. Check the seating chart on the front chair. Do not move the desks as they are supposed to be in pods. In your groups...

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

Newport Mill Middle School. Summer Math Packet Incoming Grade 6

Newport Mill Middle School. Summer Math Packet Incoming Grade 6 Newport Mill Middle School Summer Math Packet Incoming Grade 6 . Several expressions are shown. Decide if the value of the expression is less than, equal to, or greater than 5. Write the expressions in

More information

1. Identify the sample space and the outcome shown for spinning the game spinner.

1. Identify the sample space and the outcome shown for spinning the game spinner. 2014-2015 6 th Grade Compacted Spring Semester Review Name: 1. Identify the sample space and the outcome shown for spinning the game spinner. Z W Y X a. Sample space: {W, X, Y, Z} Outcome shown: Z b. Sample

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

Indiana Academic 22 nd Annual M.A.T.H. Bowl. Invitational January 22 Feb. 3, Begin Practice Round

Indiana Academic 22 nd Annual M.A.T.H. Bowl. Invitational January 22 Feb. 3, Begin Practice Round Indiana Academic 22 nd Annual M.A.T.H. Bowl Invitational January 22 Feb. 3, 2018 Begin Practice Round 2018 MATH Invitational Practice Round 30 seconds 3(4) =? A. 34 B. 7 C. -1 D. 12 2018 MATH Invitational

More information

Indiana Academic 22 nd Annual M.A.T.H. Bowl

Indiana Academic 22 nd Annual M.A.T.H. Bowl Indiana Academic 22 nd Annual M.A.T.H. Bowl Invitational January 22 Feb. 3, 2018 Begin Practice Round 2018 MATH Invitational Practice Round 30 seconds A. 34 B. 7 C. -1 D. 12 3(4) =? 2018 MATH Invitational

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

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

5.8 The Pythagorean Theorem

5.8 The Pythagorean Theorem 5.8. THE PYTHAGOREAN THEOREM 437 5.8 The Pythagorean Theorem Pythagoras was a Greek mathematician and philosopher, born on the island of Samos (ca. 582 BC). He founded a number of schools, one in particular

More information

NAME DATE PERIOD. Areas of Parallelograms and Triangles

NAME DATE PERIOD. Areas of Parallelograms and Triangles 11-1 Skills Practice Areas of Parallelograms and Triangles Find the perimeter and area of each parallelogram or triangle. Round to the nearest tenth if necessary. 18 mm 10 mm 12 mm 4 ft 60 5.5 ft 4. 14

More information

A 28-inch ribbon was cut into four equal lengths. How long was each piece of ribbon?

A 28-inch ribbon was cut into four equal lengths. How long was each piece of ribbon? Name Score Benchmark Test 1 Math Course 1 For use after Lesson 0 1. (5) A -inch ribbon was cut into four equal lengths. How long was each piece of ribbon? A. 7 inches B. 7 1 inches. () In a class of students

More information

MATH 30/GRACEY

MATH 30/GRACEY MATH 30/GRACEY 2.6-2.7 Name Find the unknown in each percent question. 1) What is 10% of 300? 2) 57 is 70% of what number? 3) What percent of 129 is 10.3? 4) 16 is 7% of what number? 5) 20% of what number

More information

Enhanced Features and Functions Guide. English

Enhanced Features and Functions Guide. English Enhanced Features and Functions Guide Enhanced Features and Functions Guide This booklet contains instructions for using additional functions (mainly on the model with the exterior rotating bezel). Use

More information

Your First Event. All you need to know to take part

Your First Event. All you need to know to take part Your First Event All you need to know to take part Orienteering is a sport combining navigation and exercise. You find a series of controls marked by an orange and white flag, using a map and, for more

More information

Project 1 Those amazing Red Sox!

Project 1 Those amazing Red Sox! MASSACHVSETTS INSTITVTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.001 Structure and Interpretation of Computer Programs Spring Semester, 2005 Project 1 Those amazing Red

More information

GCSE Mathematics Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes ANSWERS. Marks shown in brackets for each question (2)

GCSE Mathematics Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes ANSWERS. Marks shown in brackets for each question (2) MathsMadeEasy 3 GCSE Mathematics Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes ANSWERS Marks shown in brackets for each question Typical Grade Boundaries C D E F G 76 60 47 33 20 Legend

More information

Summer Math Assignment 2017 Briggs Chaney Middle School For Students Entering C2.0 Math 6

Summer Math Assignment 2017 Briggs Chaney Middle School For Students Entering C2.0 Math 6 Summer Math Assignment 207 Briggs Chaney Middle School For Students Entering C2.0 Math 6 This summer math booklet was developed to provide students an opportunity to review math objectives and to improve

More information

12-2 Area of Circles. Find the area of each circle. Round to the nearest tenth. 1. ANSWER: m 2. ANSWER: 12.6 yd 2 ANSWER: 132.

12-2 Area of Circles. Find the area of each circle. Round to the nearest tenth. 1. ANSWER: m 2. ANSWER: 12.6 yd 2 ANSWER: 132. Find the area of each circle. Round to the nearest tenth. 1. 6. A motion detector at the corner of a building can detect motion outside within a radius of 20 feet as shown. Within what area can it detect

More information

Write the definition of each term in your own words. Then make a sketch to describe each term visually.

Write the definition of each term in your own words. Then make a sketch to describe each term visually. ssignment ssignment for Lesson.1 Name Date s the Crow Flies Properties of Spheres Write the definition of each term in your own words. Then make a sketch to describe each term visually. 1. distance as

More information

Volume Formula for a Cylinder

Volume Formula for a Cylinder ACTIVITY 1.1 Volume Formula for a Analyze the prisms shown. Triangular Prism Rectangular Prism Pentagonal Prism Hexagonal Prism 1. What pattern do you see as the number of sides of the base increases?

More information

UAB MATH-BY-MAIL CONTEST, 2004

UAB MATH-BY-MAIL CONTEST, 2004 UAB MATH-BY-MAIL CONTEST, 2004 ELIGIBILITY. Math-by-Mail competition is an individual contest run by the UAB Department of Mathematics and designed to test logical thinking and depth of understanding of

More information

UNITED KINGDOM MATHEMATICS TRUST GROUP ROUND. There are 15 questions to try to answer in the time allowed.

UNITED KINGDOM MATHEMATICS TRUST GROUP ROUND. There are 15 questions to try to answer in the time allowed. UNITED KINGDOM MATHEMATICS TRUST GROUP ROUND Time allowed: 45 minutes. There are 15 questions to try to answer in the time allowed. Each question is worth four marks. A question is marked either correct

More information

Average Speed and Average Velocity Practice

Average Speed and Average Velocity Practice Average Speed and Average Velocity Practice Problem #1: What is the average speed of my bunny rabbit when she hops 6 meters to the east across the room in 11 seconds? Express your answer using the proper

More information

3. How many kilograms of air is in the room?

3. How many kilograms of air is in the room? 1. Astronomers use density as a clue to the composition of distant objects. Judging by the orbits of its moons the mass of Saturn is found to be 5.68 10 26 kg. (a) Use its mean radius 58 230 km to determine

More information

Mathematics Spiral Review Quarter 1.1 Grade 5

Mathematics Spiral Review Quarter 1.1 Grade 5 Mathematics Spiral Review Quarter 1.1 Basic Computation (4.NBT.4) 378 + 1,761 = Write 538 using number names and expanded form. Estimation (4.NBT.3) Round to the nearest hundred: 329 6,582 Skill of the

More information

Contents ... TEACHER GUIDE NCTM Content Standards Assessment Rubric... 6 How Is Our Resource Organized? The NCTM Principles & Standards...

Contents ... TEACHER GUIDE NCTM Content Standards Assessment Rubric... 6 How Is Our Resource Organized? The NCTM Principles & Standards... Contents... TEACHER GUIDE NCTM Content Standards Assessment Rubric.. 6 How Is Our Resource Organized?. 11 The NCTM Principles & Standards 12 STUDENT HANDOUTS Number and Operations Drill Sheets Warm-Up

More information

CENTER PIVOT EVALUATION AND DESIGN

CENTER PIVOT EVALUATION AND DESIGN CENTER PIVOT EVALUATION AND DESIGN Dale F. Heermann Agricultural Engineer USDA-ARS 2150 Centre Avenue, Building D, Suite 320 Fort Collins, CO 80526 Voice -970-492-7410 Fax - 970-492-7408 Email - dale.heermann@ars.usda.gov

More information

The Od-1ashIoned WaY Old-time soda jerks had some strange names for the treat they served. Listed are ten of those names, To translate each old-time p

The Od-1ashIoned WaY Old-time soda jerks had some strange names for the treat they served. Listed are ten of those names, To translate each old-time p Liberty and Roosevelt Middle Schools Grade 7 Summer Mathematics Activity Book Answer Key Summer 2015 The Od-1ashIoned WaY Old-time soda jerks had some strange names for the treat they served. Listed are

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

Module 3: Hydrostatic forces on submerged bodies Lecture 7: Calculation of horizontal component, buoyancy. Forces on submerged bodies (continued)

Module 3: Hydrostatic forces on submerged bodies Lecture 7: Calculation of horizontal component, buoyancy. Forces on submerged bodies (continued) Forces on submerged bodies (continued) Buoyancy file:///d /Web%20Course/Dr.%20Nishith%20Verma/local%20server/fluid_mechanics/lecture7/7_1.htm[5/9/2012 3:05:26 PM] Forces on submerged bodies (continued)

More information

Name: Class: Date: ID: A. 2. What is the perimeter of a rectangular room that has a length of 5.1 m and a width that is 2 m less than the length?

Name: Class: Date: ID: A. 2. What is the perimeter of a rectangular room that has a length of 5.1 m and a width that is 2 m less than the length? Name: Class: _ Date: _ ID: A Review Package 3 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. What is the perimeter of a square garden with a side length

More information

MATHEMATICS WDM Level Advanced

MATHEMATICS WDM Level Advanced MATHEMATICS WDM Level Advanced Problem Solving 70 What are the last two digits of 2 222? 71 John has a rectangular paved area in his yard. He increases both the length and the width of this paved area

More information

2.6 Related Rates Worksheet Calculus AB. dy /dt!when!x=8

2.6 Related Rates Worksheet Calculus AB. dy /dt!when!x=8 Two Rates That Are Related(1-7) In exercises 1-2, assume that x and y are both differentiable functions of t and find the required dy /dt and dx /dt. Equation Find Given 1. dx /dt = 10 y = x (a) dy /dt

More information

Test Review: Geometry I Period 2,4,6. TEST DATE: All classes Wednesday April 9. Things it would be a good idea to know:

Test Review: Geometry I Period 2,4,6. TEST DATE: All classes Wednesday April 9. Things it would be a good idea to know: Test Review: Geometry I Period 2,4,6 TEST DATE: All classes Wednesday April 9 Things it would be a good idea to know: 1) Special Right Triangles 2) Geometric Mean 3) SOHCAHTOA Test Outline Part I - Non-Calculator

More information

Briggs Chaney Middle School. Summer Math Packet Incoming Grade 6

Briggs Chaney Middle School. Summer Math Packet Incoming Grade 6 Briggs Chaney Middle School Summer Math Packet Incoming Grade 6 BRIGGS CHANEY MIDDLE SCHOOL 90 Rainbow Drive Silver Spring, Maryland 20905 Phone: 30-989-6000 Dear Student and Parent, The purpose of this

More information

Arithmetic with Units of Measure

Arithmetic with Units of Measure Arithmetic with Units of Measure Reteaching 81 Math Course 1, Lesson 81 If units are not the same, convert first. Example: 2 ft + 12 in. 24 in. + 12 in. or 2 ft + 1 ft To add or subtract measures, keep

More information