CSE Day 2016 COMPUTE Exam. Time: You will have 50 minutes to answer as many of the problems as you want to.

Size: px
Start display at page:

Download "CSE Day 2016 COMPUTE Exam. Time: You will have 50 minutes to answer as many of the problems as you want to."

Transcription

1 CSE Day 2016 COMPUTE Exam Name: School: There are 21 multiple choice problems in this event. Time: You will have 50 minutes to answer as many of the problems as you want to. Scoring: You will get 4 points for each correct answer, 1 point for each unanswered question, and 0 points for each incorrect answer. You will be give credit for questions as correct. Thus there is a max score of 100 points on this event, and you would get 37 points if you turned in a blank answer sheet. This front page will be your answer sheet. You need to turn it in at the of the time. You may keep the contest problems. Answers: 1: 11: 21: 2: 12: 22: +4 3: 13: 23: +4 4: 14: 24: +4 5: 15: 25: +4 6: 16: 7: 17: 8: 18: 9: 19: 10: 20: 1

2 1 The cars A, B, C, D, E, F, G, H, I arrived at a toll station on a highway in the order listed, with A being first. They each pulled into one of the multiple booths available to pay their toll, not necessarily the first available one. When they leave they are observed to be in the following order G, E, A, I, C, H, B, F, D. What is the minimum number of toll booths that need to be open for this to occur? There are two kids, Sara and Karim. Sara has blue paint: B, and Karim has red paint: R. They have a sequence of 8 wooden blocks that start unpainted: U. They have also decided on a list (3, 7, 2). Karim and Sara have decided to paint these blocks by starting at di erent times and progressing at a rate of their individual choosing, individually removing the first number (n) from the list, and then proceeding to paint every nth block, starting from the first, their color. If they come to a block that the other individual is painting, they will wait until that individual is done, and then proceed to paint over the block with their color. Which of these options is not a possible outcome? UBRBURRB URBRUBRR UBBBUBRB URBRURBR UBRBUBBB 3 We want to completely fill the white space in this grid with squares that do not overlap. The squares can be of di erent sizes. What is the fewest number of squares that are needed to accomplish this? In number bases, you have di erent place values, and a range of numbers that can go into any of these places. In this number system, you can only use the digits 0 and 1. The place values are based upon the Fibonacci numbers: fib fib = fib fib fib A, B, and C neither A, B, C, nor D 2

3 5 In this puzzle, each row and each column must contain each of the numbers 1, 2, 3, 4. Further, when applying the operator printed in each bounded region to all the numbers you enter into the region, starting with the largest number and working to the smaller ones, the result must equal the value which is also printed in the region. (for example +9 would mean that the numbers in the bounded region, when added, equal 9.) What is the product of the numbers on the diagonal of the solution, starting in the upper left and going to the lower right corners? none of these 6 A hotel has an unusual way of numbering their rooms. The first digit of the room number is the floor and the second is it s position in the listing of that floors rooms by how far they are from the elevator. The hotel can represent all it s rooms as two digit numbers when following this system. The person at the front desk would like you to order the room keys so that the lower floors are before the upper floors as long as the distance to walk is not greater on the lower floors. What would be the proper order for these room keys? The current rooms available: None of the above. 7 There are 10 students in your schools AP Computer Science Principles class (Alexis, Becky, Carl, Dennis, Elise, Fred, Gina, Han, Imus, Janna). The girls in the class are (Alexis, Becky, Elise, Gina, Janna). The students who are taller than 5 are (Becky, Carl, Elise, Fred, Han). The students who are taking psychology are (Alexis, Becky, Dennis, Fred, Imus). Who are the Boys who are neither taller than 5 feet nor not taking psychology? (Carl, Elise, Gina, Han, Janna) (Dennis, Fred, Imus) (Dennis, Imus) (Carl, Han) None of the above are correct 3

4 8 A robot needs help getting out of a maze. Unfortunately, its memory is broken, and it can only remember three instructions. What set of instructions, if repeated lessly, would get the robot to the of the maze? Note that the robot starts on the start tile oriented in the direction of the arrow. When the robot moves right one or left one, it adjusts its orientation (i.e. it turns in the indicated direction, then moves forward). Start Stop Forward one, right one Forward one, right one, left one Forward two, right one Right one, forward one None of the above. 9 Which of the circuits below are logically equivalent? Use the above as reference. Circuits 1 & 2 Circuits 2 & 3 Circuits 1 & 3 All of the above None of the above 4

5 10 For any simple polygon (its edges do not intersect) with four or more vertices, you can add some line segments such that this polygon will be completely divided into triangles. One way of doing this, has these line segments have their points on vertices of the polygon. Using this method, which of the following statements is false? If the polygon has n vertices, this will create n - 2 triangles. If the polygon has n vertices, there can be at most n/2, rounded down, triangles with two sides shared with the polygon. If the polygon has n vertices, this will take exactly n - 3 vertices to fully accomplish. There must be at least two triangles, each with two sides that are shared with the polygon. Two of these statements are false. 11 In the two examples below that calculate the value of the nth Fibonacci number, what is the positive di erence in the number of times they print something out when Fibonacci(5) is called? Fibonacci(n) Fibonacci(n) print n array rememberfib // all zeroes if n apple1 rememberfib[0] = 1 return 1 rememberfib[1] = 1 else return FibonacciCompute(n) return Fibonacci(n-1) + Fibonacci(n-2) If FibonacciCompute(n) print n if(rememberfib[n] == 0) rememberfib[n] = FibonnaciCompute[n-1] + FibonacciCompute[n-2] If return rememberfib[n] You take your pencil and put it on a sheet of paper, move it around, and then return it to the place you started, without lifting it. What is the minimum number of colors it would take, for any such drawing, to color every closed space within the drawing such that no two spaces colored the same, share a boundary edge Noe of the above. 5

6 4 13 This is a 4x4 sudoku puzzle. Each row, column, and quadrant must have the digits 1, 2, 3, and 4 appearing exactly once. Find the sum of the values in the corners of the sudoku puzzle Suppose great(a,b) outputs the larger of the two values a, b, and less(a,b) outputs the lesser of the two values. Which of the following statements is true if great(great(a,b), great(less(b,c),e)) is evaluated? cwillneverbereturned It will always return the largest of a, b, c, or e B will always be returned if b a If b c, b will never be returned None of the above is correct 15 If you are not tricked by the problem and you can eliminate two options from the choices for a problem, then it benefits you to guess. Which of the following statements is equivalent to the previous statement? If doesn t benefit you to guess, you couldn t eliminate two options or were tricked If you did guess, you were tricked If you were not tricked but didn t guess, you eliminate two options If you were tricked, then you would benefit from guessing None of the above 6

7 16 Romeo and Juliet are on opposite s of the city and want to meet up. They can t let anyone see them, so they must travel through an underground tunnel system. Each dot marks an intersection in the tunnels, and the number by each connecting edge indicates how many minutes it takes to travel through the tunnel. What is the shortest amount of time possible for Romeo and Juliet to meet at the same intersection? 8minutes 10 minutes 11 minutes 7minutes 9minutes 17 If you know that these 3 statements are true for a line of people: 1) Sue is behind Mary. 2) Colin is directly in front of Nick. 3) Nick is 2 people behind Steve. Which of these statements could be true? Steve is in front of Mary. Colin is in front of Steve. Steve is behind Mary. A and C all of the above. 7

8 18 If a person were following these instructions, which of these necklaces would it not be possible to create? 19 A frog is trapped in a well. Each day, he manages to hop up two feet, but slides back a foot at night when he falls asleep. What gets printed when getout(6) is called? getout(depth) print depth-2 if(depth < 0) sleep(depth-2) If sleep(depth) getout(depth+1) print depth None of the above 8

9 20 An army of frogs with limited horizontal jumping ability is traversing a swamp, the path is narrow so they hop in a single file line. Occasionally a hole appears in the path. The holes are crossed in the following manner. 1. as many frogs that can fit jump into the hole 2. the rest of the army crosses 3. the frogs jump out of the hole The images on the right demonstrate this process. In what what order do the frogs find themselves in after they cross the third hole? None of the above 21 An oil company is asking to build a new pipeline. You have been asked to determine what the current maximum amount of oil, in a day, that they can s from their oil well to their refinery. You have been given a graph of their pipe network annotated with the amount of oil that can pass through each section in a day (in millions of barrels.)

Grade 6 Math Circles February 15, 2012 Math Puzzles

Grade 6 Math Circles February 15, 2012 Math Puzzles 1 University of Waterloo Faculty of Mathematics Centre for Education in Mathematics and Computing Grade 6 Math Circles February 15, 2012 Math Puzzles Problem Solving Tips 1) Read and re-read the question.

More information

A = 5; B = 4; C = 3; B = 2; E = 1; F = 26; G = 25; H = 24;.; Y = 7; Z = 6 D

A = 5; B = 4; C = 3; B = 2; E = 1; F = 26; G = 25; H = 24;.; Y = 7; Z = 6 D 1. message is coded from letters to numbers using this code: = 5; B = 4; = 3; B = 2; E = 1; F = 26; G = 25; H = 24;.; Y = 7; Z = 6 When the word MISSISSIPPI is coded, what is the sum of all eleven numbers?.

More information

Grade 6 Test pool

Grade 6 Test pool Grade 6 Test 2005. On the map shown below, the intervals all represent the same distanc The mall is 2 miles from Tina s hom How far is the pool from Tina s home? Tina s home 2 miles mall pool 2 miles 2

More information

Grade 6 Math Circles March 7/8, Magic and Latin Squares

Grade 6 Math Circles March 7/8, Magic and Latin Squares Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles March 7/8, 2017 Magic and Latin Squares Today we will be solving math and logic puzzles!

More information

.VP CREATING AN INVENTED ONE POINT PERSPECTIVE SPACE

.VP CREATING AN INVENTED ONE POINT PERSPECTIVE SPACE PAGE ONE Organize an invented 1 point perspective drawing in the following order: 1 Establish an eye level 2 Establish a Center Line Vision eye level vision Remember that the vanishing point () in one

More information

ShillerMath Book 1 Test Answers

ShillerMath Book 1 Test Answers LESSON 1-56 REVIEW TEST #1-1 Now we will have a test to see what you have learned. This will help me understand what I need to do to make our math work more fun. You may take as much time and use whatever

More information

2. To receive credit on any problem, you must show work that explains how you obtained your answer or you must explain how you obtained your answer.

2. To receive credit on any problem, you must show work that explains how you obtained your answer or you must explain how you obtained your answer. Math 50, Spring 2006 Test 2 PRINT your name on the back of the test. Circle your class: MW @ 11 TTh @ 2:30 Directions 1. Time limit: 50 minutes. 2. To receive credit on any problem, you must show work

More information

Grade 7, Unit 1 Practice Problems - Open Up Resources

Grade 7, Unit 1 Practice Problems - Open Up Resources Grade 7, Unit 1 Practice Problems - Open Up Resources Scale Drawings Lesson 1 Here is a gure that looks like the letter A, along with several other gures. Which gures are scaled copies of the original

More information

Grade 6 Math Circles. Logic Puzzles, Brain Teasers and Math Games

Grade 6 Math Circles. Logic Puzzles, Brain Teasers and Math Games Faculty of Mathematics Waterloo, Ontario NL G Centre for Education in Mathematics and Computing Grade 6 Math Circles October 0/, 07 Logic Puzzles, Brain Teasers and Math Games Introduction Logic puzzles,

More information

State Math Contest (Junior)

State Math Contest (Junior) Name: Student ID: State Math Contest (Junior) Instructions: Do not turn this page until your proctor tells you. Enter your name, grade, and school information following the instructions given by your proctor.

More information

13 Searching for Pattern

13 Searching for Pattern 13 Searching for Pattern 13.1 Pictorial Logic In this section we will see how to continue patterns involving simple shapes. Example Continue these patterns by drawing the next 5 shapes in each case: Solution

More information

Once you get a solution draw it below, showing which three pennies you moved and where you moved them to. My Solution:

Once you get a solution draw it below, showing which three pennies you moved and where you moved them to. My Solution: Arrange 10 pennies on your desk as shown in the diagram below. The challenge in this puzzle is to change the direction of that the triangle is pointing by moving only three pennies. Once you get a solution

More information

Problem of the Month. Miles of Tiles. 5 in. Problem of the Month Miles of Tiles Page 1

Problem of the Month. Miles of Tiles. 5 in. Problem of the Month Miles of Tiles Page 1 Problem of the Month Miles of Tiles Level A: You have a picture frame. You would like to decorate the frame by gluing tiles on it. The frame is a square shape. 14 in The frame is 1 inch wide all around.

More information

Chapter 4: Patterns and Relationships

Chapter 4: Patterns and Relationships Chapter : Patterns and Relationships Getting Started, p. 13 1. a) The factors of 1 are 1,, 3,, 6, and 1. The factors of are 1,,, 7, 1, and. The greatest common factor is. b) The factors of 16 are 1,,,,

More information

The learner will recognize and use geometric properties and relationships.

The learner will recognize and use geometric properties and relationships. The learner will recognize and use geometric properties and relationships. Notes 3and textbook 3.01 Use the coordinate system to describe the location and relative position of points and draw figures in

More information

Do not duplicate or distribute without written permission from CMKC!

Do not duplicate or distribute without written permission from CMKC! INTERNATIONAL CONTEST-GAME MATH KANGAROO CANADA, 2018 INSTRUCTIONS GRADE 5-12 1. You have 75 minutes to solve 30 multiple choice problems. For each problem, circle only one of the proposed five choices.

More information

Outcome 7 Review. *Recall that -1 (-5) means

Outcome 7 Review. *Recall that -1 (-5) means Outcome 7 Review Level 2 Determine the slope of a line that passes through A(3, -5) and B(-2, -1). Step 1: Remember that ordered pairs are in the form (x, y). Label the points so you can substitute into

More information

Melon s Puzzle Packs

Melon s Puzzle Packs Melon s Puzzle Packs Volume I: Slitherlink By MellowMelon; http://mellowmelon.wordpress.com January, TABLE OF CONTENTS Tutorial : Classic Slitherlinks ( 5) : 6 Variation : All Threes (6 8) : 9 Variation

More information

TEAM CONTEST. English Version. Time 60 minutes 2009/11/30. Instructions:

TEAM CONTEST. English Version. Time 60 minutes 2009/11/30. Instructions: Instructions: Time 60 minutes /11/30 Do not turn to the first page until you are told to do so. Remember to write down your team name in the space indicated on every page. There are 10 problems in the

More information

Cayley Contest (Grade 10) Thursday, February 25, 2010

Cayley Contest (Grade 10) Thursday, February 25, 2010 Canadian Mathematics Competition An activity of the Centre for Education in Mathematics and Computing, University of Waterloo, Waterloo, Ontario Cayley Contest (Grade 10) Thursday, February 2, 2010 Time:

More information

This chapter gives you everything you

This chapter gives you everything you Chapter 1 One, Two, Let s Sudoku In This Chapter Tackling the basic sudoku rules Solving squares Figuring out your options This chapter gives you everything you need to know to solve the three different

More information

Pascal Contest (Grade 9)

Pascal Contest (Grade 9) The CENTRE for EDUCATION in MATHEMATICS and COMPUTING cemc.uwaterloo.ca Pascal Contest (Grade 9) Thursday, February 20, 201 (in North America and South America) Friday, February 21, 201 (outside of North

More information

Students use absolute value to determine distance between integers on the coordinate plane in order to find side lengths of polygons.

Students use absolute value to determine distance between integers on the coordinate plane in order to find side lengths of polygons. Student Outcomes Students use absolute value to determine distance between integers on the coordinate plane in order to find side lengths of polygons. Lesson Notes Students build on their work in Module

More information

Multiplication and Division

Multiplication and Division E Student Book 6 7 = 4 Name Series E Contents Topic Multiplication facts (pp. 7) 5 and 0 times tables and 4 times tables 8 times table and 6 times tables Date completed Topic Using known facts (pp. 8 )

More information

Solving Problems. PS1 Use and apply mathematics to solve problems, communicate and reason Year 1. Activities. PS1.1 Number stories 1.

Solving Problems. PS1 Use and apply mathematics to solve problems, communicate and reason Year 1. Activities. PS1.1 Number stories 1. PS1 Use and apply mathematics to solve problems, communicate and reason Year 1 PS1.1 Number stories 1 PS1.2 Difference arithmagons PS1.3 Changing orders PS1.4 Making shapes PS1.5 Odd or even? PS1.6 Odd

More information

Daniel Plotnick. November 5 th, 2017 Mock (Practice) AMC 8 Welcome!

Daniel Plotnick. November 5 th, 2017 Mock (Practice) AMC 8 Welcome! November 5 th, 2017 Mock (Practice) AMC 8 Welcome! 2011 = prime number 2012 = 2 2 503 2013 = 3 11 61 2014 = 2 19 53 2015 = 5 13 31 2016 = 2 5 3 2 7 1 2017 = prime number 2018 = 2 1009 2019 = 3 673 2020

More information

BMT 2018 Combinatorics Test Solutions March 18, 2018

BMT 2018 Combinatorics Test Solutions March 18, 2018 . Bob has 3 different fountain pens and different ink colors. How many ways can he fill his fountain pens with ink if he can only put one ink in each pen? Answer: 0 Solution: He has options to fill his

More information

UNIT 1 Indices Activities

UNIT 1 Indices Activities UNIT 1 Indices Activities Activities 1.1 Multiplication Table 1.2 Secret Letter 1.3 Last Digit 1.4 Diagonals 1.5 Stepping Stones 1.6 Factors 1.7 Sieve of Eratosthenes 1.8 Chain Letters 1.9 Define 1.10

More information

Do not open this exam until told to do so.

Do not open this exam until told to do so. Do not open this exam until told to do so. Pepperdine Math Day November 15, 2014 Exam Instructions and Rules 1. Write the following information on your Scantron form: Name in NAME box Grade in SUBJECT

More information

MATH CIRCLE, 10/13/2018

MATH CIRCLE, 10/13/2018 MATH CIRCLE, 10/13/2018 LARGE SOLUTIONS 1. Write out row 8 of Pascal s triangle. Solution. 1 8 28 56 70 56 28 8 1. 2. Write out all the different ways you can choose three letters from the set {a, b, c,

More information

Individual 5 th Grade

Individual 5 th Grade Individual 5 th Grade Instructions: Problems 1 10 are multiple choice and count towards your team score. Bubble in the letter on your answer sheet. Be sure to erase all mistakes completely. 1. Which one

More information

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS 2009 ACM ICPC Southeast USA Regional Programming Contest 7 November, 2009 PROBLEMS A: Block Game... 1 B: Euclid... 3 C: Museum Guards... 5 D: Knitting... 7 E: Minesweeper... 9 F: The Ninja Way... 10 G:

More information

COCI 2008/2009 Contest #1, 18 th October 2008 TASK SKOCIMIS PTICE MRAVOJED JEZ SKAKAVAC KRTICA

COCI 2008/2009 Contest #1, 18 th October 2008 TASK SKOCIMIS PTICE MRAVOJED JEZ SKAKAVAC KRTICA TASK SKOCIMIS PTICE MRAVOJED JEZ SKAKAVAC KRTICA standard standard time limit 1 second 1 second 1 second 1 second 4 seconds 3 seconds memory limit 32 MB 32 MB 32 MB 32 MB 35 MB 128 MB points 30 40 70 100

More information

Chapter 4 Number Theory

Chapter 4 Number Theory Chapter 4 Number Theory Throughout the study of numbers, students Á should identify classes of numbers and examine their properties. For example, integers that are divisible by 2 are called even numbers

More information

n r for the number. (n r)!r!

n r for the number. (n r)!r! Throughout we use both the notations ( ) n r and C n n! r for the number (n r)!r! 1 Ten points are distributed around a circle How many triangles have all three of their vertices in this 10-element set?

More information

SUDOKU1 Challenge 2013 TWINS MADNESS

SUDOKU1 Challenge 2013 TWINS MADNESS Sudoku1 by Nkh Sudoku1 Challenge 2013 Page 1 SUDOKU1 Challenge 2013 TWINS MADNESS Author : JM Nakache The First Sudoku1 Challenge is based on Variants type from various SUDOKU Championships. The most difficult

More information

Division of Mathematics Alfred University

Division of Mathematics Alfred University Division of Mathematics Alfred University Alfred, NY 14802 Instructions: 1. This competition will last seventy-five minutes from 10:05 to 11:20. 2. The use of calculators is not permitted. 3. There are

More information

Pre-Algebra Sponsored by the Indiana Council of Teachers of Mathematics. Indiana State Mathematics Contest

Pre-Algebra Sponsored by the Indiana Council of Teachers of Mathematics. Indiana State Mathematics Contest Pre-Algebra 2010 Sponsored by the Indiana Council of Teachers of Mathematics Indiana State Mathematics Contest This test was prepared by faculty at Indiana State University ICTM Website http://www.indianamath.org/

More information

LMI SUDOKU TEST 7X JULY 2014 BY RICHARD STOLK

LMI SUDOKU TEST 7X JULY 2014 BY RICHARD STOLK LMI SUDOKU TEST X x JULY 0 BY RICHARD STOLK The first logic puzzle that I ever designed was a scattered number place puzzle of size x. I was inspired by a puzzle from the USPC, around ten years ago. Ever

More information

Counting Things. Tom Davis March 17, 2006

Counting Things. Tom Davis   March 17, 2006 Counting Things Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles March 17, 2006 Abstract We present here various strategies for counting things. Usually, the things are patterns, or

More information

Welcome to the Sudoku and Kakuro Help File.

Welcome to the Sudoku and Kakuro Help File. HELP FILE Welcome to the Sudoku and Kakuro Help File. This help file contains information on how to play each of these challenging games, as well as simple strategies that will have you solving the harder

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

puzzles may not be published without written authorization

puzzles may not be published without written authorization Presentational booklet of various kinds of puzzles by DJAPE In this booklet: - Hanjie - Hitori - Slitherlink - Nurikabe - Tridoku - Hidoku - Straights - Calcudoku - Kakuro - And 12 most popular Sudoku

More information

Objective: Draw trapezoids to clarify their attributes, and define trapezoids based on those attributes.

Objective: Draw trapezoids to clarify their attributes, and define trapezoids based on those attributes. NYS COMMON CORE MATHEMATICS CURRICULUM Lesson 16 5 5 Lesson 16 Objective: Draw trapezoids to clarify their attributes, and define trapezoids based Suggested Lesson Structure Fluency Practice Application

More information

Shaftesbury Park Primary School. Wandsworth test examples

Shaftesbury Park Primary School. Wandsworth test examples Shaftesbury Park Primary School Wandsworth test examples Non-verbal reasoning Non-verbal reasoning is problem-solving based around pictures, diagrams and shapes, rather than words. Unlike verbal reasoning,

More information

Whole Numbers. Whole Numbers. Curriculum Ready.

Whole Numbers. Whole Numbers. Curriculum Ready. Curriculum Ready www.mathletics.com It is important to be able to identify the different types of whole numbers and recognize their properties so that we can apply the correct strategies needed when completing

More information

Unless stated otherwise, explain your logic and write out complete sentences. No notes, books, calculators, or other electronic devices are permitted.

Unless stated otherwise, explain your logic and write out complete sentences. No notes, books, calculators, or other electronic devices are permitted. Remarks: The final exam will be comprehensive. The questions on this practice final are roughly ordered according to when we learned about them; this will not be the case for the actual final. Certainly

More information

We hope you enjoy the set. Good luck for the Indian Puzzle Championship! 3 A B C 4 H D 5 G F E 7 A B 8 H 9 G F

We hope you enjoy the set. Good luck for the Indian Puzzle Championship! 3 A B C 4 H D 5 G F E 7 A B 8 H 9 G F Notes:. All Puzzle rules have been copied from the IP 0 Instruction booklet. Participants are advised to have a look at the booklet before trying out these puzzles, as they contain easier examples with

More information

Counting Problems

Counting Problems Counting Problems Counting problems are generally encountered somewhere in any mathematics course. Such problems are usually easy to state and even to get started, but how far they can be taken will vary

More information

2015 ACM ICPC Southeast USA Regional Programming Contest. Division 1

2015 ACM ICPC Southeast USA Regional Programming Contest. Division 1 2015 ACM ICPC Southeast USA Regional Programming Contest Division 1 Airports... 1 Checkers... 3 Coverage... 5 Gears... 6 Grid... 8 Hilbert Sort... 9 The Magical 3... 12 Racing Gems... 13 Simplicity...

More information

Stage I Round 1. 8 x 18

Stage I Round 1. 8 x 18 Stage 0 1. A tetromino is a shape made up of four congruent squares placed edge to edge. Two tetrominoes are considered the same if one can be rotated, without flipping, to look like the other. (a) How

More information

Taiwan International Mathematics Competition 2012 (TAIMC 2012)

Taiwan International Mathematics Competition 2012 (TAIMC 2012) Individual Contest 1. In how many ways can 0 identical pencils be distributed among three girls so that each gets at least 1 pencil? The first girl can take from 1 to 18 pencils. If she takes 1, the second

More information

Mathematical J o u r n e y s. Departure Points

Mathematical J o u r n e y s. Departure Points Mathematical J o u r n e y s Departure Points Published in January 2007 by ATM Association of Teachers of Mathematics 7, Shaftesbury Street, Derby DE23 8YB Telephone 01332 346599 Fax 01332 204357 e-mail

More information

March 5, What is the area (in square units) of the region in the first quadrant defined by 18 x + y 20?

March 5, What is the area (in square units) of the region in the first quadrant defined by 18 x + y 20? March 5, 007 1. We randomly select 4 prime numbers without replacement from the first 10 prime numbers. What is the probability that the sum of the four selected numbers is odd? (A) 0.1 (B) 0.30 (C) 0.36

More information

UNC Charlotte 2012 Comprehensive

UNC Charlotte 2012 Comprehensive March 5, 2012 1. In the English alphabet of capital letters, there are 15 stick letters which contain no curved lines, and 11 round letters which contain at least some curved segment. How many different

More information

Learning Log Title: CHAPTER 2: ARITHMETIC STRATEGIES AND AREA. Date: Lesson: Chapter 2: Arithmetic Strategies and Area

Learning Log Title: CHAPTER 2: ARITHMETIC STRATEGIES AND AREA. Date: Lesson: Chapter 2: Arithmetic Strategies and Area Chapter 2: Arithmetic Strategies and Area CHAPTER 2: ARITHMETIC STRATEGIES AND AREA Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 2: Arithmetic Strategies and Area Date: Lesson:

More information

Problem Solving Minefield Maze Instruction sheet

Problem Solving Minefield Maze Instruction sheet Minefield Maze Guidelines for running a Problem Solving Session: Aim: To get the team from one side to another of the Maze without stepping on a mine. To use their memories to remember what squares on

More information

Investigation of Algorithmic Solutions of Sudoku Puzzles

Investigation of Algorithmic Solutions of Sudoku Puzzles Investigation of Algorithmic Solutions of Sudoku Puzzles Investigation of Algorithmic Solutions of Sudoku Puzzles The game of Sudoku as we know it was first developed in the 1979 by a freelance puzzle

More information

Saxon Math Manipulatives in Motion Primary. Correlations

Saxon Math Manipulatives in Motion Primary. Correlations Saxon Math Manipulatives in Motion Primary Correlations Saxon Math Program Page Math K 2 Math 1 8 Math 2 14 California Math K 21 California Math 1 27 California Math 2 33 1 Saxon Math Manipulatives in

More information

13 TH 24 HOURS PUZZLE CHAMPIONSHIP

13 TH 24 HOURS PUZZLE CHAMPIONSHIP NM: NTY: PNT: T M PZZ Y: N PÄNT & TT VN NYM PNT ( +) & P 0 PNT ( + 0) MMMT V 0 PNT (+) -- N 0 PNT (+) G VW T TT 0 PNT 0 PNT N TN 0 PNT (0 + 0) N W PNT (0 + 0) Y TTP T Y 0 PNT PNT PNT W MZ PNT ( +0) PYGP

More information

Use a pencil. No calculators or protractors or rulers are allowed.

Use a pencil. No calculators or protractors or rulers are allowed. Name: Age: Yrs Mths Group Number: Use a pencil. No calculators or protractors or rulers are allowed. There are 18 questions. Answer all of them if you can. Show all your working in the spaces provided

More information

NRP Math Challenge Club

NRP Math Challenge Club Week 7 : Manic Math Medley 1. You have exactly $4.40 (440 ) in quarters (25 coins), dimes (10 coins), and nickels (5 coins). You have the same number of each type of coin. How many dimes do you have? 2.

More information

Squares Multiplication Facts: Square Numbers

Squares Multiplication Facts: Square Numbers LESSON 61 page 328 Squares Multiplication Facts: Square Numbers Name Teacher Notes: Introduce Hint #21 Multiplication/ Division Fact Families. Review Multiplication Table on page 5 and Quadrilaterals on

More information

Work: The converse of the statement If p, then q is If q, then p. Thus choice C is correct.

Work: The converse of the statement If p, then q is If q, then p. Thus choice C is correct. Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Write the specified statement. 1) State the converse of the following: 1) If you study hard,

More information

UN DOS TREZ Sudoku Competition. Puzzle Booklet for Preliminary Round. 19-Feb :45PM 75 minutes

UN DOS TREZ Sudoku Competition. Puzzle Booklet for Preliminary Round. 19-Feb :45PM 75 minutes Name: College: Email id: Contact: UN DOS TREZ Sudoku Competition Puzzle Booklet for Preliminary Round 19-Feb-2010 4:45PM 75 minutes In Association With www.logicmastersindia.com Rules of Sudoku A typical

More information

Part III F F J M. Name

Part III F F J M. Name Name 1. Pentaminoes 15 points 2. Pearls (Masyu) 20 points 3. Five Circles 30 points 4. Mastermindoku 35 points 5. Unequal Skyscrapers 40 points 6. Hex Alternate Corners 40 points 7. Easy Islands 45 points

More information

Data About Us Practice Answers

Data About Us Practice Answers Investigation Additional Practice. a. The mode is. While the data set is a collection of numbers, there is no welldefined notion of the center for this distribution. So the use of mode as a typical number

More information

Cross Sections of Three-Dimensional Figures

Cross Sections of Three-Dimensional Figures Domain 4 Lesson 22 Cross Sections of Three-Dimensional Figures Common Core Standard: 7.G.3 Getting the Idea A three-dimensional figure (also called a solid figure) has length, width, and height. It is

More information

Introduction to Spring 2009 Artificial Intelligence Final Exam

Introduction to Spring 2009 Artificial Intelligence Final Exam CS 188 Introduction to Spring 2009 Artificial Intelligence Final Exam INSTRUCTIONS You have 3 hours. The exam is closed book, closed notes except a two-page crib sheet, double-sided. Please use non-programmable

More information

Graphical Communication for Engineering ENSC 204 Final Exam

Graphical Communication for Engineering ENSC 204 Final Exam Name: Student #: Graphical Communication for Engineering ENSC 204 Final Exam December 16, 2015 Time: 3 hours CLOSED BOOK EXAM Read all the instructions below. Do NOT start the exam until you are told to.

More information

I.M.O. Winter Training Camp 2008: Invariants and Monovariants

I.M.O. Winter Training Camp 2008: Invariants and Monovariants I.M.. Winter Training Camp 2008: Invariants and Monovariants n math contests, you will often find yourself trying to analyze a process of some sort. For example, consider the following two problems. Sample

More information

Score. Please print legibly. School / Team Names. Directions: Answers must be left in one of the following forms: 1. Integer (example: 7)

Score. Please print legibly. School / Team Names. Directions: Answers must be left in one of the following forms: 1. Integer (example: 7) Score Please print legibly School / Team Names Directions: Answers must be left in one of the following forms: 1. Integer (example: 7)! 2. Reduced fraction (example:! )! 3. Mixed number, fraction part

More information

WPF PUZZLE GP 2018 ROUND 1 COMPETITION BOOKLET. Host Country: Turkey. Serkan Yürekli, Salih Alan, Fatih Kamer Anda, Murat Can Tonta A B H G A B I H

WPF PUZZLE GP 2018 ROUND 1 COMPETITION BOOKLET. Host Country: Turkey. Serkan Yürekli, Salih Alan, Fatih Kamer Anda, Murat Can Tonta A B H G A B I H Host Country: urkey WPF PUZZE GP 0 COMPEON BOOKE Serkan Yürekli, Salih Alan, Fatih Kamer Anda, Murat Can onta ROUND Special Notes: Note that there is partial credit available on puzzle for a close answer.

More information

UK SENIOR MATHEMATICAL CHALLENGE

UK SENIOR MATHEMATICAL CHALLENGE UK SENIOR MATHEMATICAL CHALLENGE Tuesday 8 November 2016 Organised by the United Kingdom Mathematics Trust and supported by Institute and Faculty of Actuaries RULES AND GUIDELINES (to be read before starting)

More information

G6-M3-Lesson 7: Ordering Integers and Other Rational Numbers

G6-M3-Lesson 7: Ordering Integers and Other Rational Numbers G6-M3-Lesson 7: Ordering Integers and Other Rational Numbers 1. In the table below, list each set of rational numbers in order from least to greatest. Then, list their opposites. Finally, list the opposites

More information

Unit 5 Shape and space

Unit 5 Shape and space Unit 5 Shape and space Five daily lessons Year 4 Summer term Unit Objectives Year 4 Sketch the reflection of a simple shape in a mirror line parallel to Page 106 one side (all sides parallel or perpendicular

More information

Keytar Hero. Bobby Barnett, Katy Kahla, James Kress, and Josh Tate. Teams 9 and 10 1

Keytar Hero. Bobby Barnett, Katy Kahla, James Kress, and Josh Tate. Teams 9 and 10 1 Teams 9 and 10 1 Keytar Hero Bobby Barnett, Katy Kahla, James Kress, and Josh Tate Abstract This paper talks about the implementation of a Keytar game on a DE2 FPGA that was influenced by Guitar Hero.

More information

INTERNATIONAL MATHEMATICS TOURNAMENT OF TOWNS Junior A-Level Paper, Spring 2014.

INTERNATIONAL MATHEMATICS TOURNAMENT OF TOWNS Junior A-Level Paper, Spring 2014. INTERNATIONAL MATHEMATICS TOURNAMENT OF TOWNS Junior A-Level Paper, Spring 2014. 1. uring Christmas party Santa handed out to the children 47 chocolates and 74 marmalades. Each girl got 1 more chocolate

More information

IN THIS ISSUE. Cave vs. Pentagroups

IN THIS ISSUE. Cave vs. Pentagroups 3 IN THIS ISSUE 1. 2. 3. 4. 5. 6. Cave vs. Pentagroups Brokeback loop Easy as skyscrapers Breaking the loop L-oop Triple loop Octave Total rising Dead end cells Pentamino in half Giant tents Cave vs. Pentagroups

More information

1. Answer: 250. To reach 90% in the least number of problems involves Jim getting everything

1. Answer: 250. To reach 90% in the least number of problems involves Jim getting everything . Answer: 50. To reach 90% in the least number of problems involves Jim getting everything 0 + x 9 correct. Let x be the number of questions he needs to do. Then = and cross 50 + x 0 multiplying and solving

More information

Suggested Games and Activities MathShop: Cartesian Coordinate Mat

Suggested Games and Activities MathShop: Cartesian Coordinate Mat Cartesian Coordinates Suggested Games and Activities MathShop: Cartesian Coordinate Mat Gr. 1 Curriculum Expectations Geometry and Spatial Sense Overall Expectations Describe the relative locations of

More information

1. Answer: 250. To reach 90% in the least number of problems involves Jim getting everything

1. Answer: 250. To reach 90% in the least number of problems involves Jim getting everything 8 th grade solutions:. Answer: 50. To reach 90% in the least number of problems involves Jim getting everything 0 + x 9 correct. Let x be the number of questions he needs to do. Then = and cross 50 + x

More information

The Grade 6 Common Core State Standards for Geometry specify that students should

The Grade 6 Common Core State Standards for Geometry specify that students should The focus for students in geometry at this level is reasoning about area, surface area, and volume. Students also learn to work with visual tools for representing shapes, such as graphs in the coordinate

More information

Whole Numbers WHOLE NUMBERS PASSPORT.

Whole Numbers WHOLE NUMBERS PASSPORT. WHOLE NUMBERS PASSPORT www.mathletics.co.uk It is important to be able to identify the different types of whole numbers and recognise their properties so that we can apply the correct strategies needed

More information

Math Circles 9 / 10 Contest Preparation I

Math Circles 9 / 10 Contest Preparation I Math Circles 9 / 10 Contest Preparation I Centre for Education in Mathematics and Computing CEMC www.cemc.uwaterloo.ca February 4, 2015 Agenda 1 Warm-up Problem 2 Contest Information 3 Contest Format 4

More information

3. GOOD is coded as 164 then BAD as 21. If UGLY coded as 260 then JUMP? Sol: G O O D = = x 4 = 164

3. GOOD is coded as 164 then BAD as 21. If UGLY coded as 260 then JUMP? Sol: G O O D = = x 4 = 164 1. X Z Y + X Y Z = Y Z X. Find the three digits 2nd column, Z + Y = Z shows a carry so, Z + Y + 1 = 10 + Z Y = 9 1st column, X + X + 1 = 9 X = 4 so, Z = 5 459 + 495 = 954 X = 4, Y = 9, Z = 5 2. In a 5

More information

International Contest-Game MATH KANGAROO

International Contest-Game MATH KANGAROO International Contest-Game MATH KANGAROO Part A: Each correct answer is worth 3 points. 1. The number 200013-2013 is not divisible by (A) 2 (B) 3 (C) 5 (D) 7 (E) 11 2. The eight semicircles built inside

More information

Length and area Block 1 Student Activity Sheet

Length and area Block 1 Student Activity Sheet Block 1 Student Activity Sheet 1. Write the area and perimeter formulas for each shape. 2. What does each of the variables in these formulas represent? 3. How is the area of a square related to the area

More information

UNC Charlotte 2012 Algebra

UNC Charlotte 2012 Algebra March 5, 2012 1. In the English alphabet of capital letters, there are 15 stick letters which contain no curved lines, and 11 round letters which contain at least some curved segment. How many different

More information

Vocabulary: colon, equivalent ratios, fraction, part-to-part, part-to-whole, ratio

Vocabulary: colon, equivalent ratios, fraction, part-to-part, part-to-whole, ratio EE8-39 Ratios and Fractions Pages 144 147 Standards: preparation for 8.EE.B.5 Goals: Students will review part-to-part and part-to-whole ratios, different notations for a ratio, and equivalent ratios.

More information

MATHCOUNTS Yongyi s National Competition Sprint Round Problems Name. State DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO.

MATHCOUNTS Yongyi s National Competition Sprint Round Problems Name. State DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO. MATHCOUNTS 2008 Yongyi s National Competition Sprint Round Problems 1 30 Name State DO NOT BEGIN UNTIL YOU ARE INSTRUCTED TO DO SO. This round of the competition consists of 30 problems. You will have

More information

1. Hex Tapa (12 points) 2. Hex Dominos (13 points)

1. Hex Tapa (12 points) 2. Hex Dominos (13 points) lassics: Hexed and Remixed Puzzle ooklet Page /5. Hex Tapa ( points) Paint some empty cells black to form a continuous wall. Each clue indicates the lengths of the consecutive blocks of black cells among

More information

Sect Linear Equations in Two Variables

Sect Linear Equations in Two Variables 99 Concept # Sect. - Linear Equations in Two Variables Solutions to Linear Equations in Two Variables In this chapter, we will examine linear equations involving two variables. Such equations have an infinite

More information

Contents Maryland High School Programming Contest 1. 1 Coin Flip 3. 2 Weakest Microbot 5. 3 Digit Product Sequences 7.

Contents Maryland High School Programming Contest 1. 1 Coin Flip 3. 2 Weakest Microbot 5. 3 Digit Product Sequences 7. 2015 Maryland High School Programming Contest 1 Contents 1 Coin Flip 3 2 Weakest Microbot 5 3 Digit Product Sequences 7 4 SignPost I 9 5 Minimum Flips 11 6 The Can t-move Game 13 7 SignPost II 15 8 Guessing

More information

ILLUSION CONFUSION! - MEASURING LINES -

ILLUSION CONFUSION! - MEASURING LINES - ILLUSION CONFUSION! - MEASURING LINES - WHAT TO DO: 1. Look at the line drawings below. 2. Without using a ruler, which long upright or vertical line looks the longest or do they look the same length?

More information

1. Non-Adaptive Weighing

1. Non-Adaptive Weighing 1. Non-Adaptive Weighing We consider the following classical problem. We have a set of N coins of which exactly one of them is different in weight from the others, all of which are identical. We want to

More information

Inductive Reasoning Practice Test. Solution Booklet. 1

Inductive Reasoning Practice Test. Solution Booklet. 1 Inductive Reasoning Practice Test Solution Booklet 1 www.assessmentday.co.uk Question 1 Solution: B In this question, there are two rules to follow. The first rule is that the curved and straight-edged

More information

Name Date Class Practice A. 5. Look around your classroom. Describe a geometric pattern you see.

Name Date Class Practice A. 5. Look around your classroom. Describe a geometric pattern you see. Practice A Geometric Patterns Identify a possible pattern. Use the pattern to draw the next figure. 5. Look around your classroom. Describe a geometric pattern you see. 6. Use squares to create a geometric

More information

Math Stories and Games: Logic, Patterns and Mathematical Thinking

Math Stories and Games: Logic, Patterns and Mathematical Thinking Math Stories and Games: Logic, Patterns and Mathematical Thinking Anna Shevyakova, Alexey Shevyakov............... Lesson 1. Attributes of Objects Dad, play with me, I am bored! Nicky called his father.

More information

TEKSING TOWARD STAAR MATHEMATICS GRADE 6. Student Book

TEKSING TOWARD STAAR MATHEMATICS GRADE 6. Student Book TEKSING TOWARD STAAR MATHEMATICS GRADE 6 Student Book TEKSING TOWARD STAAR 2014 Six Weeks 1 Lesson 1 STAAR Category 1 Grade 6 Mathematics TEKS 6.2A/6.2B Problem-Solving Model Step Description of Step 1

More information