Topic 1 Pythagorean Theorem

Size: px
Start display at page:

Download "Topic 1 Pythagorean Theorem"

Transcription

1 Topic 1 Pythagorean Theorem Question 1 name Perimeter of a trapezoid text In trapezoid ABCD the sides AB and CD are equal. The lengths of BC and AD are b 1 = $x and b 2 = $y respectively. The height of the trapezoid is h = $z. Determine the perimeter of ABCD. answer $ans 1

2 code $a = int( rint(3) ); $x = int( rint(5) ) + 3; $z = int( $a*3); $y = int( $x + $a*2*4 ); $ans = int( $x + $y + $a*5); comment Adapted from 1999 AMC 8, Problem 14, 25.65% Question 2 name Thirds of a square text Square ABCD has sides of length $x. Segments CM and CN divide the square s area into three equal parts. How long is segment CM? answer $ans code $x = int( rint(5) ) + 3; $ans = sqrt( (13/9)*x^2 ); comment Adapted from 1999 AMC 8, Problem 23, 17.98% Question 3 name Overlapping Squares text Two $a $a squares intersect at right angles, bisecting their intersecting sides, as shown. The circle s diameter is the segment between the two points of intersection. What is the area of the shaded region created by removing the circle from the squares? 2

3 answer $ans code $a = int( rint(5) ) + 3; $ans = 7*a^2/4 - a^2*pi/8 ; comment Adapted from 2004 AMC 8 Problem 25, 13.12% correct Question 4 name Pythagorean Theorem and the perimeter of a trapezoid text The area of trapezoid ABCD is $area cm 2. The altitude is h = $height cm, AB is r = $lefthyp cm, and CD is s = $righthyp cm. What is BC, in centimeters? answer $upperbase code $r = rint(4); $height = switch($r, 8, 12, 24, 16); $lefthyp = switch($r, 10, 13, 25, 20); $leftleg = switch($r, 6, 5, 7, 12); 3

4 $righthyp = switch($r, 17, 20, 26, 34); $rightleg = switch($r, 15, 16, 10, 30); $upperbase = rint(3) + 10; $lowerbase = $leftleg + $upperbase + $rightleg; $averagebase = ($upperbase + $lowerbase)/2; $area = $height*$averagebase; comment Adapted from 2003 AMC 8 Problem % correct Question 5 name Area from the Pythagorean Theorem text Given the areas C = $c2 and A = $a2 of the two squares in the figure, what is the area of the interior triangle? answer $area code $r = rint(8); $a = switch($r, 3, 5, 6, 7, 8, 10, 12, 16); $b = switch($r, 4, 12, 8, 24, 15, 24, 16, 30); $c = switch($r, 5, 13, 10, 25, 17, 26, 20, 34); $a2 = $a^2; $c2 = $a^2; $area = (1/2)*$a*$b; comment Adapted from 2003 AMC 8 Problem 6, 47.69% correct Question 6 mode Multiple Choice name A triangle view of the Pythagorean Theorem text Right isosceles triangles are constructed on the sides of a triangle, as shown. A capital letter represents the area of each triangle. Which one of the following is true? 4

5 choice X + Z = W + Y choice W + X = Z choice 3X + 4Y = 5Z choice X + W = 1 (Y + Z) 2 correct-choice X + Y = Z comment 2002 AMC 8 Problem % correct Question 7 name Rectangle into three triangles text In rectangle ABCD, AD = $ad, P is on AB, and DB and DP trisect What is the perimeter of BDP? ADC. answer $p code $ad = rint(10); 5

6 $db = 2*$ad; $ab = sqrt3*$ad; $ap = (sqrt3/3)*$ap; $dp = 2*(sqrt3/3)*$ap; $pb = $ab - $ap; comment Adapted from 2000 AMC 10, Problem 7, 77.28% Question 8 name Altitude of a triangle text The sides of a triangle have lengths of $a, $b and $c. Find the length of the shortest altitude. answer $alt code $r = rint(10); $a = 3*$r; $b = 4*$r; $c = 5*$r; comment Adapted from 2002 AMC 10 A, Problem 13, 16.06% Question 9 name Size of a television screen text Many television screens are rectangles that are measured by the length of their diagonals. Likewise, for many television screens the ratio of the horizontal length to the height in a standard television screen is 4 : 3. The horizontal length of a $d-inch television screen conforming to these standards is closest to which of the following? answer $a code $r = rint(5); $d = switch($r, 20, 27, 32, 34, 37); $a = round( (5/4) * $d ); comment Adapted from 2003 AMC 10 B, Problem 6, 38.44% correct Question 10 name Distance between cities text Suppose the Regional Airport is $a miles southwest the center of City A and $b miles southeast of the center of City B. Which of the following is closest to the number of miles between the centers of City A and City B? answer $c code $r = rint(10) + 2; $a = $r*4; $b = $r*5; $c = round( sqrt(41)*$r ); comment Adapted from 2004 AMC 10 B, Problem 8, 63.25% correct 6

7 Question 11 name Perimeter of another trapezoid text In the trapezoid ABCD, AD = $lefthyp, DC = $50, CD = $righthyp. The height DE = $height. What is the perimeter of trapezoid ABCD? answer varperimeter code $r = rint(4); $height = switch($r, 8, 12, 24, 16); $lefthyp = switch($r, 10, 13, 25, 20); $leftleg = switch($r, 6, 5, 7, 12); $righthyp = switch($r, 17, 20, 26, 34); $rightleg = switch($r, 15, 16, 10, 30); $upperbase = 50; $lowerbase = $leftleg + $upperbase + $rightleg; $perimeter = $upperbase + $lowerbase + $lefthyp + $righthyp; comment Adapted from 2005 AMC 8, Problem 19, 38.75% correct Question 12 7

8 name Bill takes a walk text Bill walks $a mile south, then $b mile east, and finally $a mile south. How many miles is he, in a direct line, from his starting point? answer $a code $r = rint(5); $a = (1/2)*$r; $b = (3/4)*$r; $c = (5/4)*$r; comment Adapted from 2005 AMC 8, Problem 7, 22.26% correct 8

Catty Corner. Side Lengths in Two and. Three Dimensions

Catty Corner. Side Lengths in Two and. Three Dimensions Catty Corner Side Lengths in Two and 4 Three Dimensions WARM UP A 1. Imagine that the rectangular solid is a room. An ant is on the floor situated at point A. Describe the shortest path the ant can crawl

More information

G.MG.A.3: Area of Polygons

G.MG.A.3: Area of Polygons Regents Exam Questions G.MG.A.3: Area of Polygons www.jmap.org Name: G.MG.A.3: Area of Polygons If the base of a triangle is represented by x + 4 and the height is represented by x, which expression represents

More information

1. Convert 60 mi per hour into km per sec. 2. Convert 3000 square inches into square yards.

1. Convert 60 mi per hour into km per sec. 2. Convert 3000 square inches into square yards. ACT Practice Name Geo Unit 3 Review Hour Date Topics: Unit Conversions Length and Area Compound shapes Removing Area Area and Perimeter with radicals Isosceles and Equilateral triangles Pythagorean Theorem

More information

Downloaded from

Downloaded from 1 IX Mathematics Chapter 8: Quadrilaterals Chapter Notes Top Definitions 1. A quadrilateral is a closed figure obtained by joining four points (with no three points collinear) in an order. 2. A diagonal

More information

Lesson 1 Area of Parallelograms

Lesson 1 Area of Parallelograms NAME DATE PERIOD Lesson 1 Area of Parallelograms Words Formula The area A of a parallelogram is the product of any b and its h. Model Step 1: Write the Step 2: Replace letters with information from picture

More information

UNIT 6: CONJECTURE AND JUSTIFICATION WEEK 24: Student Packet

UNIT 6: CONJECTURE AND JUSTIFICATION WEEK 24: Student Packet Name Period Date UNIT 6: CONJECTURE AND JUSTIFICATION WEEK 24: Student Packet 24.1 The Pythagorean Theorem Explore the Pythagorean theorem numerically, algebraically, and geometrically. Understand a proof

More information

Geometry 2001 part 1

Geometry 2001 part 1 Geometry 2001 part 1 1. Point is the center of a circle with a radius of 20 inches. square is drawn with two vertices on the circle and a side containing. What is the area of the square in square inches?

More information

Name. Ms. Nong. Due on: Per: Geometry 2 nd semester Math packet # 2 Standards: 8.0 and 16.0

Name. Ms. Nong. Due on: Per: Geometry 2 nd semester Math packet # 2 Standards: 8.0 and 16.0 Name FRIDAY, FEBRUARY 24 Due on: Per: TH Geometry 2 nd semester Math packet # 2 Standards: 8.0 and 16.0 8.0 Students know, derive, and solve problems involving the perimeter, circumference, area, volume

More information

Project Maths Geometry Notes

Project Maths Geometry Notes The areas that you need to study are: Project Maths Geometry Notes (i) Geometry Terms: (ii) Theorems: (iii) Constructions: (iv) Enlargements: Axiom, theorem, proof, corollary, converse, implies The exam

More information

MATH MEASUREMENT AND GEOMETRY

MATH MEASUREMENT AND GEOMETRY Students: 1. Students choose appropriate units of measure and use ratios to convert within and between measurement systems to solve problems. 1. Compare weights, capacities, geometric measures, time, and

More information

Twenty Mathcounts Target Round Tests Test 1 MATHCOUNTS. Mock Competition One. Target Round. Name. State

Twenty Mathcounts Target Round Tests Test 1 MATHCOUNTS. Mock Competition One. Target Round. Name. State MATHCOUNTS Mock Competition One Target Round Name State DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO. This section of the competition consists of eight problems, which will be presented in pairs. Work

More information

Date: Period: Quadrilateral Word Problems: Review Sheet

Date: Period: Quadrilateral Word Problems: Review Sheet Name: Quadrilateral Word Problems: Review Sheet Date: Period: Geometry Honors Directions: Please answer the following on a separate sheet of paper. Completing this review sheet will help you to do well

More information

Squares and Square Roots Algebra 11.1

Squares and Square Roots Algebra 11.1 Squares and Square Roots Algebra 11.1 To square a number, multiply the number by itself. Practice: Solve. 1. 1. 0.6. (9) 4. 10 11 Squares and Square Roots are Inverse Operations. If =y then is a square

More information

Droodle for Geometry Final Exam

Droodle for Geometry Final Exam Droodle for Geometry Final Exam Answer Key by David Pleacher Can you name this droodle? Back in 1953, Roger Price invented a minor art form called the Droodle, which he described as "a borkley-looking

More information

Elizabeth City State University Elizabeth City, North Carolina27909 STATE REGIONAL MATHEMATICS CONTEST COMPREHENSIVE TEST BOOKLET

Elizabeth City State University Elizabeth City, North Carolina27909 STATE REGIONAL MATHEMATICS CONTEST COMPREHENSIVE TEST BOOKLET Elizabeth City State University Elizabeth City, North Carolina27909 2014 STATE REGIONAL MATHEMATICS CONTEST COMPREHENSIVE TEST BOOKLET Directions: Each problem in this test is followed by five suggested

More information

2. Here are some triangles. (a) Write down the letter of the triangle that is. right-angled, ... (ii) isosceles. ... (2)

2. Here are some triangles. (a) Write down the letter of the triangle that is. right-angled, ... (ii) isosceles. ... (2) Topic 8 Shapes 2. Here are some triangles. A B C D F E G (a) Write down the letter of the triangle that is (i) right-angled,... (ii) isosceles.... (2) Two of the triangles are congruent. (b) Write down

More information

A. 100 B. 110 C. 115 D. 145 E. 210

A. 100 B. 110 C. 115 D. 145 E. 210 Practice Quiz Polygons Area Perimeter Volume 1. Two angles of a hexagon measure 140 each. The other four angles are equal in measure. What is the measure of each of the other four equal angles, in degrees?

More information

7. Three friends each order a large

7. Three friends each order a large 005 MATHCOUNTS CHAPTER SPRINT ROUND. We are given the following chart: Cape Bangkok Honolulu London Town Bangkok 6300 6609 5944 Cape 6300,535 5989 Town Honolulu 6609,535 740 London 5944 5989 740 To find

More information

Daily Warmup. - x 2 + x x 2 + x Questions from HW?? (7x - 39) (3x + 17) 1. BD bisects ABC. Find the m ABC.

Daily Warmup. - x 2 + x x 2 + x Questions from HW?? (7x - 39) (3x + 17) 1. BD bisects ABC. Find the m ABC. Daily Warmup Questions from HW?? B 1. BD bisects ABC. Find the m ABC. (3x + 17) (7x - 39) C 2. The figure below is a regular polygon. Find the value of x. - x 2 + x + 43 A D 4x 2 + x - 37 3. The measure

More information

3 In the diagram below, the vertices of DEF are the midpoints of the sides of equilateral triangle ABC, and the perimeter of ABC is 36 cm.

3 In the diagram below, the vertices of DEF are the midpoints of the sides of equilateral triangle ABC, and the perimeter of ABC is 36 cm. 1 In the diagram below, ABC XYZ. 3 In the diagram below, the vertices of DEF are the midpoints of the sides of equilateral triangle ABC, and the perimeter of ABC is 36 cm. Which two statements identify

More information

Geometry Final Exam Review 2012 #

Geometry Final Exam Review 2012 # 1 PART 1: Multiple Choice (40 x 2 points = 80%). PART 2: Open Ended (2 x 10 = 20%) 1) Find the volume and surface area of the following rectangular prisms 2) Find the surface area of the following cylinders.

More information

FSA Geometry EOC Getting ready for. Circles, Geometric Measurement, and Geometric Properties with Equations.

FSA Geometry EOC Getting ready for. Circles, Geometric Measurement, and Geometric Properties with Equations. Getting ready for. FSA Geometry EOC Circles, Geometric Measurement, and Geometric Properties with Equations 2014-2015 Teacher Packet Shared by Miami-Dade Schools Shared by Miami-Dade Schools MAFS.912.G-C.1.1

More information

PRE-JUNIOR CERTIFICATE EXAMINATION, 2010 MATHEMATICS HIGHER LEVEL. PAPER 2 (300 marks) TIME : 2½ HOURS

PRE-JUNIOR CERTIFICATE EXAMINATION, 2010 MATHEMATICS HIGHER LEVEL. PAPER 2 (300 marks) TIME : 2½ HOURS J.20 PRE-JUNIOR CERTIFICATE EXAMINATION, 2010 MATHEMATICS HIGHER LEVEL PAPER 2 (300 marks) TIME : 2½ HOURS Attempt ALL questions. Each question carries 50 marks. Graph paper may be obtained from the superintendent.

More information

Lesson 8.3: Scale Diagrams, page 479

Lesson 8.3: Scale Diagrams, page 479 c) e.g., One factor is that the longer the distance, the less likely to maintain a high constant speed throughout due to fatigue. By the end of the race the speed will usually be lower than at the start.

More information

Grade 8 Math Fourth Six Weeks Three Week Test

Grade 8 Math Fourth Six Weeks Three Week Test Grade 8 Math Fourth Six Weeks Three Week Test 2016-2017 STUDENT NAME TEACHER NAME 1. Determine the distance between (-5, -3) and (7, 6). (8.7D, 8.1C) A. 9 units B. C. D. 10 units 12 units 15 units 2.

More information

(A) $2.53 (B) $5.06 (C) $6.24 (D) $7.42 (E) $8.77

(A) $2.53 (B) $5.06 (C) $6.24 (D) $7.42 (E) $8.77 First AMC 10 2000 2 1. In the year 2001, the United States will host the International Mathematical Olympiad. Let I, M, and O be distinct positive integers such that the product I M O = 2001. What is the

More information

Geometry Topic 4 Quadrilaterals and Coordinate Proof

Geometry Topic 4 Quadrilaterals and Coordinate Proof Geometry Topic 4 Quadrilaterals and Coordinate Proof MAFS.912.G-CO.3.11 In the diagram below, parallelogram has diagonals and that intersect at point. Which expression is NOT always true? A. B. C. D. C

More information

If the sum of two numbers is 4 and their difference is 2, what is their product?

If the sum of two numbers is 4 and their difference is 2, what is their product? 1. If the sum of two numbers is 4 and their difference is 2, what is their product? 2. miles Mary and Ann live at opposite ends of the same road. They plan to leave home at the same time and ride their

More information

SMML MEET 3 ROUND 1

SMML MEET 3 ROUND 1 ROUND 1 1. How many different 3-digit numbers can be formed using the digits 0, 2, 3, 5 and 7 without repetition? 2. There are 120 students in the senior class at Jefferson High. 25 of these seniors participate

More information

Geometry by Jurgensen, Brown and Jurgensen Postulates and Theorems from Chapter 1

Geometry by Jurgensen, Brown and Jurgensen Postulates and Theorems from Chapter 1 Postulates and Theorems from Chapter 1 Postulate 1: The Ruler Postulate 1. The points on a line can be paired with the real numbers in such a way that any two points can have coordinates 0 and 1. 2. Once

More information

3. Given the similarity transformation shown below; identify the composition:

3. Given the similarity transformation shown below; identify the composition: Midterm Multiple Choice Practice 1. Based on the construction below, which statement must be true? 1 1) m ABD m CBD 2 2) m ABD m CBD 3) m ABD m ABC 1 4) m CBD m ABD 2 2. Line segment AB is shown in the

More information

Workout 5 Solutions. Peter S. Simon. Quiz, December 8, 2004

Workout 5 Solutions. Peter S. Simon. Quiz, December 8, 2004 Workout 5 Solutions Peter S. Simon Quiz, December 8, 2004 Problem 1 Marika shoots a basketball until she makes 20 shots or until she has made 60% of her shots, whichever happens first. After she has made

More information

6th FGCU Invitationdl Math Competition

6th FGCU Invitationdl Math Competition 6th FGCU nvitationdl Math Competition Geometry ndividual Test Option (E) for all questions is "None of the above." 1. MC = 12, NC = 6, ABCD is a square. 'h What is the shaded area? Ans ~ (A) 8 (C) 25 2.

More information

0809ge. Geometry Regents Exam Based on the diagram below, which statement is true?

0809ge. Geometry Regents Exam Based on the diagram below, which statement is true? 0809ge 1 Based on the diagram below, which statement is true? 3 In the diagram of ABC below, AB # AC. The measure of!b is 40. 1) a! b 2) a! c 3) b! c 4) d! e What is the measure of!a? 1) 40 2) 50 3) 70

More information

Problem Set #4 Due 5/3 or 5/4 Pd

Problem Set #4 Due 5/3 or 5/4 Pd Geometry Name Problem Set #4 Due 5/3 or 5/4 Pd Directions: To receive full credit, show all required work. Questions may have multiple correct answers. Clearly indicate the answers chosen. For multiple

More information

Fall. Spring. Possible Summer Topics

Fall. Spring. Possible Summer Topics Fall Paper folding: equilateral triangle (parallel postulate and proofs of theorems that result, similar triangles), Trisect a square paper Divisibility by 2-11 and by combinations of relatively prime

More information

Chapter Possibilities: goes to bank, gets money from parent, gets paid; buys lunch, goes shopping, pays a bill,

Chapter Possibilities: goes to bank, gets money from parent, gets paid; buys lunch, goes shopping, pays a bill, 1.1.1: Chapter 1 1-3. Shapes (a), (c), (d), and (e) are rectangles. 1-4. a: 40 b: 6 c: 7 d: 59 1-5. a: y = x + 3 b: y =!x 2 c: y = x 2 + 3 d: y = 3x! 1 1-6. a: 22a + 28 b:!23x! 17 c: x 2 + 5x d: x 2 +

More information

0810ge. Geometry Regents Exam y # (x $ 3) 2 % 4 y # 2x $ 5 1) (0,%4) 2) (%4,0) 3) (%4,%3) and (0,5) 4) (%3,%4) and (5,0)

0810ge. Geometry Regents Exam y # (x $ 3) 2 % 4 y # 2x $ 5 1) (0,%4) 2) (%4,0) 3) (%4,%3) and (0,5) 4) (%3,%4) and (5,0) 0810ge 1 In the diagram below, ABC! XYZ. 3 In the diagram below, the vertices of DEF are the midpoints of the sides of equilateral triangle ABC, and the perimeter of ABC is 36 cm. Which two statements

More information

Lesson 6.1 Skills Practice

Lesson 6.1 Skills Practice Lesson 6.1 Skills Practice Name Date Soon You Will Determine the Right Triangle Connection The Pythagorean Theorem Vocabulary Match each definition to its corresponding term. 1. A mathematical statement

More information

8 th Grade Domain 3: Geometry (28%)

8 th Grade Domain 3: Geometry (28%) 8 th Grade Domain 3: Geometry (28%) 1. XYZ was obtained from ABC by a rotation about the point P. (MGSE8.G.1) Which indicates the correspondence of the vertices? A. B. C. A X, B Y, C Z A Y, B Z, C X A

More information

Grade Tennessee Middle/Junior High School Mathematics Competition 1 of 8

Grade Tennessee Middle/Junior High School Mathematics Competition 1 of 8 Grade 8 2011 Tennessee Middle/Junior High School Mathematics Competition 1 of 8 1. Lynn took a 10-question test. The first four questions were true-false. The last six questions were multiple choice--each

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 17, :30 to 3:30 p.m.

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY. Thursday, August 17, :30 to 3:30 p.m. GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY Thursday, August 17, 2017 12:30 to 3:30 p.m., only Student Name: School Name: The possession or use of any communications

More information

h r c On the ACT, remember that diagrams are usually drawn to scale, so you can always eyeball to determine measurements if you get stuck.

h r c On the ACT, remember that diagrams are usually drawn to scale, so you can always eyeball to determine measurements if you get stuck. ACT Plane Geometry Review Let s first take a look at the common formulas you need for the ACT. Then we ll review the rules for the tested shapes. There are also some practice problems at the end of this

More information

The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in

The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in Grade 7 or higher. Problem C Totally Unusual The dice

More information

Worksheet 10 Memorandum: Construction of Geometric Figures. Grade 9 Mathematics

Worksheet 10 Memorandum: Construction of Geometric Figures. Grade 9 Mathematics Worksheet 10 Memorandum: Construction of Geometric Figures Grade 9 Mathematics For each of the answers below, we give the steps to complete the task given. We ve used the following resources if you would

More information

GEO: Sem 1 Unit 1 Review of Geometry on the Coordinate Plane Section 1.6: Midpoint and Distance in the Coordinate Plane (1)

GEO: Sem 1 Unit 1 Review of Geometry on the Coordinate Plane Section 1.6: Midpoint and Distance in the Coordinate Plane (1) GEO: Sem 1 Unit 1 Review of Geometr on the Coordinate Plane Section 1.6: Midpoint and Distance in the Coordinate Plane (1) NAME OJECTIVES: WARM UP Develop and appl the formula for midpoint. Use the Distance

More information

E G 2 3. MATH 1012 Section 8.1 Basic Geometric Terms Bland

E G 2 3. MATH 1012 Section 8.1 Basic Geometric Terms Bland MATH 1012 Section 8.1 Basic Geometric Terms Bland Point A point is a location in space. It has no length or width. A point is represented by a dot and is named by writing a capital letter next to the dot.

More information

#2. Rhombus ABCD has an area of 464 square units. If DB = 18 units, find AC. #3. What is the area of the shaded sector if the measure of <ABC is 80?

#2. Rhombus ABCD has an area of 464 square units. If DB = 18 units, find AC. #3. What is the area of the shaded sector if the measure of <ABC is 80? 1 Pre-AP Geometry Chapter 12 Test Review Standards/Goals: F.1.a.: I can find the perimeter and area of common plane figures, such as: triangles, quadrilaterals, regular polygons, and irregular figures,

More information

1999 Mathcounts National Sprint Round Solutions

1999 Mathcounts National Sprint Round Solutions 999 Mathcounts National Sprint Round Solutions. Solution: 5. A -digit number is divisible by if the sum of its digits is divisible by. The first digit cannot be 0, so we have the following four groups

More information

Students apply the Pythagorean Theorem to real world and mathematical problems in two dimensions.

Students apply the Pythagorean Theorem to real world and mathematical problems in two dimensions. Student Outcomes Students apply the Pythagorean Theorem to real world and mathematical problems in two dimensions. Lesson Notes It is recommended that students have access to a calculator as they work

More information

Analytic Geometry EOC Study Booklet Geometry Domain Units 1-3 & 6

Analytic Geometry EOC Study Booklet Geometry Domain Units 1-3 & 6 DOE Assessment Guide Questions (2015) Analytic Geometry EOC Study Booklet Geometry Domain Units 1-3 & 6 Question Example Item #1 Which transformation of ΔMNO results in a congruent triangle? Answer Example

More information

2. A number x is 2 more than the product of its reciprocal and its additive inverse. In which interval does the number lie?

2. A number x is 2 more than the product of its reciprocal and its additive inverse. In which interval does the number lie? 2 nd AMC 2001 2 1. The median of the list n, n + 3, n + 4, n + 5, n + 6, n + 8, n +, n + 12, n + 15 is. What is the mean? (A) 4 (B) 6 (C) 7 (D) (E) 11 2. A number x is 2 more than the product of its reciprocal

More information

16. DOK 1, I will succeed." In this conditional statement, the underlined portion is

16. DOK 1, I will succeed. In this conditional statement, the underlined portion is Geometry Semester 1 REVIEW 1. DOK 1 The point that divides a line segment into two congruent segments. 2. DOK 1 lines have the same slope. 3. DOK 1 If you have two parallel lines and a transversal, then

More information

FAU Math Circle 10/3/2015

FAU Math Circle 10/3/2015 FAU Math Circle 10/3/2015 Math Warm Up The National Mathematics Salute!!! (Ana) What is the correct way of saying it: 5 and 6 are 12 or 5 and 6 is 12? Solution. 11 and 5 are 6 are 11. For the next three

More information

Square Roots and the Pythagorean Theorem

Square Roots and the Pythagorean Theorem UNIT 1 Square Roots and the Pythagorean Theorem Just for Fun What Do You Notice? Follow the steps. An example is given. Example 1. Pick a 4-digit number with different digits. 3078 2. Find the greatest

More information

Eighth Grade Middle School Mathematics Contest

Eighth Grade Middle School Mathematics Contest Eighth Grade Middle School Mathematics Contest 2002 1 1. If two sides of a triangle have lengths of 3 feet and 4 feet, then what must be true about the length of the third side? a. It must be 5 feet. b.

More information

6-1. Angles of Polygons. Lesson 6-1. What You ll Learn. Active Vocabulary

6-1. Angles of Polygons. Lesson 6-1. What You ll Learn. Active Vocabulary 6-1 Angles of Polygons What You ll Learn Skim Lesson 6-1. Predict two things that you expect to learn based on the headings and figures in the lesson. 1. 2. Lesson 6-1 Active Vocabulary diagonal New Vocabulary

More information

3.3. You wouldn t think that grasshoppers could be dangerous. But they can damage

3.3. You wouldn t think that grasshoppers could be dangerous. But they can damage Grasshoppers Everywhere! Area and Perimeter of Parallelograms on the Coordinate Plane. LEARNING GOALS In this lesson, you will: Determine the perimeter of parallelograms on a coordinate plane. Determine

More information

JK XY LJ LJ ZX KL KL YZ LJ KL YX KJ. Final Exam Review Modules 10 16, 18 19

JK XY LJ LJ ZX KL KL YZ LJ KL YX KJ. Final Exam Review Modules 10 16, 18 19 Geometry Final Exam Review Modules 10 16, 18 19 Use the following information for 1 3. The figure is symmetric about the x axis. Name: 6. In this figure ~. Which statement is not true? A JK XY LJ ZX C

More information

The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in

The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in The problems in this booklet are organized into strands. A problem often appears in multiple strands. The problems are suitable for most students in Grade 7 or higher. Problem C Retiring and Hiring A

More information

Geometer s Skethchpad 8th Grade Guide to Learning Geometry

Geometer s Skethchpad 8th Grade Guide to Learning Geometry Geometer s Skethchpad 8th Grade Guide to Learning Geometry This Guide Belongs to: Date: Table of Contents Using Sketchpad - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

A portfolio of counter-examples

A portfolio of counter-examples A portfolio of counter-examples With answers Consider each of the following claims. All of them are false, and most are based on common misconceptions. Devise a counter example to show the claim is false.

More information

GEOMETRY (Common Core)

GEOMETRY (Common Core) GEOMETRY (COMMON CORE) Network 603 PRACTICE REGENTS HIGH SCHOOL EXAMINATION GEOMETRY (Common Core) Practice Exam Student Name: School Name: The possession or use of any communications device is strictly

More information

Meet #5 March Intermediate Mathematics League of Eastern Massachusetts

Meet #5 March Intermediate Mathematics League of Eastern Massachusetts Meet #5 March 2008 Intermediate Mathematics League of Eastern Massachusetts Meet #5 March 2008 Category 1 Mystery 1. In the diagram to the right, each nonoverlapping section of the large rectangle is

More information

KCATM Geometry

KCATM Geometry Name School KCATM Geometry 9 10 2013 1) Find the minimum perimeter of a rectangle whose area is 169 square meters. a) 42 meters b) 13 meters c) 26 meters d) 52 meters 2) Find the coordinates of the midpoint

More information

Winter Quarter Competition

Winter Quarter Competition Winter Quarter Competition LA Math Circle (Advanced) March 13, 2016 Problem 1 Jeff rotates spinners P, Q, and R and adds the resulting numbers. What is the probability that his sum is an odd number? Problem

More information

Park Forest Math Team. Meet #2. Geometry. Self-study Packet

Park Forest Math Team. Meet #2. Geometry. Self-study Packet Park Forest Math Team Meet #2 Self-study Packet Problem Categories for this Meet: 1. Mystery: Problem solving 2. : ngle measures in plane figures including supplements and complements 3. Number Theory:

More information

Fair Game Review. Chapter 4. Name Date. Find the area of the square or rectangle Find the area of the patio.

Fair Game Review. Chapter 4. Name Date. Find the area of the square or rectangle Find the area of the patio. Name Date Chapter Fair Game Review Find the area of the square or rectangle... ft cm 0 ft cm.. in. d in. d. Find the area of the patio. ft 0 ft Copright Big Ideas Learning, LLC Big Ideas Math Green Name

More information

5 th AMC 10 B How many two-digit positive integers have at least one 7 as a digit? (A) 10 (B) 18 (C) 19 (D) 20 (E) 30

5 th AMC 10 B How many two-digit positive integers have at least one 7 as a digit? (A) 10 (B) 18 (C) 19 (D) 20 (E) 30 5 th AMC 10 B 004 1. Each row of the Misty Moon Amphitheater has seats. Rows 1 through are reserved for a youth club. How many seats are reserved for this club? (A) 97 (B) 0 (C) 6 (D) 96 (E) 76. How many

More information

1. 1 Square Numbers and Area Models (pp. 6-10)

1. 1 Square Numbers and Area Models (pp. 6-10) Math 8 Unit 1 Notes Name: 1. 1 Square Numbers and Area Models (pp. 6-10) square number: the product of a number multiplied by itself; for example, 25 is the square of 5 perfect square: a number that is

More information

Warm-Up Exercises. Find the value of x. 1. ANSWER 65 ANSWER 120

Warm-Up Exercises. Find the value of x. 1. ANSWER 65 ANSWER 120 Warm-Up Exercises Find the value of x. 1. 65 2. 120 Warm-Up Exercises Find the value of x. 3. 70 EXAMPLE Warm-Up 1Exercises Identify quadrilaterals Quadrilateral ABCD has at least one pair of opposite

More information

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY

The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION GEOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION Large-Type Edition GEOMETRY Friday, August 17, 2018 12:30 to 3:30 p.m., only Student Name: School Name: The possession or use of

More information

Chapter 9. Q1. A diagonal of a parallelogram divides it into two triangles of equal area.

Chapter 9. Q1. A diagonal of a parallelogram divides it into two triangles of equal area. Chapter 9 Q1. A diagonal of a parallelogram divides it into two triangles of equal area. Q2. Parallelograms on the same base and between the same parallels are equal in area. Q3. A parallelogram and a

More information

LESSON 10 PRACTICE PROBLEMS

LESSON 10 PRACTICE PROBLEMS LESSON 10 PRACTICE PROBLEMS 1. Find the circumference or perimeter given each described situation. Include a drawing of the shape with the included information. Show all work. As in the examples, if units

More information

Constructing Perpendiculars to a Line. Finding the Right Line. Draw a line and a point labeled P not on the line, as shown above.

Constructing Perpendiculars to a Line. Finding the Right Line. Draw a line and a point labeled P not on the line, as shown above. Page 1 of 5 3.3 Intelligence plus character that is the goal of true education. MARTIN LUTHER KING, JR. Constructing Perpendiculars to a Line If you are in a room, look over at one of the walls. What is

More information

b. Draw a line and a circle that intersect at exactly one point. When this happens, the line is called a tangent.

b. Draw a line and a circle that intersect at exactly one point. When this happens, the line is called a tangent. 6-1. Circles can be folded to create many different shapes. Today, you will work with a circle and use properties of other shapes to develop a three-dimensional shape. Be sure to have reasons for each

More information

9-1: Circle Basics GEOMETRY UNIT 9. And. 9-2: Tangent Properties

9-1: Circle Basics GEOMETRY UNIT 9. And. 9-2: Tangent Properties 9-1: Circle Basics GEOMETRY UNIT 9 And 9-2: Tangent Properties CIRCLES Content Objective: Students will be able to solve for missing lengths in circles. Language Objective: Students will be able to identify

More information

Math 9 - Similar and Transformations Unit Assignment

Math 9 - Similar and Transformations Unit Assignment Math 9 - Similar and Transformations Unit Assignment Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Determine the scale factor for this scale diagram.

More information

2010 Pascal Contest (Grade 9)

2010 Pascal Contest (Grade 9) Canadian Mathematics Competition n activity of the Centre for Education in Mathematics and Computing, University of Waterloo, Waterloo, Ontario 2010 Pascal Contest (Grade 9) Thursday, February 25, 2010

More information

MEA 501 LESSON _NOTES Period. CRS SKILL LEVEL DESCRIPTION Level 1 ALL students must MEA 301 Compute the perimeter of polygons when all

MEA 501 LESSON _NOTES Period. CRS SKILL LEVEL DESCRIPTION Level 1 ALL students must MEA 301 Compute the perimeter of polygons when all MEA 501 LESSON _NOTES Period Name CRS SKILL LEVEL DESCRIPTION Level 1 ALL students must MEA 301 Compute the perimeter of polygons when all attain mastery at this level side lengths are given MEA 302 Compute

More information

Find the area and perimeter of each figure. Round to the nearest tenth if necessary.

Find the area and perimeter of each figure. Round to the nearest tenth if necessary. Find the area and perimeter of each figure. Round to the nearest tenth if necessary. 1. Use the Pythagorean Theorem to find the height h, of the parallelogram. Each pair of opposite sides of a parallelogram

More information

AREA See the Math Notes box in Lesson for more information about area.

AREA See the Math Notes box in Lesson for more information about area. AREA..1.. After measuring various angles, students look at measurement in more familiar situations, those of length and area on a flat surface. Students develop methods and formulas for calculating the

More information

Areas of Tropezoids, Rhombuses, and Kites

Areas of Tropezoids, Rhombuses, and Kites 102 Areas of Tropezoids, Rhombuses, and Kites MathemaHcs Florida Standards MAFS.912.G-MG.1.1 Use geometric shapes, their measures, and their properties to describe objects. MP1. MP3, MP 4,MP6 Objective

More information

(A) Circle (B) Polygon (C) Line segment (D) None of them (A) (B) (C) (D) (A) Understanding Quadrilaterals <1M>

(A) Circle (B) Polygon (C) Line segment (D) None of them (A) (B) (C) (D) (A) Understanding Quadrilaterals <1M> Understanding Quadrilaterals 1.A simple closed curve made up of only line segments is called a (A) Circle (B) Polygon (C) Line segment (D) None of them 2.In the following figure, which of the polygon

More information

2014 Edmonton Junior High Math Contest ANSWER KEY

2014 Edmonton Junior High Math Contest ANSWER KEY Print ID # School Name Student Name (Print First, Last) 100 2014 Edmonton Junior High Math Contest ANSWER KEY Part A: Multiple Choice Part B (short answer) Part C(short answer) 1. C 6. 10 15. 9079 2. B

More information

th Grade Test. A. 128 m B. 16π m C. 128π m

th Grade Test. A. 128 m B. 16π m C. 128π m 1. Which of the following is the greatest? A. 1 888 B. 2 777 C. 3 666 D. 4 555 E. 6 444 2. How many whole numbers between 1 and 100,000 end with the digits 123? A. 50 B. 76 C. 99 D. 100 E. 101 3. If the

More information

Assignment Assignment for Lesson 3.1

Assignment Assignment for Lesson 3.1 Assignment Assignment for Lesson.1 Name Date Weaving a Rug Area and Perimeter of Rectangles and Squares 1. An artist is weaving a rectangular rug to match the pattern shown in the figure. Use the figure

More information

What is the sum of the positive integer factors of 12?

What is the sum of the positive integer factors of 12? 1. $ Three investors decided to buy a time machine, with each person paying an equal share of the purchase price. If the purchase price was $6000, how much did each investor pay? $6,000 2. What integer

More information

(A) Circle (B) Polygon (C) Line segment (D) None of them

(A) Circle (B) Polygon (C) Line segment (D) None of them Understanding Quadrilaterals 1.The angle between the altitudes of a parallelogram, through the same vertex of an obtuse angle of the parallelogram is 60 degree. Find the angles of the parallelogram.

More information

METHOD 1: METHOD 2: 4D METHOD 1: METHOD 2:

METHOD 1: METHOD 2: 4D METHOD 1: METHOD 2: 4A Strategy: Count how many times each digit appears. There are sixteen 4s, twelve 3s, eight 2s, four 1s, and one 0. The sum of the digits is (16 4) + + (8 2) + (4 1) = 64 + 36 +16+4= 120. 4B METHOD 1:

More information

Geometry - Chapter 6 Review

Geometry - Chapter 6 Review Class: Date: Geometry - Chapter 6 Review 1. Find the sum of the measures of the angles of the figure. 4. Find the value of x. The diagram is not to scale. A. 1260 B. 900 C. 540 D. 720 2. The sum of the

More information

1. Express the reciprocal of 0.55 as a common fraction. 1.

1. Express the reciprocal of 0.55 as a common fraction. 1. Blitz, Page 1 1. Express the reciprocal of 0.55 as a common fraction. 1. 2. What is the smallest integer larger than 2012? 2. 3. Each edge of a regular hexagon has length 4 π. The hexagon is 3. units 2

More information

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST

UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST UNIVERSITY OF NORTHERN COLORADO MATHEMATICS CONTEST First Round For all Colorado Students Grades 7-12 October 31, 2009 You have 90 minutes no calculators allowed The average of n numbers is their sum divided

More information

1-4. a: 40 b: 6 c: 7 d: a: 3 b: 5 c: 6 d: 2

1-4. a: 40 b: 6 c: 7 d: a: 3 b: 5 c: 6 d: 2 Lesson 1.1.1 1-3. Shapes (a), (c), (d), and (e) are rectangles. 1-4. a: 40 b: 6 c: 7 d: 59 1-5. a: 3 b: 5 c: 6 d: 2 1-6. a: 22a + 28 b: 23x 17 c: x 2 + 5x d: x 2 + 8x 1-7. Possibilities: Goes to bank,

More information

Geometry. Warm Ups. Chapter 11

Geometry. Warm Ups. Chapter 11 Geometry Warm Ups Chapter 11 Name Period Teacher 1 1.) Find h. Show all work. (Hint: Remember special right triangles.) a.) b.) c.) 2.) Triangle RST is a right triangle. Find the measure of angle R. Show

More information

June 2016 Regents GEOMETRY COMMON CORE

June 2016 Regents GEOMETRY COMMON CORE 1 A student has a rectangular postcard that he folds in half lengthwise. Next, he rotates it continuously about the folded edge. Which three-dimensional object below is generated by this rotation? 4) 2

More information

Kansas City Area Teachers of Mathematics 2011 KCATM Contest

Kansas City Area Teachers of Mathematics 2011 KCATM Contest Kansas City Area Teachers of Mathematics 2011 KCATM Contest GEOMETRY AND MEASUREMENT TEST GRADE 4 INSTRUCTIONS Do not open this booklet until instructed to do so. Time limit: 15 minutes You may use calculators

More information

3 Kevin s work for deriving the equation of a circle is shown below.

3 Kevin s work for deriving the equation of a circle is shown below. June 2016 1. A student has a rectangular postcard that he folds in half lengthwise. Next, he rotates it continuously about the folded edge. Which three-dimensional object below is generated by this rotation?

More information

Print n Play Collection. Of the 12 Geometrical Puzzles

Print n Play Collection. Of the 12 Geometrical Puzzles Print n Play Collection Of the 12 Geometrical Puzzles Puzzles Hexagon-Circle-Hexagon by Charles W. Trigg Regular hexagons are inscribed in and circumscribed outside a circle - as shown in the illustration.

More information

HANOI STAR - APMOPS 2016 Training - PreTest1 First Round

HANOI STAR - APMOPS 2016 Training - PreTest1 First Round Asia Pacific Mathematical Olympiad for Primary Schools 2016 HANOI STAR - APMOPS 2016 Training - PreTest1 First Round 2 hours (150 marks) 24 Jan. 2016 Instructions to Participants Attempt as many questions

More information