YGB #2: Aren t You a Square?

Size: px
Start display at page:

Download "YGB #2: Aren t You a Square?"

Transcription

1 YGB #2: Aren t You a Square? Problem Statement How can one mathematically determine the total number of squares on a chessboard? Counting them is certainly subject to error, so is it possible to know if one counted them correctly? Additionally, it is important to recognize that there are a number of possibilities for the size of the square, ranging from an individual black or white square to the entire chessboard itself. For this problem, it is assumed that I am working with a standard chessboard, which consists of a checkered pattern with squares of two alternating colors. With B representing a shaded (black) square and W representing a blank (white) square, it would appear as: c1 = {B, W, B, W, B, W, B}; c2 = {W, B, W, B, W, B, W}; c3 = {B, W, B, W, B, W, B}; c4 = {W, B, W, B, W, B, W}; c5 = {B, W, B, W, B, W, B}; c6 = {W, B, W, B, W, B, W}; c7 = {B, W, B, W, B, W, B}; c8 = {W, B, W, B, W, B, W}; list1 = Transpose[{c1, c2, c3, c4, c5, c6, c7, c8}]; Text[Grid[ Prepend[list1, {"W", "B", "W", "B", "W", "B", "W", "B"}], Dividers {All, All}]] Process Making Assumptions Before approaching this problem, it is necessary to make some assumptions regarding the chessboard. These assumptions are made based upon the chessboard diagram from the Problem Statement and are as follows: 1) The entire chessboard is one large square. Each side is thus equal in length. Page 1 of 9

2 2) Each row and column on the chessboard contains exactly eight small, individual squares. 3) The black and white checkered pattern is consistent throughout the chessboard. The third assumption can be further explained. Because the pattern is consistent, every other square along the same row or column has the same color. This also means that squares along the same diagonal line have the same color. If a given square is black, for example, then the squares on its left, right, top, and bottom are white whereas the squares on its top-left, top-right, bottom-left, and bottomright are black. Organized Counting It would appear that one of the easiest way to determine the total number of squares is to count them. However, knowing that counting will increase the likelihood of error, I decided to do so in an orderly system. To start, I determined how many small, individual squares there are on the chessboard. Earlier, I made the assumption that there are 8 of these squares per row and per column. In other words, there are a total of 8 rows of 8 squares. Therefore, I would mutiply 8 by 8 to find the number of small, individual squares. To more easily identify this type of square, I will begin to refer to them as 1x1 squares. Number of Squares 1 x1 = 8 * 8, or 8 2 Number of Squares 1 x1 = 64 There are 64 1x1 squares on the chessboard. The next smallest square size is 2x2, which would look like this: s21 = {B}; s22 = {W}; list2 = Transpose[{s21, s22}]; Text[Grid[Prepend[list2, {"W", "B"}], Dividers {All, All}]] W B B W There are 8 rows on the chessboard and each 2x2 square has 2 rows. I would thus divide 8 by 2 to calculate the number of 2x2 squares per column. Similarly, because there are 8 total columns and each 2x2 square has 2 columns, I would divide 8 by 2 again to calculate the number of squares per row. Number of Squares 2 x2 per Column = 8 / 2 = 4 Number of Squares 2 x2 per Row = 8 / 2 = 4 Number of Squares 2 x2 = per Column * per Row = 4 * 4 = 16 I would continue this process onto 3x3 squares, 4x4 squares, 5x5 squares, 6x6 squares, 7x7 squares, and finally, 8x8 squares (the largest possible square, which is the entire chessboard). When the dimensions of the square do not divide into the 8x8 chessboard evenly, I would subtract the remainder to determine the maximum number of complete squares. The remainder of the quotient only represents a fraction of the square. I would eventually reach the total sum of 92 squares. This answer is incorrect! The strategy Page 2 of 9

3 described above fails to take a large number of squares into consideration. The series of diagrams and explanations below illustrate the issue: Pretend that the entire chessboard is only a 4x4 square: brd441 = {B, W, B}; brd442 = {W, B, W}; brd443 = {B, W, B}; brd444 = {W, B, W}; list3 = Transpose[{brd441, brd442, brd443, brd444}]; Text[Grid[Prepend[list3, {"W", "B", "W", "B"}], Dividers {All, All}]] W B W B B W B W W B W B B W B W Also, assume that I am trying to determine the number of 2x2 squares. Using the current strategy, I would conclude that there are 4 2x2 squares. The diagram below displays their locations. Subscripts of the same value represent one square. brd4412 = {B 1, W 3, B 3 }; brd4422 = {W 1, B 3, W 3 }; brd4432 = {B 2, W 4, B 4 }; brd4442 = {W 2, B 4, W 4 }; list3 = Transpose[{brd4412, brd4422, brd4432, brd4442}]; Text[Grid[Prepend[list3, {"W 1 ", "B 1 ", "W 2 ", "B 2 "}], Dividers {All, All}]] W 1 B 1 W 2 B 2 B 1 W 1 B 2 W 2 W 3 B 3 W 4 B 4 B 3 W 3 B 4 W 4 But what about these 2x2 squares? brd4413 = {B 6, W 6, B}; brd4423 = {W 5,6,9, B 6,8,9, W 8 }; brd4433 = {B 5,7,9, W 7,8,9, B 8 }; brd4443 = {W 7, B 7, W}; list3 = Transpose[{brd4413, brd4423, brd4433, brd4443}]; Text[Grid[Prepend[list3, {"W", "B 5 ", "W 5 ", "B"}], Dividers {All, All}]] W B 5 W 5 B B 6 W 5,6,9 B 5,7,9 W 7 W 6 B 6,8,9 W 7,8,9 B 7 B W 8 B 8 W Of course, it is possible to take these additional squares into account and still use a systematic method to count the total number of squares on a standard chessboard, but that would be time consuming and extremely prone to error. Therefore, counting is not at all a reliable method for this problem. Page 3 of 9

4 Taking Advantage of the Color Pattern Recall that this is a standard 8x8 chessboard: c1 = {B, W, B, W, B, W, B}; c2 = {W, B, W, B, W, B, W}; c3 = {B, W, B, W, B, W, B}; c4 = {W, B, W, B, W, B, W}; c5 = {B, W, B, W, B, W, B}; c6 = {W, B, W, B, W, B, W}; c7 = {B, W, B, W, B, W, B}; c8 = {W, B, W, B, W, B, W}; list1 = Transpose[{c1, c2, c3, c4, c5, c6, c7, c8}]; Text[Grid[ Prepend[list1, {"W", "B", "W", "B", "W", "B", "W", "B"}], Dividers {All, All}]] If anything, the previous method allowed me to determine that there are 64 1x1 squares and 1 8x8 square on the chessboard. Because I know those quantities for certain (there cannot be any that weren t taken into consideration), I can leave them aside for now and just focus on 2x2, 3x3, 4x4, 5x5, 6x6, and 7x7 squares. Before attempting to solve the problem using the color pattern, I must make one additional assumption about the chessboard: that there are an equal number of black and white squares (so 32 each). Because the colors consistently alternate along the same row/column and the first and last squares of row/column are of different colors, I can conclude that there is an equal number of each. First, I would like to work with the 2x2 squares. Referring back to the previous method, I would have found that there are 16 2x2 squares. Looking at the chessboard diagram above, I realized that each of these 16 squares would have an identical pattern of s21 = {B}; s22 = {W}; list2 = Transpose[{s21, s22}]; Text[Grid[Prepend[list2, {"W", "B"}], Dividers {All, All}]] W B B W But as I had determined, the squares can overlap one another. The top-left square (I can actually choose any square, but to make the concept easier to express, I will use the top-left square as the reference point throughout this section) of a 2x2 square does not necessarily have to be white. Each row/column on the chessboard has 4 white squares and 4 black squares, so if the top-left square of a 2x2 square can be either color, then there should be 8 total. Page 4 of 9

5 4 2x2 Squares with White Top-Left Square + 4 2x2 Squares with Black Top-Left Square = 8 2x2 Squares However, I cannot include the final square of that row/column (regardless of color) because if that were the top-left square of a 2x2 square, then not all of the 2x2 square would be on the chessboard. Therefore, there are actually 7 rows of 7 2x2 squares, or 49 2x2 squares in total. The same concept applies to 3x3 squares. If they did not overlap, there would be 2 rows of 2 squares, or 4 in total. Similar to a 2x2 square, the top-left can be either black or white. There are 4 of each per row/column, which means a total of 8 3x3 squares per row/column. With the 2x2 squares, I subtracted 1 from the total because one of the squares fell off the chessboard. With 3x3 squares, I have to subtract 2 from 8, which means 6 squares per row/column. Multiplying 6 by 6, I will find that there are 36 3x3 squares on the entire chessboard. The pattern continues. Logically, I will always find an intial total of 8 squares per row/column. It then becomes a matter of subtracting away the number of squares that would not fit on the chessboard. The following table displays the concept, which is consistent from 1x1 squares all the way to 8x8 squares. Both the Initial Total and the Actual Total are for just one row/column. name = {"1x1", "2x2", "3x3", "4x4", "5x5", "6x6", "7x7", "8x8"}; initial = {8, 8, 8, 8, 8, 8, 8, 8}; sub = {0, 1, 2, 3, 4, 5, 6, 7}; total = {8, 7, 6, 5, 4, 3, 2, 1}; list4 = Transpose[{name, initial, sub, total}]; Text[ Grid[Prepend[list4, {"Dimensions", "Initial Total", "Subtract", "Actual Total"}], Dividers {All, All}]] Dimensions Initial Total Subtract Actual Total 1x x x x x x x x Now that I have obtained the total number of each type of square per row/column, I can easily calculate the total number of squares on the chessboard. This would be done by squaring the Actual Totals and then finding the sum of the results. Although this method allows me to find the answer, it is a bit difficult to express through words. Constructing an Equation The previous method allowed me to visualize exactly what is happening in the problem. In this part of the process, I will organize what I discovered and form a single equation that will directly solve the problem. For now, I am still limiting myself to a standard 8x8 chessboard. Using the information from the table that I constructed in the previous method, I can first write an expression for the total number of squares per row/column for each size: Page 5 of 9

6 For 1x1 squares: (8-0) For 2x2 squares: (8-1) For 3x3 squares: (8-2) For 4x4 squares: (8-3) For 5x5 squares: (8-4) For 6x6 squares: (8-5) For 7x7 squares: (8-6) For 8x8 squares: (8-7) Now, to find the total number of squares on the chessboard for each size, I can just square each of the previous expressions. I can do this because the chessboard itself is a square. If there are x nxn squares along one row, then there are also x nxn along one column. Mulitplying x by itself (or squaring it) calculates the total number of nxn squares on the chessboard. For 1x1 squares: (8-0) 2 For 2x2 squares: (8-1) 2 For 3x3 squares: (8-2) 2 For 4x4 squares: (8-3) 2 For 5x5 squares: (8-4) 2 For 6x6 squares: (8-5) 2 For 7x7 squares: (8-6) 2 For 8x8 squares: (8-7) 2 All that has to be done now is to add the expressions together to find the total number of squares on a standard chessboard. Total = (8-0) 2 + (8-1) 2 + (8-2) 2 + (8-3) 2 + (8-4) 2 + (8-5) 2 + (8-6) 2 + (8-7) 2 Solution I concluded at the end of my problem solving process that the follow equation would allow me to solve for the total number of squares on a standard 8x8 chessboard: Total = (8-0) 2 + (8-1) 2 + (8-2) 2 + (8-3) 2 + (8-4) 2 + (8-5) 2 + (8-6) 2 + (8-7) 2 Therefore, I will now solve the equation. Total = (8-0) 2 + (8-1) 2 + (8-2) 2 + (8-3) 2 + (8-4) 2 + (8-5) 2 + (8-6) 2 + (8-7) 2 Total = (8) 2 + (7) 2 + (6) 2 + (5) 2 + (4) 2 + (3) 2 + (2) 2 + (1) 2 Total = Total = 204 According to my calculations, there are 204 squares on a chessboard. Page 6 of 9

7 Generalizations The problem was developed based off of a chessboard, which certainly helped me visualize the different square sizes and dimensions that are possible. However, the equation that I wrote can be modified to calculate the number of squares in any larger square. An expression that represents the total number of squares in a special chessboard with dimensions s by s is: s n 2 I will now let Mathematica calculate the number of squares on a standard chessboard: 8 n What about a 4x4 chessboard? A 10x10 chessboard? A 1000x1000 chessboard? 4 30 n 2 10 n n It is also possible to determine the total number of rectangles on a chessboard of any size. For now, I will only work with the standard 8x8 chessboard. On the chessboard, a rectangle would be created by 2 horizontal lines and 2 vertical lines. How many of each are there? Again, I must recall that the 8x8 chessboard looks like this: Page 7 of 9

8 c1 = {B, W, B, W, B, W, B}; c2 = {W, B, W, B, W, B, W}; c3 = {B, W, B, W, B, W, B}; c4 = {W, B, W, B, W, B, W}; c5 = {B, W, B, W, B, W, B}; c6 = {W, B, W, B, W, B, W}; c7 = {B, W, B, W, B, W, B}; c8 = {W, B, W, B, W, B, W}; list1 = Transpose[{c1, c2, c3, c4, c5, c6, c7, c8}]; Text[Grid[ Prepend[list1, {"W", "B", "W", "B", "W", "B", "W", "B"}], Dividers {All, All}]] There are 9 horizontal lines and 9 vertical lines that make up the chessboard. Now, rather than treating the question as how many rectangles there are, I will treat it as how many possible combinations of horizontal and vertical lines there are if I were to pick two from each. Actually, because I am working with a square, I can just find the number of possible combinations in one direction and square that number for the answer. The question has been simplified to: how many possible pairs of lines are there if there are a total of 9 lines? This can be mathematically calculated: = 36 pairs Part of the reasoning behind the equation above is that I do not want any repetitions in the pairings. The first line can possibly pair with 8 other lines. The second line can pair with just 7 because its pairing with the first line has already been accounted for. The third line only has 6 possible pairings because its pairings with the first and second lines have already been accounted for. The same applies for the remaining lines. I now know that there are 36 possible pairs of lines in one direction. Like I had mentioned earlier, I will now square this number to find the number of possible pairings between horizontal pairs and vertical pairs, which is the number of rectangles on the chessboard: 36 2 = 1296 rectangles There are 1296 rectangles on a standard 8x8 chessboard. For a special chessboard of dimensions s by s, the concept is the exact same. There would be (s + 1) horizontal lines and (s + 1) vertical lines. For either direction, the number of pairs can be represented by: (s+1)-1 n Page 8 of 9

9 (s+1)-1 2 Then, the total number of rectangles is simply n. To test to see if the expression is correct or if there are indeed 1296 rectangles on a standard chessboard, I will allow Mathematica to perform the calculations when s is equal to 8. (8+1)-1 n (s+1)-1 If the chessboard was to be a rectangle, then I would perform n twice, once for the horizontal lines and once for the vertical lines. Then, I would multiply the two results together to find the total number of possible rectangles. Self-Assessment From this YGB problem, I learned to try to utilize as much given information as possible with a complex mathematics problem. Specifically, I find it somewhat interesting that I was able to use the color pattern of the chessboard to calculate the total number of squares it contains. A seemingly minute detail can have great potential if it is creatively interpreted. I worked very hard on this problem. I dedicated a lot of time and effort towards solving it and towards making any plausible generalizations. I also explored multiple approaches. The only source that I used was and it was to learn about the Sigma notation. I don t have too much experience using it and decided to try to incorporate it into this problem. Page 9 of 9

Situations Involving Multiplication and Division with Products to 50

Situations Involving Multiplication and Division with Products to 50 Mathematical Ideas Composing, decomposing, addition, and subtraction of numbers are foundations of multiplication and division. The following are examples of situations that involve multiplication and/or

More information

Introduction to Fractions

Introduction to Fractions Introduction to Fractions A fraction is a quantity defined by a numerator and a denominator. For example, in the fraction ½, the numerator is 1 and the denominator is 2. The denominator designates how

More information

Situations Involving Multiplication and Division with Products to 100

Situations Involving Multiplication and Division with Products to 100 Mathematical Ideas Composing, decomposing, addition, and subtraction of numbers are foundations of multiplication and division. The following are examples of situations that involve multiplication and/or

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

NAME DATE. b) Then do the same for Jett s pennies (6 sets of 9 pennies with 4 leftover pennies).

NAME DATE. b) Then do the same for Jett s pennies (6 sets of 9 pennies with 4 leftover pennies). NAME DATE 1.2.2/1.2.3 NOTES 1-51. Cody and Jett each have a handful of pennies. Cody has arranged his pennies into 3 sets of 16, and has 9 leftover pennies. Jett has 6 sets of 9 pennies, and 4 leftover

More information

Building Concepts: Fractions and Unit Squares

Building Concepts: Fractions and Unit Squares Lesson Overview This TI-Nspire lesson, essentially a dynamic geoboard, is intended to extend the concept of fraction to unit squares, where the unit fraction b is a portion of the area of a unit square.

More information

16.1 Introduction Numbers in General Form

16.1 Introduction Numbers in General Form 16.1 Introduction You have studied various types of numbers such as natural numbers, whole numbers, integers and rational numbers. You have also studied a number of interesting properties about them. In

More information

Grade 7/8 Math Circles Game Theory October 27/28, 2015

Grade 7/8 Math Circles Game Theory October 27/28, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 7/8 Math Circles Game Theory October 27/28, 2015 Chomp Chomp is a simple 2-player game. There is

More information

MATHEMATICS ON THE CHESSBOARD

MATHEMATICS ON THE CHESSBOARD MATHEMATICS ON THE CHESSBOARD Problem 1. Consider a 8 8 chessboard and remove two diametrically opposite corner unit squares. Is it possible to cover (without overlapping) the remaining 62 unit squares

More information

Use of Sticks as an Aid to Learning of Mathematics for classes I-VIII Harinder Mahajan (nee Nanda)

Use of Sticks as an Aid to Learning of Mathematics for classes I-VIII Harinder Mahajan (nee Nanda) Use of Sticks as an Aid to Learning of Mathematics for classes I-VIII Harinder Mahajan (nee Nanda) Models and manipulatives are valuable for learning mathematics especially in primary school. These can

More information

Chapter 2: Numeration Systems

Chapter 2: Numeration Systems Chapter 2: Numeration Systems 8. In base ten, 215.687 is exactly ones, exactly tens, exactly hundreds, and exactly thousands; also, 3421 is exactly tenths and exactly hundredths. In base ten, 215.687 is

More information

The Parkland Federation. February 2016

The Parkland Federation. February 2016 The Parkland Federation February 206 EYFS/KS Calculations: Recording Addition (page of ). Aggregation/combining 2. Augmentation/counting on 3. Counting Contexts: + + + + Pupils physically combining groups

More information

CONNECT: Divisibility

CONNECT: Divisibility CONNECT: Divisibility If a number can be exactly divided by a second number, with no remainder, then we say that the first number is divisible by the second number. For example, 6 can be divided by 3 so

More information

Multiplication Facts to 7 x 7

Multiplication Facts to 7 x 7 Composing, decomposing, and addition of numbers are foundations of multiplication. Mathematical Ideas Early strategies for multiplication include: Skip counting 2 x 6 can be determined by skip counting

More information

Shuli s Math Problem Solving Column

Shuli s Math Problem Solving Column Shuli s Math Problem Solving Column Volume 1, Issue 19 May 1, 2009 Edited and Authored by Shuli Song Colorado Springs, Colorado shuli_song@yahoocom Contents 1 Math Trick: Mental Calculation: 199a 199b

More information

Lecture 1, CS 2050, Intro Discrete Math for Computer Science

Lecture 1, CS 2050, Intro Discrete Math for Computer Science Lecture 1, 08--11 CS 050, Intro Discrete Math for Computer Science S n = 1++ 3+... +n =? Note: Recall that for the above sum we can also use the notation S n = n i. We will use a direct argument, in this

More information

Table of Contents. Table of Contents 1

Table of Contents. Table of Contents 1 Table of Contents 1) The Factor Game a) Investigation b) Rules c) Game Boards d) Game Table- Possible First Moves 2) Toying with Tiles a) Introduction b) Tiles 1-10 c) Tiles 11-16 d) Tiles 17-20 e) Tiles

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

Meaningful Ways to Develop Math Facts

Meaningful Ways to Develop Math Facts NCTM 206 San Francisco, California Meaningful Ways to Develop Math Facts -5 Sandra Niemiera Elizabeth Cape mathtrailblazer@uic.edu 2 4 5 6 7 Game Analysis Tool of Game Math Involved in the Game This game

More information

DIVISION BY FRACTIONS

DIVISION BY FRACTIONS DIVISION BY FRACTIONS 6.. 6.. Division by fractions introduces three methods to help students understand how dividing by fractions works. In general, think of division for a problem like 8 as, In 8, how

More information

4 th Grade Mathematics Learning Targets By Unit

4 th Grade Mathematics Learning Targets By Unit INSTRUCTIONAL UNIT UNIT 1: WORKING WITH WHOLE NUMBERS UNIT 2: ESTIMATION AND NUMBER THEORY PSSA ELIGIBLE CONTENT M04.A-T.1.1.1 Demonstrate an understanding that in a multi-digit whole number (through 1,000,000),

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

Answer Keys for Math Bonus Cards for Grade 5, Unit 5

Answer Keys for Math Bonus Cards for Grade 5, Unit 5 Answer Keys for Math Bonus Cards for Grade, Unit Important: To print additional copies, you can download a file from: www.ttsd.k.or.us/tag, click on Teacher Resources, Math Challenge Cards Gr, and then

More information

Multiplying Three Factors and Missing Factors

Multiplying Three Factors and Missing Factors LESSON 18 Multiplying Three Factors and Missing Factors Power Up facts count aloud Power Up C Count up and down by 5s between 1 and 51. Count up and down by 200s between 0 and 2000. mental math a. Number

More information

Mathematics Enhancement Programme TEACHING SUPPORT: Year 3

Mathematics Enhancement Programme TEACHING SUPPORT: Year 3 Mathematics Enhancement Programme TEACHING UPPORT: Year 3 1. Question and olution Write the operations without brackets if possible so that the result is the same. Do the calculations as a check. The first

More information

0:00:00.919,0:00: this is. 0:00:05.630,0:00: common core state standards support video for mathematics

0:00:00.919,0:00: this is. 0:00:05.630,0:00: common core state standards support video for mathematics 0:00:00.919,0:00:05.630 this is 0:00:05.630,0:00:09.259 common core state standards support video for mathematics 0:00:09.259,0:00:11.019 standard five n f 0:00:11.019,0:00:13.349 four a this standard

More information

MANIPULATIVE MATHEMATICS FOR STUDENTS

MANIPULATIVE MATHEMATICS FOR STUDENTS MANIPULATIVE MATHEMATICS FOR STUDENTS Manipulative Mathematics Using Manipulatives to Promote Understanding of Elementary Algebra Concepts Lynn Marecek MaryAnne Anthony-Smith This file is copyright 07,

More information

Chapter 5 Integers. 71 Copyright 2013 Pearson Education, Inc. All rights reserved.

Chapter 5 Integers. 71 Copyright 2013 Pearson Education, Inc. All rights reserved. Chapter 5 Integers In the lower grades, students may have connected negative numbers in appropriate ways to informal knowledge derived from everyday experiences, such as below-zero winter temperatures

More information

Foundations of Multiplication and Division

Foundations of Multiplication and Division Grade 2 Module 6 Foundations of Multiplication and Division OVERVIEW Grade 2 Module 6 lays the conceptual foundation for multiplication and division in Grade 3 and for the idea that numbers other than

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

Wordy Problems for MathyTeachers

Wordy Problems for MathyTeachers December 2012 Wordy Problems for MathyTeachers 1st Issue Buffalo State College 1 Preface When looking over articles that were submitted to our journal we had one thing in mind: How can you implement this

More information

Line Graphs. Name: The independent variable is plotted on the x-axis. This axis will be labeled Time (days), and

Line Graphs. Name: The independent variable is plotted on the x-axis. This axis will be labeled Time (days), and Name: Graphing Review Graphs and charts are great because they communicate information visually. For this reason graphs are often used in newspapers, magazines, and businesses around the world. Sometimes,

More information

Year 5 Problems and Investigations Spring

Year 5 Problems and Investigations Spring Year 5 Problems and Investigations Spring Week 1 Title: Alternating chains Children create chains of alternating positive and negative numbers and look at the patterns in their totals. Skill practised:

More information

Lesson 21: If-Then Moves with Integer Number Cards

Lesson 21: If-Then Moves with Integer Number Cards Student Outcomes Students understand that if a number sentence is true and we make any of the following changes to the number sentence, the resulting number sentence will be true: i. Adding the same number

More information

Published in India by. MRP: Rs Copyright: Takshzila Education Services

Published in India by.   MRP: Rs Copyright: Takshzila Education Services NUMBER SYSTEMS Published in India by www.takshzila.com MRP: Rs. 350 Copyright: Takshzila Education Services All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,

More information

MULTIPLES, FACTORS AND POWERS

MULTIPLES, FACTORS AND POWERS The Improving Mathematics Education in Schools (TIMES) Project MULTIPLES, FACTORS AND POWERS NUMBER AND ALGEBRA Module 19 A guide for teachers - Years 7 8 June 2011 7YEARS 8 Multiples, Factors and Powers

More information

CIS 2033 Lecture 6, Spring 2017

CIS 2033 Lecture 6, Spring 2017 CIS 2033 Lecture 6, Spring 2017 Instructor: David Dobor February 2, 2017 In this lecture, we introduce the basic principle of counting, use it to count subsets, permutations, combinations, and partitions,

More information

UK JUNIOR MATHEMATICAL CHALLENGE. April 25th 2013 EXTENDED SOLUTIONS

UK JUNIOR MATHEMATICAL CHALLENGE. April 25th 2013 EXTENDED SOLUTIONS UK JUNIOR MATHEMATICAL CHALLENGE April 5th 013 EXTENDED SOLUTIONS These solutions augment the printed solutions that we send to schools. For convenience, the solutions sent to schools are confined to two

More information

L_sson 9 Subtracting across zeros

L_sson 9 Subtracting across zeros L_sson 9 Subtracting across zeros A. Here are the steps for subtracting 3-digit numbers across zeros. Complete the example. 7 10 12 8 0 2 2 3 8 9 1. Subtract the ones column. 2 8 requires regrouping. 2.

More information

SESSION THREE AREA MEASUREMENT AND FORMULAS

SESSION THREE AREA MEASUREMENT AND FORMULAS SESSION THREE AREA MEASUREMENT AND FORMULAS Outcomes Understand the concept of area of a figure Be able to find the area of a rectangle and understand the formula base times height Be able to find the

More information

3.1 Factors and Multiples of Whole Numbers

3.1 Factors and Multiples of Whole Numbers Math 1201 Date: 3.1 Factors and Multiples of Whole Numbers Prime Number: a whole number greater than 1, whose only two whole-number factors are 1 and itself. The first few prime numbers are 2, 3, 5, 7,

More information

Session 5 Variation About the Mean

Session 5 Variation About the Mean Session 5 Variation About the Mean Key Terms for This Session Previously Introduced line plot median variation New in This Session allocation deviation from the mean fair allocation (equal-shares allocation)

More information

Removing the Fear of Fractions from Your Students Thursday, April 16, 2015: 9:30 AM-10:30 AM 157 A (BCEC) Lead Speaker: Joseph C.

Removing the Fear of Fractions from Your Students Thursday, April 16, 2015: 9:30 AM-10:30 AM 157 A (BCEC) Lead Speaker: Joseph C. Removing the Fear of Fractions from Your Students Thursday, April 6, 20: 9:0 AM-0:0 AM 7 A (BCEC) Lead Speaker: Joseph C. Mason Associate Professor of Mathematics Hagerstown Community College Hagerstown,

More information

Kenken For Teachers. Tom Davis January 8, Abstract

Kenken For Teachers. Tom Davis   January 8, Abstract Kenken For Teachers Tom Davis tomrdavis@earthlink.net http://www.geometer.org/mathcircles January 8, 00 Abstract Kenken is a puzzle whose solution requires a combination of logic and simple arithmetic

More information

A few chessboards pieces: 2 for each student, to play the role of knights.

A few chessboards pieces: 2 for each student, to play the role of knights. Parity Party Returns, Starting mod 2 games Resources A few sets of dominoes only for the break time! A few chessboards pieces: 2 for each student, to play the role of knights. Small coins, 16 per group

More information

Public Key Cryptography

Public Key Cryptography Public Key Cryptography How mathematics allows us to send our most secret messages quite openly without revealing their contents - except only to those who are supposed to read them The mathematical ideas

More information

CH 20 NUMBER WORD PROBLEMS

CH 20 NUMBER WORD PROBLEMS 187 CH 20 NUMBER WORD PROBLEMS Terminology To double a number means to multiply it by 2. When n is doubled, it becomes 2n. The double of 12 is 2(12) = 24. To square a number means to multiply it by itself.

More information

Section 2.1 Factors and Multiples

Section 2.1 Factors and Multiples Section 2.1 Factors and Multiples When you want to prepare a salad, you select certain ingredients (lettuce, tomatoes, broccoli, celery, olives, etc.) to give the salad a specific taste. You can think

More information

4 th Grade Curriculum Map

4 th Grade Curriculum Map 4 th Grade Curriculum Map 2017-18 MONTH UNIT/ CONTENT CORE GOALS/SKILLS STANDARDS WRITTEN ASSESSMENTS ROUTINES RESOURCES VOCABULARY September Chapter 1 8 days NUMBERS AND OPERATIONS IN BASE TEN WORKING

More information

Chapter 2 Integers. Math 20 Activity Packet Page 1

Chapter 2 Integers. Math 20 Activity Packet Page 1 Chapter 2 Integers Contents Chapter 2 Integers... 1 Introduction to Integers... 3 Adding Integers with Context... 5 Adding Integers Practice Game... 7 Subtracting Integers with Context... 9 Mixed Addition

More information

Slicing a Puzzle and Finding the Hidden Pieces

Slicing a Puzzle and Finding the Hidden Pieces Olivet Nazarene University Digital Commons @ Olivet Honors Program Projects Honors Program 4-1-2013 Slicing a Puzzle and Finding the Hidden Pieces Martha Arntson Olivet Nazarene University, mjarnt@gmail.com

More information

Objectives: Students will learn to divide decimals with both paper and pencil as well as with the use of a calculator.

Objectives: Students will learn to divide decimals with both paper and pencil as well as with the use of a calculator. Unit 3.5: Fractions, Decimals and Percent Lesson: Dividing Decimals Objectives: Students will learn to divide decimals with both paper and pencil as well as with the use of a calculator. Procedure: Dividing

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

Meet #2 November Intermediate Mathematics League of Eastern Massachusetts

Meet #2 November Intermediate Mathematics League of Eastern Massachusetts Meet #2 November 2007 Intermediate Mathematics League of Eastern Massachusetts Meet #2 November 2007 Category 1 Mystery 1. Han and Sean are playing a game. Han tells Sean to think of a number. Han then

More information

Synergy Round. Warming Up. Where in the World? Scrabble With Numbers. Earning a Gold Star

Synergy Round. Warming Up. Where in the World? Scrabble With Numbers. Earning a Gold Star Synergy Round Warming Up Where in the World? You re standing at a point on earth. After walking a mile north, then a mile west, then a mile south, you re back where you started. Where are you? [4 points]

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

Whole Numbers. Predecessor and successor Given any natural number, you can add 1 to that number and get the next number i.e. you

Whole Numbers. Predecessor and successor Given any natural number, you can add 1 to that number and get the next number i.e. you Whole Numbers Chapter.1 Introduction As we know, we use 1,, 3, 4,... when we begin to count. They come naturally when we start counting. Hence, mathematicians call the counting numbers as Natural numbers.

More information

2012 UPPER PRIMARY PRELIMINARY ROUND PAPER Time allowed:75 minutes INSTRUCTION AND INFORMATION

2012 UPPER PRIMARY PRELIMINARY ROUND PAPER Time allowed:75 minutes INSTRUCTION AND INFORMATION International Mathematics Assessments for Schools 2012 UPPER PRIMARY PRELIMINARY ROUND PAPER Time allowed:75 minutes INSTRUCTION AND INFORMATION GENERAL 1. Do not open the booklet until told to do so by

More information

4th Pui Ching Invitational Mathematics Competition. Final Event (Secondary 1)

4th Pui Ching Invitational Mathematics Competition. Final Event (Secondary 1) 4th Pui Ching Invitational Mathematics Competition Final Event (Secondary 1) 2 Time allowed: 2 hours Instructions to Contestants: 1. 100 This paper is divided into Section A and Section B. The total score

More information

High School / Scored Student Samples ITEM #4 SMARTER BALANCED PERFORMANCE TASK

High School / Scored Student Samples ITEM #4 SMARTER BALANCED PERFORMANCE TASK High School / Scored Student Samples ITEM #4 SMARTER BALANCED PERFORMANCE TASK Focus Standards and Claim Stimulus Claim 2 FLE.B.5 Lights, Candles, Action! Your friend Abbie is making a movie. She is filming

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

Notes on 4-coloring the 17 by 17 grid

Notes on 4-coloring the 17 by 17 grid otes on 4-coloring the 17 by 17 grid lizabeth upin; ekupin@math.rutgers.edu ugust 5, 2009 1 or large color classes, 5 in each row, column color class is large if it contains at least 73 points. We know

More information

UK Junior Mathematical Challenge

UK Junior Mathematical Challenge UK Junior Mathematical Challenge THURSDAY 30th APRIL 2015 Organised by the United Kingdom Mathematics Trust from the School of Mathematics, University of Leeds Institute and Faculty of Actuaries RULES

More information

Fibonacci Numbers ANSWERS Lesson 1 of 10, work individually or in pairs

Fibonacci Numbers ANSWERS Lesson 1 of 10, work individually or in pairs Lesson 1 of 10, work individually or in pairs In 1202, the mathematician Leonardo Pisano Fibonacci (pronounced fi-buh-nah-chee) published a book with the famous Fibonacci sequence in it. (A sequence is

More information

Intermediate Mathematics League of Eastern Massachusetts

Intermediate Mathematics League of Eastern Massachusetts Intermediate Mathematics League of Eastern Massachusetts Meet # 2 December 2000 Category 1 Mystery 1. John has just purchased five 12-foot planks from which he will cut a total of twenty 3-inch boards

More information

Mathematical Olympiads November 19, 2014

Mathematical Olympiads November 19, 2014 athematical Olympiads November 19, 2014 for Elementary & iddle Schools 1A Time: 3 minutes Suppose today is onday. What day of the week will it be 2014 days later? 1B Time: 4 minutes The product of some

More information

Probability and Statistics

Probability and Statistics Probability and Statistics Activity: Do You Know Your s? (Part 1) TEKS: (4.13) Probability and statistics. The student solves problems by collecting, organizing, displaying, and interpreting sets of data.

More information

NSCAS - Math Table of Specifications

NSCAS - Math Table of Specifications NSCAS - Math Table of Specifications MA 3. MA 3.. NUMBER: Students will communicate number sense concepts using multiple representations to reason, solve problems, and make connections within mathematics

More information

Grade 6 Math Circles Combinatorial Games November 3/4, 2015

Grade 6 Math Circles Combinatorial Games November 3/4, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles Combinatorial Games November 3/4, 2015 Chomp Chomp is a simple 2-player game. There

More information

A C E. Answers Investigation 3. Applications = 0.42 = = = = ,440 = = 42

A C E. Answers Investigation 3. Applications = 0.42 = = = = ,440 = = 42 Answers Investigation Applications 1. a. 0. 1.4 b. 1.2.54 1.04 0.6 14 42 0.42 0 12 54 4248 4.248 0 1,000 4 6 624 0.624 0 1,000 22 45,440 d. 2.2 0.45 0 1,000.440.44 e. 0.54 1.2 54 12 648 0.648 0 1,000 2,52

More information

2016 RSM Olympiad 3-4

2016 RSM Olympiad 3-4 1. In the puzzle below, each card hides a digit. What digit is hidden under the card with the question mark? Answer: 9 Solution 1. Note that 999 is the largest 3-digit number. Therefore, if we add to it

More information

Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 2016 [(3!)!] 4

Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 2016 [(3!)!] 4 Twenty-fourth Annual UNC Math Contest Final Round Solutions Jan 206 Rules: Three hours; no electronic devices. The positive integers are, 2, 3, 4,.... Pythagorean Triplet The sum of the lengths of the

More information

Solutions to the European Kangaroo Pink Paper

Solutions to the European Kangaroo Pink Paper Solutions to the European Kangaroo Pink Paper 1. The calculation can be approximated as follows: 17 0.3 20.16 999 17 3 2 1000 2. A y plotting the points, it is easy to check that E is a square. Since any

More information

Practice Task: Expression Puzzle

Practice Task: Expression Puzzle Practice Task: Expression Puzzle In this task, students will practice interpreting numeric expressions by matching the numeric form to its meaning written in words, without evaluating the expression. STANDARDS

More information

GET OVERLAPPED! Author: Huang Yi. Forum thread:

GET OVERLAPPED! Author: Huang Yi. Forum thread: GET OVERLAPPED! Author: Huang Yi Test page: http://logicmastersindia.com/2019/02s/ Forum thread: http://logicmastersindia.com/forum/forums/thread-view.asp?tid=2690 About this Test: This test presents a

More information

Problem Solving with Length, Money, and Data

Problem Solving with Length, Money, and Data Grade 2 Module 7 Problem Solving with Length, Money, and Data OVERVIEW Module 7 presents an opportunity for students to practice addition and subtraction strategies within 100 and problem-solving skills

More information

Variations on the Two Envelopes Problem

Variations on the Two Envelopes Problem Variations on the Two Envelopes Problem Panagiotis Tsikogiannopoulos pantsik@yahoo.gr Abstract There are many papers written on the Two Envelopes Problem that usually study some of its variations. In this

More information

Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015

Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 6 Math Circles Combinatorial Games - Solutions November 3/4, 2015 Chomp Chomp is a simple 2-player

More information

Description Reflect and Review Teasers Answers

Description Reflect and Review Teasers Answers 1 Revision Recall basics of fractions A fraction is a part of a whole like one half (1/ one third (1/3) two thirds (2/3) one quarter (1/4) etc Write the fraction represented by the shaded part in the following

More information

Improper Fractions. An Improper Fraction has a top number larger than (or equal to) the bottom number.

Improper Fractions. An Improper Fraction has a top number larger than (or equal to) the bottom number. Improper Fractions (seven-fourths or seven-quarters) 7 4 An Improper Fraction has a top number larger than (or equal to) the bottom number. It is "top-heavy" More Examples 3 7 16 15 99 2 3 15 15 5 See

More information

constant EXAMPLE #4:

constant EXAMPLE #4: Linear Equations in One Variable (1.1) Adding in an equation (Objective #1) An equation is a statement involving an equal sign or an expression that is equal to another expression. Add a constant value

More information

SEVENTH EDITION and EXPANDED SEVENTH EDITION

SEVENTH EDITION and EXPANDED SEVENTH EDITION SEVENTH EDITION and EXPANDED SEVENTH EDITION Slide 4-1 Chapter 4 Systems of Numeration 4.1 Additive, Multiplicative, and Ciphered Systems of Numeration Systems of Numeration A system of numeration consists

More information

Calculations: Recording Addition (page 1 of 2) 2. Adding two digits (tens & ones)

Calculations: Recording Addition (page 1 of 2) 2. Adding two digits (tens & ones) Updated August 205 . Adding single digits (ones) Using a number line: Example: 7 + 4 = 0 2 3 4 5 6 7 8 9 0 2 Calculations: Recording Addition (page of 2) 2. Adding two digits (tens & ones) Using a number

More information

A natural number is called a perfect cube if it is the cube of some. some natural number.

A natural number is called a perfect cube if it is the cube of some. some natural number. A natural number is called a perfect square if it is the square of some natural number. i.e., if m = n 2, then m is a perfect square where m and n are natural numbers. A natural number is called a perfect

More information

Content Area: Mathematics- 3 rd Grade

Content Area: Mathematics- 3 rd Grade Unit: Operations and Algebraic Thinking Topic: Multiplication and Division Strategies Multiplication is grouping objects into sets which is a repeated form of addition. What are the different meanings

More information

Dragnet Abstract Test 4 Solution Booklet

Dragnet Abstract Test 4 Solution Booklet Dragnet Abstract Test 4 Solution Booklet Instructions This Abstract reasoning test comprises 16 questions. You will have 16 minutes in which to correctly answer as many as you can. In each question you

More information

Georgia Department of Education

Georgia Department of Education Fourth Grade 4.NOP.1 Multiplication and division; Find the factor pairs for a given whole number less than or equal to 100; recognize prime numbers as numbers greater than 1 with exactly one factor pair.

More information

Grade 7 Math notes Unit 5 Operations with Fractions

Grade 7 Math notes Unit 5 Operations with Fractions Grade 7 Math notes Unit Operations with Fractions name: Using Models to Add Fractions We can use pattern blocks to model fractions. A hexagon is whole A trapezoid is of the whole. A parallelogram is of

More information

Fractions Presentation Part 1

Fractions Presentation Part 1 New Jersey Center for Teaching and Learning Slide / Progressive Mathematics Initiative This material is made freely available at www.njctl.org and is intended for the non-commercial use of students and

More information

12th Bay Area Mathematical Olympiad

12th Bay Area Mathematical Olympiad 2th Bay Area Mathematical Olympiad February 2, 200 Problems (with Solutions) We write {a,b,c} for the set of three different positive integers a, b, and c. By choosing some or all of the numbers a, b and

More information

Math Exam 1 Review Fall 2009

Math Exam 1 Review Fall 2009 Note: This is NOT a practice exam. It is a collection of problems to help you review some of the material for the exam and to practice some kinds of problems. This collection is not necessarily exhaustive.

More information

CS 445 HW#2 Solutions

CS 445 HW#2 Solutions 1. Text problem 3.1 CS 445 HW#2 Solutions (a) General form: problem figure,. For the condition shown in the Solving for K yields Then, (b) General form: the problem figure, as in (a) so For the condition

More information

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

Meet #2. Park Forest Math Team. Self-study Packet Park Forest Math Team Meet #2 Self-study Packet Problem Categories for this Meet (in addition to topics of earlier meets): 1. Mystery: Problem solving 2. : rea and perimeter of polygons 3. Number Theory:

More information

Reigate Grammar School. 11+ Entrance Examination January 2012 MATHEMATICS

Reigate Grammar School. 11+ Entrance Examination January 2012 MATHEMATICS Reigate Grammar School + Entrance Examination January 0 MATHEMATICS Time allowed: 45 minutes NAME Work through the paper carefully You do not have to finish everything Do not spend too much time on any

More information

Fractions! You can find much more about all these issues, and more, in the ebook Understanding Fractions [ibooks]. Ronit Bird

Fractions! You can find much more about all these issues, and more, in the ebook Understanding Fractions [ibooks]. Ronit Bird Fractions Some children whether or not they are dyscalculic or dyslexic find the whole idea of fractions very difficult and confusing. One reason for the difficulty is that classroom teaching often focuses

More information

Grade 6/7/8 Math Circles April 1/2, Modular Arithmetic

Grade 6/7/8 Math Circles April 1/2, Modular Arithmetic Faculty of Mathematics Waterloo, Ontario N2L 3G1 Modular Arithmetic Centre for Education in Mathematics and Computing Grade 6/7/8 Math Circles April 1/2, 2014 Modular Arithmetic Modular arithmetic deals

More information

1. Write the fraction that each tile represents, if 1 (one) is represented by the yellow tile. Yellow Red Blue Green Purple Brown

1. Write the fraction that each tile represents, if 1 (one) is represented by the yellow tile. Yellow Red Blue Green Purple Brown Fraction Tiles Activity Worksheet In this activity you will be using fraction tiles to explore relationships among fractions. At the end of the activity your group will write a report. You may want to

More information

LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE

LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE LESSON 2: THE INCLUSION-EXCLUSION PRINCIPLE The inclusion-exclusion principle (also known as the sieve principle) is an extended version of the rule of the sum. It states that, for two (finite) sets, A

More information

3. If you can t make the sum with your cards, you must draw one card. 4. Players take turns rolling and discarding cards.

3. If you can t make the sum with your cards, you must draw one card. 4. Players take turns rolling and discarding cards. 1 to 10 Purpose: The object of the game is to get rid of all your cards. One player gets all the red cards, the other gets all the black cards. Players: 2-4 players Materials: 2 dice, a deck of cards,

More information

MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability. Preliminary Concepts, Formulas, and Terminology

MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability. Preliminary Concepts, Formulas, and Terminology MAT104: Fundamentals of Mathematics II Summary of Counting Techniques and Probability Preliminary Concepts, Formulas, and Terminology Meanings of Basic Arithmetic Operations in Mathematics Addition: Generally

More information