Problems translated from Croatian by: Ivan Pilat
|
|
|
- Roger Evans
- 9 years ago
- Views:
Transcription
1 1 st round, September 28 th, 201 TASK TRENER KUŠAČ RATAR LOPOV ORGANIZATOR SLASTIČAR source code trener.pas trener.c trener.cpp kusac.pas kusac.c kusac.cpp ratar.pas ratar.c ratar.cpp lopov.pas lopov.c lopov.cpp organizator.pas organizator.c organizator.cpp slasticar.pas slasticar.c slasticar.cpp standard (stdin) standard (stdout) time limit 1 second 1 second 1 second 1 second 1 second seconds memory limit 2 MB 2 MB 2 MB 2 MB 2 MB 6 MB point value Problems translated from Croatian by: Ivan Pilat
2 Task TRENER 1 st round, September 28 th, 201 Author: Marin Tomić Mirko has been moving up in the world of basketball, starting as a mere spectator, mastering snack salesmanship, finally reach the coveted position of the national team coach. He is now facing a difficult task: selecting the five primary players for the upcoming match against Tajikistan. Since Mirko is incredibly lazy, he doesn't bother remembering players' names, let alone their actual skills. That's why he has settled on selecting five players who share the same first letter of their surnames, so that he can remember them more easily. If there are no five players sharing the first letter of their surnames, Mirko will simply forfeit the game! In order to obtain insight into possibilities for his team, Mirko wants to know all the different letters that his primary team's surnames may begin with. The first line of contains the positive integer N (1 N 150), the number of players that Mirko has available. Each of the following N lines contains one word (at most 0 characters long, consisting only of lowercase English letters), a surname of one of the players. If there are no five players that Mirko can select matching his criteria, a single line containing the word PREDAJA 1 (without quotes). Otherwise, all possible first letters of representation player surnames, sorted lexicographically, in a single line with no spaces. 18 babic keksic boric bukic sarmic balic kruzic hrenovkic beslic boksic krafnic pecivic klavirkovic kukumaric sunkic kolacic kovacic prijestolonasljednikovic 6 michael jordan lebron james kobe bryant bk PREDAJA Clarification of the first example: Mirko can choose between teams with all players' surnames begining with either 'k' or 'b'. 1 Croatian word for surrender
3 Task KUŠAČ 1 st round, September 28 th, 201 Author: Adrian Satja Kurdija Mirko has given up on the difficult coach job and switched to food tasting instead. Having skipped breakfast like a professional connoisseur, he is visiting a Croatian cured meat festival. The most renowned cook at the festival, Marijan Bajs, has prepared N equal sausages which need to be distributed to M tasters such that each taster gets a precisely equal amount. He will use his trusted knife to cut them into pieces. In order to elegantly divide the sausages, the number of cuts splitting individual sausages must be as small as possible. For instance, if there are two sausages and six tasters (the first test case below), it is sufficient to split each sausage into three equal parts, making a total of four cuts. On the other hand, if there are three sausages and four tasters (the second test case below), one possibility is cutting off three quarters of each sausage. Those larger parts will each go to one of the tasrers, while the fourth taster will get the three smaller pieces (quarters) left over. Mirko wants to try the famous sausages, so he volunteered to help Bajs. Help them calculate the minimum total number of cuts needed to carry out the desired division. The first and only line of contains two positive integers, N and M (1 N, M 0), the number of sausages and tasters, respectively. The first and only line of must contain the required minimum number of cuts
4 Task RATAR 1 st round, September 28 th, 201 Author: Matija Bucić After Mirko's failed stint as a coach and a passing obsession with Croatian meat delicacies, his weight problems have motivated him to work hard as a farmer. He has moved to a village where his friend Slavko lives. Farmers in the village share a large common plot of land in the shape of a N N square, divided into N² unit squares. A unit square at coordinates 2 (i, j) brings in the income of A ij, which can be negative (for example, if the square has to be maintained but is not cultivated). The farmers always divide the common land into smaller rectangular fields with edges parallel to the common land edges. Slavko is skeptical of Mirko since his failure as a coach, so he insists that both of them are assigned land with the same total income, but also thet the two plots share exactly one common corner so that the two friends can keep an eye on each other (Slavko knows that Mirko is prone to mischief). The common corner must be the only point where the two plots meet, in order to prevent border-related arguments. You are given a description of the common land plot. Find the total number of plot pairs that satisfy Slavko's criteria. The first line of contains the positive integer N (1 N 50), the dimensions of the common land plot. Each of the following N lines contains N space-separated numbers A ij (-00 < A ij < 00), the income provided by the respective cell. The first and only line of must contain the totl number of plot pairs satisfying the given condition. SCORING In test data worth at least 0% of total points, N will be at most Clarification of the first example: The possible rectangle pairs are: (0,0)-(1,1) and (2,2)-(2,2), (1,0)-(1,0) and (0,1)-(0,1), (2,0)-(2,0) and (1,1)-(1,1), (1,1)-(1,1) and (0,2)-(0,2), (2,1)-(2,1) and (1,2)-(1,2), (2,0)-(2,1) and (0,2)-(1,2), (1,0)-(2,0) and (0,1)-(0,2). 2 The first number in the parenthesis denotes the row, and the second number denotes the column
5 Task LOPOV 1 st round, September 28 th, 201 Author: Domagoj Ćevid The difficult economic situation in the country and reductions in government agricultural subsidy funding have caused Mirko to change his career again, this time to a thief. His first professional endeavour is a jewellery store heist. The store contains N pieces of jewellery, and each piece has some mass M i and value V i. Mirko has K bags to store his loot, and each bag can hold some maximum mass C i. He plans to store all his loot in these bags, but at most one jewellery piece in each bag, in order to reduce the likelihood of damage during the escape. Find the maximum total jewellery value that Mirko can liberate. The first line of contains two numbers, N and K (1 N, K ). Each of the following N lines contains a pair of numbers, M i and V i (1 M i, V i ). Each of the following K lines contains a number, C i (1 C i ). All numbers in the are positive integers. The first and only line of must contain the maximum possible total jewellery value. SCORING In test data worth at least 50% of total points, N and K will be less than Clarification of the second example: Mirko stores the first piece of jewellery into the second bag and the third piece into the first bag.
6 Task ORGANIZATOR 1 st round, September 28 th, 201 Author: Domagoj Ćevid Unexpected problems with law enforcement have convinced Mirko to take up a less lucrative but less morally ambiguous career: he has become the chief organizer of a team computer science contest. There are N CS clubs that wish to participate in the contest. The presidents of the clubs are quite stubborn and will participate in the contest only if the contest team size makes it possible for all club members to participate. The contest consists of two rounds: qualifications and finals. All teams that are competing must have an equal number of members and all members of one team must belong to the same club. Any number of teams from each club can participate in the qualification round, and the best team from each club earns a spot in the finals. Mirko is aware that, with a new and unproven contest, he needs publicity. For that reason, he wants to set the team size such that the number of individual participants in the finals is as large as possible. Remember, each club that participates has a right to one team in the finals. Furthermore, at least two clubs must participate in the contest, otherwise the contest would be too boring to attract sponsors. Determine the maximum possible number of participants in the finals so that Mirko can double check his team size choice. The first line of contains the positive integer N (2 N ), the number of clubs. The second line of contains N space-separated integers from the interval [1, ], the number of members of each club. The first and only line of must contain the maximum possible number of finalists. SCORING In test data worth at least 0% of total points, N will be less than Clarification of the first example: Mirko decides on 2 members per team, so clubs 2 and participate.
7 Task SLASTIČAR 1 st round, September 28 th, 201 Author: Marin Tomić Organizing CS contests didn't prove very lucrative for Mirko, so he has opened an ice cream and pastry shop. The business was flourishing until, one day, the European Union health inspection decided to pay him a visit. A new directive specifies M banned ingredients which cannot appear in food even in trace amounts. Each ingredient has a serial number consisting of digits 0 through 9. The declaration on each food package lists all the serial numbers of ingredients contained in the respective food item. Mirko must check whether any of his products has a banned ingredient serial number listed on its declaration. However, Mirko, being inept and reckless as always, decided to concatenate all the serial numbers into one long number with length N believing that it will make his job easier. He has borrowed a robot from his friend Slavko. The robot is programmed to check whether a serial number A contains another serial number B as a substring. Let us denote the length of B by L. The robot carries out search as follows: First, it compares the segment of A from position 1 to position L, digit by digit, with the digits in B. Comparison is stopped when a differing digit is found or when the segments are determined to be equal. If the segments are equal, the search is stopped and the match reported. If the segments are not equal, the procedure above is repeated with the segment from 2 to L+1. If those segments aren't equal either, the search continues with segments to L+2, to L+ etc. If the robot doesn't have a sufficient number of digits to obtain a full segment of length L (for example, starting at character 5 in a serial number with length 8, a segment with length 6 is needed), it will pad the number with '#' signs. For example, the segment of "5622" from position to position is "22####". If the robot reaches the end of the serial number (having tried out all N segments) without having found B, the absence of match is reported. The robot takes one second for each comparison between two digits, and Slavko charges Mirko one dollar per second for using the robot. Help Mirko determine how much money he'll have to pay Slavko for pattern matching! The first line of contains the positive integer N (1 N 0 000), the length of the long serial number. The second line of contains N digits from 0 to 9, the long serial number. The third line of contains the positive integer M (1 M ), the number of banned ingeredients. Each of the following M rows contains a single banned serial number, A banned serial number will not exceed digits in length. The total length of all banned serial numbers will not exceed digits. Output M integers, one per line. Line i must contain the dollar amount that Mirko needs to pay Slavko for the search for ingredient serial number i.
8 Task SLASTIČAR 1 st round, September 28 th, 201 Author: Marin Tomić SCORING In test data worth at least 20% of total points, the following constraints hold: 1 N 00 1 M 500 length of a single banned ingredient serial number doesn't exceed Clarification of the first example: First serial number: the robot finds differing first digits for every segment a total of 7 comparisons. Second serial number: tries first position, finding difference immediately (1 comparison). Tries second position, finding difference on the fourth digit ( comparisons). Tries third position, finding difference immediately (1 comparison).tries fourth position, finding a match ( comparisons). Total: comparisons. Third serial number: finds match immediately ( comparisons). Fourth serial number: finds match at second position (1 + = comparisons). Clarification of the third example: The robot compares the serial number '11' in order with segments '00' (1 comparison), '01' (1 comparison) and '1#' (2 comparisons). Total: comparisons.
Maths Targets for pupils in Year 2
Maths Targets for pupils in Year 2 A booklet for parents Help your child with mathematics For additional information on the agreed calculation methods, please see the school website. ABOUT THE TARGETS
CALCULATIONS & STATISTICS
CALCULATIONS & STATISTICS CALCULATION OF SCORES Conversion of 1-5 scale to 0-100 scores When you look at your report, you will notice that the scores are reported on a 0-100 scale, even though respondents
Croatian Open Competition in Informatics, contest 3 December 16, 2006
Task overview Task PATULJCI NPUZZLE TROJKE TENKICI BICIKLI LISTA Memory limit (heap) Memory limit (stack) Time limit (per test) Number of tests Points per test Total points standard (keyboard) standard
Numeracy Targets. I can count at least 20 objects
Targets 1c I can read numbers up to 10 I can count up to 10 objects I can say the number names in order up to 20 I can write at least 4 numbers up to 10. When someone gives me a small number of objects
Social Return on Investment
Social Return on Investment Valuing what you do Guidance on understanding and completing the Social Return on Investment toolkit for your organisation 60838 SROI v2.indd 1 07/03/2013 16:50 60838 SROI v2.indd
Integer Programming Formulation
Integer Programming Formulation 1 Integer Programming Introduction When we introduced linear programs in Chapter 1, we mentioned divisibility as one of the LP assumptions. Divisibility allowed us to consider
Instruction in this lesson should result in students achieving the following objectives: 1. Identify components of a record.
Unit B: Understanding the Purpose of Record Keeping for Agribusinesses Lesson 2: Student Learning Objectives: Instruction in this lesson should result in students achieving the following objectives: 1.
Three daily lessons. Year 5
Unit 6 Perimeter, co-ordinates Three daily lessons Year 4 Autumn term Unit Objectives Year 4 Measure and calculate the perimeter of rectangles and other Page 96 simple shapes using standard units. Suggest
ALGEBRA. sequence, term, nth term, consecutive, rule, relationship, generate, predict, continue increase, decrease finite, infinite
ALGEBRA Pupils should be taught to: Generate and describe sequences As outcomes, Year 7 pupils should, for example: Use, read and write, spelling correctly: sequence, term, nth term, consecutive, rule,
Pigeonhole Principle Solutions
Pigeonhole Principle Solutions 1. Show that if we take n + 1 numbers from the set {1, 2,..., 2n}, then some pair of numbers will have no factors in common. Solution: Note that consecutive numbers (such
7 Relations and Functions
7 Relations and Functions In this section, we introduce the concept of relations and functions. Relations A relation R from a set A to a set B is a set of ordered pairs (a, b), where a is a member of A,
Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 5 7
Ma KEY STAGE 3 Mathematics test TIER 5 7 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You
ADVENTURES IN COINS RATIONALE FOR ADVENTURE TAKEAWAYS FOR CUB SCOUTS ADVENTURE REQUIREMENTS. Wolf Handbook, page 124
CHARACTER CHARACTER CHARACTER CHARACTER ADVENTURES IN COINS RATIONALE FOR ADVENTURE Coins are more than just money. In this adventure, Wolves will learn how to spot the various markings on a coin and identify
1 st Grade Math Do-Anytime Activities
1 st Grade Have your child help create a number line (0-15) outside with sidewalk chalk. Call out a number and have your child jump on that number. Make up directions such as Hop to the number that is
Unit 1 Equations, Inequalities, Functions
Unit 1 Equations, Inequalities, Functions Algebra 2, Pages 1-100 Overview: This unit models real-world situations by using one- and two-variable linear equations. This unit will further expand upon pervious
H o w t o W r i t e a J u d g e m e n t
H o w t o W r i t e a J u d g e m e n t A) Function of a Judgement: Being the final result of a legal procedure a judgement shall provide a balanced conflict solution. An ideal judgement enables both conflict
Crude: The Oil Game 1
Crude: The Oil Game 1 Contents Game Components... 3 Introduction And Object Of The Game... 4 Setting Up The Game... 4 Pick A Starting Player... 6 The Special Purchase Round... 6 Sequence Of Play... 7 The
Tutorial Customer Lifetime Value
MARKETING ENGINEERING FOR EXCEL TUTORIAL VERSION 150211 Tutorial Customer Lifetime Value Marketing Engineering for Excel is a Microsoft Excel add-in. The software runs from within Microsoft Excel and only
Grade 2 Level. Math Common Core Sampler Test
Grade 2 Level Math Common Core Sampler Test Everyone we come in contact with is scrambling to get their hands on example questions for this grade level. This test sampler is put together to give you an
One-Inch Graph Paper
One-Inch Graph Paper Classroom Strategies Blackline Master II - 1 49 Half-Inch Graph Paper 50 Classroom Strategies Blackline Master II - 2 Two-Centimeter Graph Paper Classroom Strategies Blackline Master
Math 115 Extra Problems for 5.5
Math 115 Extra Problems for 5.5 1. The sum of two positive numbers is 48. What is the smallest possible value of the sum of their squares? Solution. Let x and y denote the two numbers, so that x + y 48.
PIZZA! PIZZA! TEACHER S GUIDE and ANSWER KEY
PIZZA! PIZZA! TEACHER S GUIDE and ANSWER KEY The Student Handout is page 11. Give this page to students as a separate sheet. Area of Circles and Squares Circumference and Perimeters Volume of Cylinders
Lesson 3.1 Factors and Multiples of Whole Numbers Exercises (pages 140 141)
Lesson 3.1 Factors and Multiples of Whole Numbers Exercises (pages 140 141) A 3. Multiply each number by 1, 2, 3, 4, 5, and 6. a) 6 1 = 6 6 2 = 12 6 3 = 18 6 4 = 24 6 5 = 30 6 6 = 36 So, the first 6 multiples
Iteration CHAPTER 6. Topic Summary
CHAPTER 6 Iteration TOPIC OUTLINE 6.1 while Loops 6.2 for Loops 6.3 Nested Loops 6.4 Off-by-1 Errors 6.5 Random Numbers and Simulations 6.6 Loop Invariants (AB only) Topic Summary 6.1 while Loops Many
Third Grade Math Games
Third Grade Math Games Unit 1 Lesson Less than You! 1.3 Addition Top-It 1.4 Name That Number 1.6 Beat the Calculator (Addition) 1.8 Buyer & Vendor Game 1.9 Tic-Tac-Toe Addition 1.11 Unit 2 What s My Rule?
The Pointless Machine and Escape of the Clones
MATH 64091 Jenya Soprunova, KSU The Pointless Machine and Escape of the Clones The Pointless Machine that operates on ordered pairs of positive integers (a, b) has three modes: In Mode 1 the machine adds
Ch. 13.2: Mathematical Expectation
Ch. 13.2: Mathematical Expectation Random Variables Very often, we are interested in sample spaces in which the outcomes are distinct real numbers. For example, in the experiment of rolling two dice, we
Hooray for the Hundreds Chart!!
Hooray for the Hundreds Chart!! The hundreds chart consists of a grid of numbers from 1 to 100, with each row containing a group of 10 numbers. As a result, children using this chart can count across rows
Probability Distributions
CHAPTER 5 Probability Distributions CHAPTER OUTLINE 5.1 Probability Distribution of a Discrete Random Variable 5.2 Mean and Standard Deviation of a Probability Distribution 5.3 The Binomial Distribution
YEAR 6 BLOCK 2 ASSESSMENT
WIGAN LEA NUMERACY STRATEGY YEAR 6 BLOCK ASSESSMENT 6 Name: Date: KEY OBJECTIVES ASSESSED Question Order a mixed set of numbers with up to three decimal places. 3 Reduce a fraction to its simplest form
Unit 6 Direction and angle
Unit 6 Direction and angle Three daily lessons Year 4 Spring term Unit Objectives Year 4 Recognise positions and directions: e.g. describe and find the Page 108 position of a point on a grid of squares
POLYNOMIAL FUNCTIONS
POLYNOMIAL FUNCTIONS Polynomial Division.. 314 The Rational Zero Test.....317 Descarte s Rule of Signs... 319 The Remainder Theorem.....31 Finding all Zeros of a Polynomial Function.......33 Writing a
Activity 1: Solving a System of Linear Equations
John Neral Teaching Notes and Solutions Objective: Students will be able to solve a system of linear equations by using the Casio fx-5es and interpret the solutions. Getting Started: When solving a system
Fractions. If the top and bottom numbers of a fraction are the same then you have a whole one.
What do fractions mean? Fractions Academic Skills Advice Look at the bottom of the fraction first this tells you how many pieces the shape (or number) has been cut into. Then look at the top of the fraction
Graphical Integration Exercises Part Four: Reverse Graphical Integration
D-4603 1 Graphical Integration Exercises Part Four: Reverse Graphical Integration Prepared for the MIT System Dynamics in Education Project Under the Supervision of Dr. Jay W. Forrester by Laughton Stanley
Regular Languages and Finite Automata
Regular Languages and Finite Automata 1 Introduction Hing Leung Department of Computer Science New Mexico State University Sep 16, 2010 In 1943, McCulloch and Pitts [4] published a pioneering work on a
sample median Sample quartiles sample deciles sample quantiles sample percentiles Exercise 1 five number summary # Create and view a sorted
Sample uartiles We have seen that the sample median of a data set {x 1, x, x,, x n }, sorted in increasing order, is a value that divides it in such a way, that exactly half (i.e., 50%) of the sample observations
Lecture 3. Linear Programming. 3B1B Optimization Michaelmas 2015 A. Zisserman. Extreme solutions. Simplex method. Interior point method
Lecture 3 3B1B Optimization Michaelmas 2015 A. Zisserman Linear Programming Extreme solutions Simplex method Interior point method Integer programming and relaxation The Optimization Tree Linear Programming
To download the script for the listening go to: http://www.teachingenglish.org.uk/sites/teacheng/files/learning-stylesaudioscript.
Learning styles Topic: Idioms Aims: - To apply listening skills to an audio extract of non-native speakers - To raise awareness of personal learning styles - To provide concrete learning aids to enable
Algebra: Real World Applications and Problems
Algebra: Real World Applications and Problems Algebra is boring. Right? Hopefully not. Algebra has no applications in the real world. Wrong. Absolutely wrong. I hope to show this in the following document.
RULE 1. The Field of Play
RULE 1 The Field of Play 1.1 Dimensions 1.1.1 The field of play shall be rectangular, the width of which shall not be more than 75 yards [68.58 m] or less than 70 yards [64.01 m] and shall not exceed the
Math 120 Final Exam Practice Problems, Form: A
Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,
To Evaluate an Algebraic Expression
1.5 Evaluating Algebraic Expressions 1.5 OBJECTIVES 1. Evaluate algebraic expressions given any signed number value for the variables 2. Use a calculator to evaluate algebraic expressions 3. Find the sum
Unit 7 The Number System: Multiplying and Dividing Integers
Unit 7 The Number System: Multiplying and Dividing Integers Introduction In this unit, students will multiply and divide integers, and multiply positive and negative fractions by integers. Students will
Grade 7/8 Math Circles Fall 2012 Factors and Primes
1 University of Waterloo Faculty of Mathematics Centre for Education in Mathematics and Computing Grade 7/8 Math Circles Fall 2012 Factors and Primes Factors Definition: A factor of a number is a whole
LAMC Beginners Circle: Parity of a Permutation Problems from Handout by Oleg Gleizer Solutions by James Newton
LAMC Beginners Circle: Parity of a Permutation Problems from Handout by Oleg Gleizer Solutions by James Newton 1. Take a two-digit number and write it down three times to form a six-digit number. For example,
Numeracy and mathematics Experiences and outcomes
Numeracy and mathematics Experiences and outcomes My learning in mathematics enables me to: develop a secure understanding of the concepts, principles and processes of mathematics and apply these in different
EQUATIONS and INEQUALITIES
EQUATIONS and INEQUALITIES Linear Equations and Slope 1. Slope a. Calculate the slope of a line given two points b. Calculate the slope of a line parallel to a given line. c. Calculate the slope of a line
Paper 1. Calculator not allowed. Mathematics test. First name. Last name. School. Remember KEY STAGE 3 TIER 6 8
Ma KEY STAGE 3 Mathematics test TIER 6 8 Paper 1 Calculator not allowed First name Last name School 2009 Remember The test is 1 hour long. You must not use a calculator for any question in this test. You
Lesson #13 Congruence, Symmetry and Transformations: Translations, Reflections, and Rotations
Math Buddies -Grade 4 13-1 Lesson #13 Congruence, Symmetry and Transformations: Translations, Reflections, and Rotations Goal: Identify congruent and noncongruent figures Recognize the congruence of plane
Current California Math Standards Balanced Equations
Balanced Equations Current California Math Standards Balanced Equations Grade Three Number Sense 1.0 Students understand the place value of whole numbers: 1.1 Count, read, and write whole numbers to 10,000.
MATHEMATICS Y6 Geometry 6750 Use co-ordinates and extend to 4 quadrants Equipment MathSphere www.mathsphere.co.uk
MATHEMATICS Y6 Geometry 675 Use co-ordinates and etend to quadrants Paper, pencil, ruler Equipment MathSphere 675 Use co-ordinates and etend to quadrants. Page Concepts Children should be familiar with
Grade 8 Performance Assessment Spring 2001
Cover Page of Exam Mathematics Assessment Collaborative Grade 8 Performance Assessment Spring 2001 District's Student Id # (Option: District May Use a Label Here) To be complete by official scorer MAC
Managerial Economics Prof. Trupti Mishra S.J.M. School of Management Indian Institute of Technology, Bombay. Lecture - 13 Consumer Behaviour (Contd )
(Refer Slide Time: 00:28) Managerial Economics Prof. Trupti Mishra S.J.M. School of Management Indian Institute of Technology, Bombay Lecture - 13 Consumer Behaviour (Contd ) We will continue our discussion
1MA0/3H Edexcel GCSE Mathematics (Linear) 1MA0 Practice Paper 3H (Non-Calculator) Set C Higher Tier Time: 1 hour 45 minutes
1MA0/H Edexcel GCSE Mathematics (Linear) 1MA0 Practice Paper H (Non-Calculator) Set C Higher Tier Time: 1 hour 45 minutes Materials required for examination Ruler graduated in centimetres and millimetres,
Fractions. Chapter 3. 3.1 Understanding fractions
Chapter Fractions This chapter will show you how to find equivalent fractions and write a fraction in its simplest form put fractions in order of size find a fraction of a quantity use improper fractions
Formal Languages and Automata Theory - Regular Expressions and Finite Automata -
Formal Languages and Automata Theory - Regular Expressions and Finite Automata - Samarjit Chakraborty Computer Engineering and Networks Laboratory Swiss Federal Institute of Technology (ETH) Zürich March
Session 6 Number Theory
Key Terms in This Session Session 6 Number Theory Previously Introduced counting numbers factor factor tree prime number New in This Session composite number greatest common factor least common multiple
1. The volume of the object below is 186 cm 3. Calculate the Length of x. (a) 3.1 cm (b) 2.5 cm (c) 1.75 cm (d) 1.25 cm
Volume and Surface Area On the provincial exam students will need to use the formulas for volume and surface area of geometric solids to solve problems. These problems will not simply ask, Find the volume
The Fruit of the Spirit is Love
The Fruit of the Spirit is Love Pre-Session Warm Up (Galatians 5:22-23) Today we are going to learn more about the fruit of the Spirit called, Love. What do you think of when you hear the word love? A
TEACHER S GUIDE TO RUSH HOUR
Using Puzzles to Teach Problem Solving TEACHER S GUIDE TO RUSH HOUR Includes Rush Hour 2, 3, 4, Rush Hour Jr., Railroad Rush Hour and Safari Rush Hour BENEFITS Rush Hour is a sliding piece puzzle that
Linear Programming. March 14, 2014
Linear Programming March 1, 01 Parts of this introduction to linear programming were adapted from Chapter 9 of Introduction to Algorithms, Second Edition, by Cormen, Leiserson, Rivest and Stein [1]. 1
Chapter 3. Cartesian Products and Relations. 3.1 Cartesian Products
Chapter 3 Cartesian Products and Relations The material in this chapter is the first real encounter with abstraction. Relations are very general thing they are a special type of subset. After introducing
ECON 459 Game Theory. Lecture Notes Auctions. Luca Anderlini Spring 2015
ECON 459 Game Theory Lecture Notes Auctions Luca Anderlini Spring 2015 These notes have been used before. If you can still spot any errors or have any suggestions for improvement, please let me know. 1
Chapter 2. Making Shapes
Chapter 2. Making Shapes Let's play turtle! You can use your Pencil Turtle, you can use yourself, or you can use some of your friends. In fact, why not try all three? Rabbit Trail 4. Body Geometry Can
Quantitative vs. Categorical Data: A Difference Worth Knowing Stephen Few April 2005
Quantitative vs. Categorical Data: A Difference Worth Knowing Stephen Few April 2005 When you create a graph, you step through a series of choices, including which type of graph you should use and several
Near Optimal Solutions
Near Optimal Solutions Many important optimization problems are lacking efficient solutions. NP-Complete problems unlikely to have polynomial time solutions. Good heuristics important for such problems.
Scope and Sequence KA KB 1A 1B 2A 2B 3A 3B 4A 4B 5A 5B 6A 6B
Scope and Sequence Earlybird Kindergarten, Standards Edition Primary Mathematics, Standards Edition Copyright 2008 [SingaporeMath.com Inc.] The check mark indicates where the topic is first introduced
Mathematics of Sudoku I
Mathematics of Sudoku I Bertram Felgenhauer Frazer Jarvis January, 00 Introduction Sudoku puzzles became extremely popular in Britain from late 00. Sudoku, or Su Doku, is a Japanese word (or phrase) meaning
Team Building Blocks. Team Building Activities with Blocks
Team Building Blocks Team Building Activities with Blocks. 1. Just a Glimpse Purpose of activity: This game encourages problem solving and helps groups learn to communicate effectively. The leader of the
Independent samples t-test. Dr. Tom Pierce Radford University
Independent samples t-test Dr. Tom Pierce Radford University The logic behind drawing causal conclusions from experiments The sampling distribution of the difference between means The standard error of
One pile, two pile, three piles
CHAPTER 4 One pile, two pile, three piles 1. One pile Rules: One pile is a two-player game. Place a small handful of stones in the middle. At every turn, the player decided whether to take one, two, or
4. How many integers between 2004 and 4002 are perfect squares?
5 is 0% of what number? What is the value of + 3 4 + 99 00? (alternating signs) 3 A frog is at the bottom of a well 0 feet deep It climbs up 3 feet every day, but slides back feet each night If it started
ISyE 2030 Test 2 Solutions
1 NAME ISyE 2030 Test 2 Solutions Fall 2004 This test is open notes, open books. Do precisely 5 of the following problems your choice. You have exactly 55 minutes. 1. Suppose that we are simulating the
Ready, Set, Go! Math Games for Serious Minds
Math Games with Cards and Dice presented at NAGC November, 2013 Ready, Set, Go! Math Games for Serious Minds Rande McCreight Lincoln Public Schools Lincoln, Nebraska Math Games with Cards Close to 20 -
Answer: The relationship cannot be determined.
Question 1 Test 2, Second QR Section (version 3) In City X, the range of the daily low temperatures during... QA: The range of the daily low temperatures in City X... QB: 30 Fahrenheit Arithmetic: Ranges
COWLEY COUNTY COMMUNITY COLLEGE REVIEW GUIDE Compass Algebra Level 2
COWLEY COUNTY COMMUNITY COLLEGE REVIEW GUIDE Compass Algebra Level This study guide is for students trying to test into College Algebra. There are three levels of math study guides. 1. If x and y 1, what
YMCA Basketball Games and Skill Drills for 3 5 Year Olds
YMCA Basketball Games and s for 3 5 Year Olds Tips ( s) Variations Page 2 Dribbling Game 10 Players will learn that they must be able to dribble to attack the basket (target) to score in basketball. The
CS 3719 (Theory of Computation and Algorithms) Lecture 4
CS 3719 (Theory of Computation and Algorithms) Lecture 4 Antonina Kolokolova January 18, 2012 1 Undecidable languages 1.1 Church-Turing thesis Let s recap how it all started. In 1990, Hilbert stated a
Excel: Introduction to Formulas
Excel: Introduction to Formulas Table of Contents Formulas Arithmetic & Comparison Operators... 2 Text Concatenation... 2 Operator Precedence... 2 UPPER, LOWER, PROPER and TRIM... 3 & (Ampersand)... 4
Maximum and minimum problems. Information sheet. Think about
Maximum and minimum problems This activity is about using graphs to solve some maximum and minimum problems which occur in industry and in working life. The graphs can be drawn using a graphic calculator
The theory of the six stages of learning with integers (Published in Mathematics in Schools, Volume 29, Number 2, March 2000) Stage 1
The theory of the six stages of learning with integers (Published in Mathematics in Schools, Volume 29, Number 2, March 2000) Stage 1 Free interaction In the case of the study of integers, this first stage
Math Games For Skills and Concepts
Math Games p.1 Math Games For Skills and Concepts Original material 2001-2006, John Golden, GVSU permission granted for educational use Other material copyright: Investigations in Number, Data and Space,
One-Way ANOVA using SPSS 11.0. SPSS ANOVA procedures found in the Compare Means analyses. Specifically, we demonstrate
1 One-Way ANOVA using SPSS 11.0 This section covers steps for testing the difference between three or more group means using the SPSS ANOVA procedures found in the Compare Means analyses. Specifically,
What is the Probability of Pigging Out
What is the Probability of Pigging Out Mary Richardson Susan Haller Grand Valley State University St. Cloud State University [email protected] [email protected] Published: April 2012 Overview of
Charlesworth School Year Group Maths Targets
Charlesworth School Year Group Maths Targets Year One Maths Target Sheet Key Statement KS1 Maths Targets (Expected) These skills must be secure to move beyond expected. I can compare, describe and solve
Area and Perimeter: The Mysterious Connection TEACHER EDITION
Area and Perimeter: The Mysterious Connection TEACHER EDITION (TC-0) In these problems you will be working on understanding the relationship between area and perimeter. Pay special attention to any patterns
Computational Geometry. Lecture 1: Introduction and Convex Hulls
Lecture 1: Introduction and convex hulls 1 Geometry: points, lines,... Plane (two-dimensional), R 2 Space (three-dimensional), R 3 Space (higher-dimensional), R d A point in the plane, 3-dimensional space,
How we teach calculations in Maths A Parent s Guide
How we teach calculations in Maths A Parent s Guide Belmont Maths Department 2011 1 Contents Introduction...Page 3 Maths at Belmont...Page 4 Addition...Page 5 Subtraction...Page 7 Multiplication...Page
I m Going To College Activity Book
I m Going To College Activity Book This activity book belongs to: Name of student who is going to college NORTHWEST EDUCATION LOAN ASSOCIATION Adapted from the California Association of Student Financial
grep, awk and sed three VERY useful command-line utilities Matt Probert, Uni of York grep = global regular expression print
grep, awk and sed three VERY useful command-line utilities Matt Probert, Uni of York grep = global regular expression print In the simplest terms, grep (global regular expression print) will search input
CHAPTER 1: LIMITS, ALTERNATIVES, AND CHOICES
CHAPTER 1: LIMITS, ALTERNATIVES, AND CHOICES Introduction At the heart of the study of economics is the simple but very real prospect that we cannot have it all. We have too few resources to meet all of
Self-Acceptance. A Frog Thing by E. Drachman (2005) California: Kidwick Books LLC. ISBN 0-9703809-3-3. Grade Level: Third grade
Self-Acceptance A Frog Thing by E. Drachman (2005) California: Kidwick Books LLC. ISBN 0-9703809-3-3 This Book Kit was planned by Lindsay N. Graham Grade Level: Third grade Characteristic Trait: Self Acceptance
Students are able to represent and solve problems involving multiplication and division.
Grade 3 Learning Targets and I Can Statements Operations and Algebraic Thinking Students are able to represent and solve problems involving multiplication and division. o I understand the product of multiplication
MY PLAN. This module is designed to help students gain perspective on themselves and their planning journey as they use MyRoad s My Plan feature.
MY PLAN This module is designed to help students gain perspective on themselves and their planning journey as they use MyRoad s My Plan feature. Lesson Plans: MY1: In Toward a Self-Portrait, students use
Diving Into Spending Plans Grade Level 7-9
2.15.1 Diving Into Spending Plans Grade Level 7-9 Get Ready to Take Charge of Your Finances Time to complete: 60 minutes National Content Standards Family and Consumer Science Standards: 1.1.6, 2.1.1,
Year 9 mathematics test
Ma KEY STAGE 3 Year 9 mathematics test Tier 6 8 Paper 1 Calculator not allowed First name Last name Class Date Please read this page, but do not open your booklet until your teacher tells you to start.
The History of the Mathematics of Card Counting Peter Woerde
The History of the Mathematics of Card Counting Peter Woerde Introduction It has been mathematically proven that card counting is a way to beat the casino in the game of 21, also known as black jack. To
Counting Money and Making Change Grade Two
Ohio Standards Connection Number, Number Sense and Operations Benchmark D Determine the value of a collection of coins and dollar bills. Indicator 4 Represent and write the value of money using the sign
Introduction to Matrices
Introduction to Matrices Tom Davis tomrdavis@earthlinknet 1 Definitions A matrix (plural: matrices) is simply a rectangular array of things For now, we ll assume the things are numbers, but as you go on
