(c) Finally apply critical path scheduling using two processors to the order requirement

Size: px
Start display at page:

Download "(c) Finally apply critical path scheduling using two processors to the order requirement"

Transcription

1 Blue Exam: 1. When scheduling tasks using the list-processing algorithm, increasing the number of machines always reduces the completion time. False. We even had an example in class where it made the completion time longer. 2. An Illinois resident with driver s license number N is a female. True. Females have the last three digits of their driver s license number greater than Assume an order-requirement digraph has a critical path with length 40 minutes. With at least two machines we can always complete all tasks in 40 minutes. False. Only if all the other task can be done together in 40 minutes too. 4. The first-fit decreasing (FFD) algorithm for bin packing is guaranteed to always produce an optimal solution. False. It gives good, fast solutions but not always optimal. This problem is also NP-complete. 5. (a) Given the order-requirement digraph below (with time given in minutes) and the priority list T1, T2, T3, T4, T5, T6, apply the list-processing algorithm to construct a schedule using two processors. Processor 1 would have T 1, T 3, T 4 and T 6 with a total run time of 18 minutes. Processor 2 would have T 2 and T 5 with idle time from time 12 on. (b) Repeat the algorithm but this time use three processors. Processor 1 would have T 1 and T 5 followed by 3 minutes of idle time and finally T 6 for a total of 16 minutes. Processor 2 would have T 2 followed by T 4 with idle time from 13 on. Processor 3 would have T 3 and then idle time from 4 on. (c) Finally apply critical path scheduling using two processors to the order requirement digraph above. The priority list would now be T2, T3, T1, T4, T5, T6. Processor 1 would have T 2, T 4, idle time from minutes and then T 6 from minutes. Processor 2 would have T 3, T 1, and T 5 with idle time from 14 on. 1

2 6. The table below represents species of plants which have competing light or water requirements. Draw the graph which would be useful in determining the minimum number of different habitats that would be needed to display all these plants in a garden. A B C D E A X X X B X X C X X D X X X E X X Put a vertex for each of plants A through E and then connect two vertices with an edge if and only if the plants have competing requirements. 7. Advertisements for the TV show Q are played in groups of ads where each group can last up to 2 minutes. If the ads slated for Q last 63, 32, 11, 19, 24, 87, 64, 36, 27, 42, and 63 seconds, determine, using both first fit (FF) and first fit decreasing (FFD), how many groups of ads would need to run during the show to play all the ads. For FF: Bin 1: 63, 32, 11 Bin 2: 19, 24, 64 Bin 3: 87, 27 Bin 4: 36, 42 Bin 5: 63 For FFD we have the order 87, 64, 63, 63, 42, 36, 32, 27, 24, 19, 11: Bin 1: 87, 32 Bin 2: 64, 42, 11 Bin 3: 63, 36, 19 Bin 4: 63, 27, (a) Given independent tasks of the following length: 9 minutes, 2 minutes, 8 minutes, 5 minutes, 4 minutes, 8 minutes, schedule them on two processors. Processor 1 would have 9, 5, 8 for a total time of 22 minutes. Processor 2 would have 2, 8, 4 and then idle time from 14 on. 2

3 (b) Now use the decreasing-time-list algorithm to schedule these tasks on two machines. We get the priority list: 9, 8, 8, 5, 4, 2. So Processor 1 would have 9, 5 and 4. Processor 2 would have 8, 8 and 2. Both are done in 18 minutes. (c) Is either schedule optimal? Why or Why not? The second one is optimal since there is no idle time. 9. (a) Determine the check digit which should be appended to the US Postal Service money order identification number The sum of the digits is 41 and 41/9 has remainder 5 so we add a check digit of 5. (b) Suppose the fourth digit of the ISBN 0-71x is obliterated. What is the missing digit? We use weights 10, 9, 8, and get that the sum should be x. We want 11 to divide this evenly. So we want to know which multiple of 11 can also be written as a multiple of 7. We get that 165 = = and so x = 6. (c) Determine the check character that should be appended to the bank identification number We use weights 7,3,9,7,3,9,7,3 to get a sum of 120 which ends in a zero so the check digit is zero. 10. Which of the algorithms: first fit (FF), next fit (NF), or worst fit (WF) would be most preferable when filling boxes on an assembly line? Why? We would want to use next fit since you can t go back on an assembly line. 11. If the UPC number is incorrectly entered as , will the error be detected by the check digit? No it will not be corrected. Since the weights on a UPC code are 3, 1, 3, 1, we will decrease the sum by 20 (36-16) and so will still have a number that ends in zero which is what makes a UPC code legitimate. 12. What is the minimum time required to complete 12 independent tasks on 3 processors when the sum of all the times of the 12 tasks is 60 minutes? 3

4 It will take a minimum of 60/3 = 20 minutes. This is the best possible if there is no idle time. 13. Give an example of a graph that cannot be colored with two colors. There are LOTS of answers here. For instance, the complete graph on 5 vertices cannot be colored with two colors. See me if you have questions about a particular graph. 14. Does the following have the correct structure for a legitimate Postnet bar code? Why or why not? Could you find the last two digits of the receiver s street address from this code? Circle the check digit. This has the right structure, two guard bars, 12 groupings of 5 lines each, each grouping has 2 large and 3 small lines. Since this bar code has 12 groupings, it consists of the zip code, the extra 4 code, the last two digits of the receiver s street address or PO box and the check digit which is the last 5 bars before the final guard bar on the right side. Bonus: (5 points) Prove that the ISBN code can detect any single digit error. See class notes or the book for the proof of this. Ivory Exam: 1. Assume an order-requirement digraph has a critical path with length 40 minutes. If the digraph is scheduled on four machines, we may sometimes be able to complete all tasks in 35 minutes. False. We can never complete all jobs in less time than the critical path. 2. An Illinois resident with driver s license number containing the last four digits 7825 was born in

5 False. The 7 in 7825 is the last digit of the year the person was born in. We don t know what decade, though. That would be the number before the When scheduling tasks using the list-processing algorithm, decreasing the time of each task always decreases the completion time. False. We had an example in class where the time was actually increased. 4. The first fit (FF) algorithm never uses more boxes (bins) than the next fit (NF) algorithm. True. Piece by piece, for first fit, each piece is at worst in the same bin as it is for next fit so at worst we use the same number of bins. 5. (a) Given the order-requirement digraph below (with time given in minutes) and the priority list T1, T2, T3, T4, T5, T6, apply the list-processing algorithm to construct a schedule using two processors. Processor 1 would have T1, T3, T6, T4 for a total run time of 17 minutes. Processor 2 would have T2 and T5 with a total run time of 13 minutes and idle time from 13 on. (b) Repeat the algorithm but this time use three processors. Processor 1 would have T1, then idle time from 4-5, then T5 and finally T4 for a total run time of 16 minutes. Processor 2 would have T2 and then idle time from time 5 on. Processor 3 would have T3 and T6 and then idle time from 10 on. (c) Finally apply critical path scheduling using two processors to the order requirement digraph above. The priority list would be T2,T1,T3,T5,T6,T4. Processor 1 would have T2, T5, idle time from 13 to 14 and then T4 for a total run time of 16. Processor 2 would have T1, T3, T6 and idle time from 14 on. 6. (a) Given independent tasks of the following length: 3 minutes, 5 minutes, 8 minutes, 4 minutes, 6 minutes, 2 minutes, schedule them on two processors. Processor 1 has 3, 8, 2 and idle time from Processor 1 has 5, 4, 6 for a total run time of 15 minutes. (b) Now use the decreasing-time-list algorithm to schedule these tasks on two 5

6 machines. Processor 1 has 8, 4, 2 for a total run time of 14 minutes. Processor 2 has 6, 5, 3 for a total run time of 14 minutes also. (c) Is either schedule optimal? Why or Why not? The second schedule is optimal since it has no idle time. 7. Advertisements for the TV show Q are played in groups of ads where each group can last up to 2 minutes. If the ads slated for Q last 63, 32, 11, 19, 24, 87, 64, 36, 27, 42, and 63 seconds, determine, using both first fit (FF) and first fit decreasing (FFD), how many groups of ads would need to run during the show to play all the ads. See Blue The table below shows chemical compounds which cannot be mixed without causing dangerous reactions. Draw the graph which would be used to facilitate scheduling of disposal containers for the compounds. A B C D E F A X X X B X X X X C X X D X X X E X X F X X Put a vertex for each of the chemicals A through F and then connect two vertices with an edge if and only if the chemicals are incompatible. 9. (a) Determine the check digit which should be appended to the US Postal Service money order identification number We sum the digits and get 46. The remainder on division by 9 is 1 so the check digit is 1. (b) Is the number a legitimate bank identification number? We use the weights 7,3,9,7,3,9,7,3 and get 93 so the last digit should be a 3 (last digit of 93) but in this case it is a 5 so the number is not legitimate. 6

7 (c) Determine the check digit that should be appended to the Master Card number This is Codabar. The sum of the odd place digits is 30 and so multiplied by 2 gives us 60. Also, there are 3 odd place digits greater than 4. Finally the even places sum to 25 so we get = 88. So to get a number that 10 evenly divides, we append a check digit of If the UPC number is incorrectly entered as , will the error be detected by the check digit? We are subtracting 2 from the sum and adding 8 which is a net gain of 6 so the sum will no longer end in a zero so we can tell an error has occurred. 11. Which of the algorithms: first fit (FF), next fit (NF), or worst fit (WF) would be most preferable when filling boxes on an assembly line? Why? We would want to use next fit since you can t go back on an assembly line. 12. What is the minimum time to complete 12 independent tasks on 4 processors when the sum of all the times of the 12 tasks is 60 minutes? It will take a minimum of 60/4=15 minutes to complete all the tasks. This is best possible if there is no idle time. 13. Does the following have the correct structure for a legitimate Postnet bar code? Why or why not? Why or why not? Could you find the last two digits of the receiver s street address from this code? Circle the check digit. This has the right structure, two guard bars, 10 groupings of 5 lines each, each grouping has 2 large and 3 small lines. Since this bar code has 10 groupings, it consists of the zip code, the extra 4 code, and the check digit which is the last 5 bars before the final guard bar on the right side. It does not include the last two digits of the receiver s street address or PO box. 7

8 14. Give an example of a graph that cannot be colored with two colors. There are LOTS of answers here. For instance, the complete graph on 5 vertices cannot be colored with two colors. See me if you have questions about a particular graph. Bonus: (5 points) Prove that the ISBN code can detect any single digit error. See class notes or the book for a proof of this. 8

Check off these skills when you feel that you have mastered them.

Check off these skills when you feel that you have mastered them. Chapter Objectives Check off these skills when you feel that you have mastered them. Understand the purpose of a check digit and be able to determine one for various schemes. Given an identification number

More information

is evenly divisibly by 10. What is the check digit for the mild RO TEL?

is evenly divisibly by 10. What is the check digit for the mild RO TEL? Math 167 Ch 16 Review 1 (c) Janice Epstein 2014 CHAPTER 16 IDENTIFICATION NUMBERS Consider the UPC code on a can of RO TEL tomatoes The scanner is not working so the clerk enters the numbers by hand as

More information

Encoding and Encrypting Information

Encoding and Encrypting Information Encoding and Encrypting Information Information is often encoded numerically. By using some mathematics to encode information in an appropriate way, we can overcome problems encountered in dealing with

More information

Chapter 3. Planning and Scheduling. Chapter Objectives. Check off these skills when you feel that you have mastered them.

Chapter 3. Planning and Scheduling. Chapter Objectives. Check off these skills when you feel that you have mastered them. Chapter Objectives Check off these skills when you feel that you have mastered them. State the assumptions for the scheduling model. Compute the lower bound on the completion time for a list of independent

More information

Math for Liberal Studies

Math for Liberal Studies Math for Liberal Studies An identification number is a sequence of letters and/or numbers that identifies an object, person, place, or concept The number should unambiguously identify something: no two

More information

The UPC codes use a check digit to minimize scanning errors. A check digit is a digit included in a code to help detect errors.

The UPC codes use a check digit to minimize scanning errors. A check digit is a digit included in a code to help detect errors. Math 167 Ch 16 WIR 1 (c) Janice Epstein and Tamara Carter 2015 CHAPTER 16 IDENTIFICATION NUMBERS Consider the UPC code on a can of RO TEL tomatoes The scanner is not working so the clerk enters the numbers

More information

MITOCW watch?v=penh4mv5gag

MITOCW watch?v=penh4mv5gag MITOCW watch?v=penh4mv5gag PROFESSOR: Graph coloring is the abstract version of a problem that arises from a bunch of conflict scheduling situations. So let's look at an example first and then define the

More information

What is a Fraction? Fractions. One Way To Remember Numerator = North / 16. Example. What Fraction is Shaded? 9/16/16. Fraction = Part of a Whole

What is a Fraction? Fractions. One Way To Remember Numerator = North / 16. Example. What Fraction is Shaded? 9/16/16. Fraction = Part of a Whole // Fractions Pages What is a Fraction? Fraction Part of a Whole Top Number? Bottom Number? Page Numerator tells how many parts you have Denominator tells how many parts are in the whole Note: the fraction

More information

HOW TO DIVIDE: MCC6.NS.2 Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE

HOW TO DIVIDE: MCC6.NS.2 Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE MCC6.NS. Fluently divide multi-digit numbers using the standard algorithm. WORD DEFINITION IN YOUR WORDS EXAMPLE Dividend A number that is divided by another number. Divisor A number by which another number

More information

Number Sense Workbook 7, Part 1: Unit 3

Number Sense Workbook 7, Part 1: Unit 3 Number Sense Workbook, Part : Unit Worksheet NS- page. a),, : 0,,,,, 0, : 0,, 0,, 0,, 0. a) Yes No Yes; Yes; Yes. a) 0 All whole numbers, since any whole number times zero is zero.. is a factor of. is

More information

b) Describe a procedure visitors should follow to find a free parking space, when the space they are assigned is occupied.

b) Describe a procedure visitors should follow to find a free parking space, when the space they are assigned is occupied. Exercises Exercises 1. Which memory locations are assigned by the hashing function h(k) = k mod 97 to the records of insurance company customers with these Social Security numbers? a) 034567981 b) 183211232

More information

Approximation Algorithms

Approximation Algorithms Approximation Algorithms Subhash Suri November 27, 2017 1 Bin Packing Algorithms A classical problem, with long and interesting history. One of the early problems shown to be intractable. Lends to simple

More information

Learning Log Title: CHAPTER 3: ARITHMETIC PROPERTIES. Date: Lesson: Chapter 3: Arithmetic Properties

Learning Log Title: CHAPTER 3: ARITHMETIC PROPERTIES. Date: Lesson: Chapter 3: Arithmetic Properties Chapter 3: Arithmetic Properties CHAPTER 3: ARITHMETIC PROPERTIES Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 3: Arithmetic Properties Date: Lesson: Learning Log Title:

More information

Brief History. Graph Theory. What is a graph? Types of graphs Directed graph: a graph that has edges with specific directions

Brief History. Graph Theory. What is a graph? Types of graphs Directed graph: a graph that has edges with specific directions Brief History Graph Theory What is a graph? It all began in 1736 when Leonhard Euler gave a proof that not all seven bridges over the Pregolya River could all be walked over once and end up where you started.

More information

Fractions / 8 / / 10 1 ½ / 12

Fractions / 8 / / 10 1 ½ / 12 Fractions / 8 / 60 / ½ / 0 / What is a fraction? Loosely speaking, a fraction is a quantity that cannot be represented by a whole number. Why do we need fractions? Consider the following scenario. Can

More information

Fraction Arithmetic. A proper fraction is a fraction with a smaller numerator than denominator.

Fraction Arithmetic. A proper fraction is a fraction with a smaller numerator than denominator. Fraction Arithmetic FRAX is a game that is designed to help you and your student/child master fractions, but it does not teach them the basics. I ve put together this document to help remind you about

More information

Elfring Fonts LaserJet Bar Codes & More

Elfring Fonts LaserJet Bar Codes & More Elfring Fonts LaserJet Bar Codes & More This package contains five separate types of bar code fonts, and two OCR fonts. These PCL bar code fonts can not be used unless you understand how each bar code

More information

Part I. Problems in this section are mostly short answer and multiple choice. Little partial credit will be given. 5 points each.

Part I. Problems in this section are mostly short answer and multiple choice. Little partial credit will be given. 5 points each. Math 106/108 Final Exam Page 1 Part I. Problems in this section are mostly short answer and multiple choice. Little partial credit will be given. 5 points each. 1. Factor completely. Do not solve. a) 2x

More information

Section 3.1 Fractions to Decimals

Section 3.1 Fractions to Decimals Section 3.1 Fractions to Decimals A fraction is a part of a whole. For example, it means 1 out of 5 possible pieces. is a fraction; Fractions also illustrate division. For example, also means 1 5 which

More information

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 1 IDL Operators

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 1 IDL Operators ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 1 IDL Operators ARITHMATIC OPERATORS The assignment operator in IDL is the equals sign, =. IDL uses all the familiar arithmetic operators

More information

Definition 1.1. A matching M in a graph G is called maximal if there is no matching M in G so that M M.

Definition 1.1. A matching M in a graph G is called maximal if there is no matching M in G so that M M. 1 Matchings Before, we defined a matching as a set of edges no two of which share an end in common. Suppose that we have a set of jobs and people and we want to match as many jobs to people as we can.

More information

Chinle USD CURRICULUM GUIDE. SUBJECT: Math GRADE: 5th TIMELINE: 4th QUARTER

Chinle USD CURRICULUM GUIDE. SUBJECT: Math GRADE: 5th TIMELINE: 4th QUARTER Strand 1: Number and Number Sense PO 1. Determine equivalence by converting between benchmark fractions, decimals, and percents. M I will convert between fractions, decimals, and percents. Evaluation Fractions

More information

(Refer Slide Time: 01.26)

(Refer Slide Time: 01.26) Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture # 22 Why Sorting? Today we are going to be looking at sorting.

More information

1 Addition and Subtraction

1 Addition and Subtraction Worsheet for 5.: Operations with Fractions Addition and Subtraction Adding/subtracting when there is a common denominator Draw a picture to work out each problem. Write your answer in lowest terms; if

More information

NS6-50 Dividing Whole Numbers by Unit Fractions Pages 16 17

NS6-50 Dividing Whole Numbers by Unit Fractions Pages 16 17 NS6-0 Dividing Whole Numbers by Unit Fractions Pages 6 STANDARDS 6.NS.A. Goals Students will divide whole numbers by unit fractions. Vocabulary division fraction unit fraction whole number PRIOR KNOWLEDGE

More information

Logic: The Big Picture. Axiomatizing Arithmetic. Tautologies and Valid Arguments. Graphs and Trees

Logic: The Big Picture. Axiomatizing Arithmetic. Tautologies and Valid Arguments. Graphs and Trees Axiomatizing Arithmetic Logic: The Big Picture Suppose we restrict the domain to the natural numbers, and allow only the standard symbols of arithmetic (+,, =, >, 0, 1). Typical true formulas include:

More information

CSE 131 Introduction to Computer Science Fall 2016 Exam I. Print clearly the following information:

CSE 131 Introduction to Computer Science Fall 2016 Exam I. Print clearly the following information: CSE 131 Introduction to Computer Science Fall 2016 Given: 29 September 2016 Exam I Due: End of Exam Session This exam is closed-book, closed-notes, no electronic devices allowed The exception is the "sage

More information

"Unpacking the Standards" 5th Grade Student Friendly "I Can" Statements I Can Statements I can explain what the remainder means in a word problem.

Unpacking the Standards 5th Grade Student Friendly I Can Statements I Can Statements I can explain what the remainder means in a word problem. 0506.1.1 I can describe geometric properties and use them to solve problems. 5th Grade 0506.1.4 I can explain what the remainder means in a word problem. 0506.1.5 I can solve problems more than one way.

More information

Use the indicated strategy from your notes to simplify each expression. Each section may use the indicated strategy AND those strategies before.

Use the indicated strategy from your notes to simplify each expression. Each section may use the indicated strategy AND those strategies before. Pre Calculus Worksheet: Fundamental Identities Day 1 Use the indicated strategy from your notes to simplify each expression. Each section may use the indicated strategy AND those strategies before. Strategy

More information

Multiply and Divide Integers

Multiply and Divide Integers Domain 1 Lesson 8 Multiply and Divide Integers Common Core Standards: 7.NS.2.a, 7.NS.2.b, 7.NS.2.c, 7.NS.3 Getting the Idea Use these rules to multiply two integers. Rules for Multiplying Two Integers

More information

3. Area and perimeter.notebook November 13, All rectangles with area 12cm 2 have the same perimeter. True or false?

3. Area and perimeter.notebook November 13, All rectangles with area 12cm 2 have the same perimeter. True or false? All rectangles with area 12cm 2 have the same perimeter. True or false? Find the perimeter of the shape: Draw another shape with area a smaller perimeter. but with x y Write an expression for the perimeter

More information

1 Overview, Models of Computation, Brent s Theorem

1 Overview, Models of Computation, Brent s Theorem CME 323: Distributed Algorithms and Optimization, Spring 2017 http://stanford.edu/~rezab/dao. Instructor: Reza Zadeh, Matroid and Stanford. Lecture 1, 4/3/2017. Scribed by Andreas Santucci. 1 Overview,

More information

Fundamentals. Fundamentals. Fundamentals. We build up instructions from three types of materials

Fundamentals. Fundamentals. Fundamentals. We build up instructions from three types of materials Fundamentals We build up instructions from three types of materials Constants Expressions Fundamentals Constants are just that, they are values that don t change as our macros are executing Fundamentals

More information

Pre Calculus Worksheet: Fundamental Identities Day 1

Pre Calculus Worksheet: Fundamental Identities Day 1 Pre Calculus Worksheet: Fundamental Identities Day 1 Use the indicated strategy from your notes to simplify each expression. Each section may use the indicated strategy AND those strategies before. Strategy

More information

Math236 Discrete Maths with Applications

Math236 Discrete Maths with Applications Math236 Discrete Maths with Applications P. Ittmann UKZN, Pietermaritzburg Semester 1, 2012 Ittmann (UKZN PMB) Math236 2012 1 / 19 Degree Sequences Let G be a graph with vertex set V (G) = {v 1, v 2, v

More information

Grade 4 Fractions. Answer the questions. For more such worksheets visit (1) Convert into a mixed fraction. (2) Convert

Grade 4 Fractions. Answer the questions. For more such worksheets visit   (1) Convert into a mixed fraction. (2) Convert ID : aefractions [1] Grade Fractions For more such worksheets visit www.edugain.com Answer the questions (1) Convert 63 13 (2) Convert 6 7 12 into a mixed fraction. to improper fraction. (3) Aleser had

More information

OA: Operations and Algebraic Thinking

OA: Operations and Algebraic Thinking OA: Operations and Algebraic Thinking I can write and explain the meaning of a multiplication equation. 4.OA.1 I can create and solve multiplication equations that compare two sets. 4.OA.1 I can represent

More information

Free Pre-Algebra Lesson 25 page 1

Free Pre-Algebra Lesson 25 page 1 Free Pre-Algebra Lesson page Lesson The Common Denominator Every fractional amount has many names. The equivalent fraction names for a given amount may make fractions seem a little slippery and difficult

More information

1/15 2/19 3/23 4/28 5/12 6/23 Total/120 % Please do not write in the spaces above.

1/15 2/19 3/23 4/28 5/12 6/23 Total/120 % Please do not write in the spaces above. 1/15 2/19 3/23 4/28 5/12 6/23 Total/120 % Please do not write in the spaces above. Directions: You have 50 minutes in which to complete this exam. Please make sure that you read through this entire exam

More information

Any Integer Can Be Written as a Fraction

Any Integer Can Be Written as a Fraction All fractions have three parts: a numerator, a denominator, and a division symbol. In the simple fraction, the numerator and the denominator are integers. Eample 1: Find the numerator, denominator, and

More information

CONDITION CONTROLLED LOOPS. Introduction to Programming - Python

CONDITION CONTROLLED LOOPS. Introduction to Programming - Python CONDITION CONTROLLED LOOPS Introduction to Programming - Python Generating Random Numbers Generating a random integer Sometimes you need your program to generate information that isn t available when you

More information

_ _ _ _ _ _. Add and Subtract Parts of a Whole R54. Name. Justin has 3_. How much cheese does he have in all?

_ _ _ _ _ _. Add and Subtract Parts of a Whole R54. Name. Justin has 3_. How much cheese does he have in all? Lesson 7.1 Add and Subtract Parts of a Whole Justin has 8pound of cheddar cheese and 2_ 8pound of brick cheese. How much cheese does he have in all? Step 1 Use fraction strips to model the problem. Use

More information

Mathematics Background

Mathematics Background Finding Area and Distance Students work in this Unit develops a fundamentally important relationship connecting geometry and algebra: the Pythagorean Theorem. The presentation of ideas in the Unit reflects

More information

Chapter 3 Transformations of Graphs and Data

Chapter 3 Transformations of Graphs and Data Chapter 3 Transformations of Graphs and Data 3.1 Graphs of Parent Functions Parent Function the simplest equation of a particular type of function o Ex: Quadratic Function: y = x 2 There are EIGHT important

More information

Divisibility Rules and Their Explanations

Divisibility Rules and Their Explanations Divisibility Rules and Their Explanations Increase Your Number Sense These divisibility rules apply to determining the divisibility of a positive integer (1, 2, 3, ) by another positive integer or 0 (although

More information

Graphs and trees come up everywhere. We can view the internet as a graph (in many ways) Web search views web pages as a graph

Graphs and trees come up everywhere. We can view the internet as a graph (in many ways) Web search views web pages as a graph Graphs and Trees Graphs and trees come up everywhere. We can view the internet as a graph (in many ways) who is connected to whom Web search views web pages as a graph Who points to whom Niche graphs (Ecology):

More information

Midterm 1 : Correction. Friday, Feb. 23.

Midterm 1 : Correction. Friday, Feb. 23. University of Illinois at Urbana-Champaign Spring 00 Math Group F Midterm : Correction. Friday, Feb... (a) Draw a graph with vertices A, B, C and D in which the valence of vertices A and D is and the valence

More information

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking Items at Low International Benchmark (400) M01_05 M05_01 M07_04 M08_01 M09_01 M13_01 Solves a word problem

More information

Add and Subtract Parts of a Whole

Add and Subtract Parts of a Whole Lesson 7. Add and Subtract Parts of a Whole Justin has _ pound of cheddar cheese and 2_ pound of brick cheese. How much cheese does he have in all? Step Use fraction strips to model the problem. Use three

More information

Find terms of a sequence and say whether it is ascending or descending, finite or infinite Find the next term in a sequence of numbers or shapes

Find terms of a sequence and say whether it is ascending or descending, finite or infinite Find the next term in a sequence of numbers or shapes 1.1 Sequences Find terms of a sequence and say whether it is ascending or descending, finite or infinite Find the next term in a sequence of numbers or shapes Key words sequence term consecutive infinite

More information

CMPSCI611: The SUBSET-SUM Problem Lecture 18

CMPSCI611: The SUBSET-SUM Problem Lecture 18 CMPSCI611: The SUBSET-SUM Problem Lecture 18 We begin today with the problem we didn t get to at the end of last lecture the SUBSET-SUM problem, which we also saw back in Lecture 8. The input to SUBSET-

More information

Pre-Algebra Notes Unit Five: Rational Numbers and Equations

Pre-Algebra Notes Unit Five: Rational Numbers and Equations Pre-Algebra Notes Unit Five: Rational Numbers and Equations Rational Numbers Rational numbers are numbers that can be written as a quotient of two integers. Since decimals are special fractions, all the

More information

(Cambridge) First semester plan of mathematics grade 6

(Cambridge) First semester plan of mathematics grade 6 23/08/2015 to 21/09/2015 4.5 1 A :The Number system 1 Place Value Ordering, comparing and rounding numbers Factors and multiples Know what each digit represents in whole numbers up to a million. Know what

More information

Chapter 1: Number and Operations

Chapter 1: Number and Operations Chapter 1: Number and Operations 1.1 Order of operations When simplifying algebraic expressions we use the following order: 1. Perform operations within a parenthesis. 2. Evaluate exponents. 3. Multiply

More information

MATH. Timed Tests Sample Pack. Grades 3-5. Addition Subtraction

MATH. Timed Tests Sample Pack. Grades 3-5. Addition Subtraction MATH Timed Tests Sample Pack 133-48 = 85 x Grades 3-5 = 72 Addition Subtraction Multiplication Division Geometry--plain and solid sum, addend factor, product fractions rounding greater than/less than elapsed

More information

7 Next choice is 4, not 3...

7 Next choice is 4, not 3... Math 0 opics for rst exam Chapter 1: Street Networks Operations research Goal: determine how to carry out a sequence of tasks most eciently Ecient: least cost, least time, least distance,... Example: reading

More information

University of New Mexico Department of Computer Science. Final Examination. CS 362 Data Structures and Algorithms Spring, 2006

University of New Mexico Department of Computer Science. Final Examination. CS 362 Data Structures and Algorithms Spring, 2006 University of New Mexico Department of Computer Science Final Examination CS 6 Data Structures and Algorithms Spring, 006 Name: Email: Print your name and email, neatly in the space provided above; print

More information

CS1800 Discrete Structures Fall 2017 October 25, CS1800 Discrete Structures Midterm Version B

CS1800 Discrete Structures Fall 2017 October 25, CS1800 Discrete Structures Midterm Version B CS1800 Discrete Structures Fall 2017 October 25, 2017 Instructions: CS1800 Discrete Structures Midterm Version B 1. The exam is closed book and closed notes. You may not use a calculator or any other electronic

More information

UML CS Algorithms Qualifying Exam Spring, 2004 ALGORITHMS QUALIFYING EXAM

UML CS Algorithms Qualifying Exam Spring, 2004 ALGORITHMS QUALIFYING EXAM NAME: This exam is open: - books - notes and closed: - neighbors - calculators ALGORITHMS QUALIFYING EXAM The upper bound on exam time is 3 hours. Please put all your work on the exam paper. (Partial credit

More information

14 More Graphs: Euler Tours and Hamilton Cycles

14 More Graphs: Euler Tours and Hamilton Cycles 14 More Graphs: Euler Tours and Hamilton Cycles 14.1 Degrees The degree of a vertex is the number of edges coming out of it. The following is sometimes called the First Theorem of Graph Theory : Lemma

More information

Mathematics. Name: Class: Transforming Life chances

Mathematics. Name: Class: Transforming Life chances Mathematics Name: Class: Transforming Life chances Children first- Aspire- Challenge- Achieve Aspire: To be the best I can be in everything that I try to do. To use the adults and resources available both

More information

Database Design. 6-1 Artificial, Composite, and Secondary UIDs. Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Database Design. 6-1 Artificial, Composite, and Secondary UIDs. Copyright 2015, Oracle and/or its affiliates. All rights reserved. Database Design 6-1 Objectives This lesson covers the following objectives: Define the different types of unique identifiers (UIDs) Define a candidate UID and explain why an entity can sometimes have more

More information

MATH Student Book. 5th Grade Unit 7

MATH Student Book. 5th Grade Unit 7 MATH Student Book th Grade Unit 7 Unit 7 FRACTION OPERATIONS MATH 07 FRACTION OPERATIONS Introduction. Like Denominators... Adding and Subtracting Fractions Adding and Subtracting Mixed Numbers 0 Estimating

More information

NAME EET 2259 Lab 3 The Boolean Data Type

NAME EET 2259 Lab 3 The Boolean Data Type NAME EET 2259 Lab 3 The Boolean Data Type OBJECTIVES - Understand the differences between numeric data and Boolean data. -Write programs using LabVIEW s Boolean controls and indicators, Boolean constants,

More information

Math for Liberal Studies

Math for Liberal Studies Math for Liberal Studies Many of the ID numbers we have studied need to be represented in a way that is readable by machines While computers can recognize standard numbers, it is much faster and cheaper

More information

Algebra 2 Semester 1 (#2221)

Algebra 2 Semester 1 (#2221) Instructional Materials for WCSD Math Common Finals The Instructional Materials are for student and teacher use and are aligned to the 2016-2017 Course Guides for the following course: Algebra 2 Semester

More information

Address Class (Exercise) B A

Address Class (Exercise) B A Address Class (Exercise) Address Class 177.100.18.4 B 119.18.45.0 A 192.249.234.191 C 10.10.251.12 A 223.32.232.190 C 129.132.24.2 B 18.250.1.1 A 150.10.15.0 B 197.14.2.0 C 174.17.9.1 B 148.17.9.1 B 193.42.1.1

More information

Department of Computer Applications. MCA 312: Design and Analysis of Algorithms. [Part I : Medium Answer Type Questions] UNIT I

Department of Computer Applications. MCA 312: Design and Analysis of Algorithms. [Part I : Medium Answer Type Questions] UNIT I MCA 312: Design and Analysis of Algorithms [Part I : Medium Answer Type Questions] UNIT I 1) What is an Algorithm? What is the need to study Algorithms? 2) Define: a) Time Efficiency b) Space Efficiency

More information

CSE 215: Foundations of Computer Science Recitation Exercises Set #4 Stony Brook University. Name: ID#: Section #: Score: / 4

CSE 215: Foundations of Computer Science Recitation Exercises Set #4 Stony Brook University. Name: ID#: Section #: Score: / 4 CSE 215: Foundations of Computer Science Recitation Exercises Set #4 Stony Brook University Name: ID#: Section #: Score: / 4 Unit 7: Direct Proof Introduction 1. The statement below is true. Rewrite the

More information

Department of Mathematics and Computer Science University of Southern Denmark, Odense. Exercises for Week 47 on. Online Algorithms

Department of Mathematics and Computer Science University of Southern Denmark, Odense. Exercises for Week 47 on. Online Algorithms Department of Mathematics and Computer Science University of Southern Denmark, Odense November 7, 06 KSL Exercises for Week 7 on Online Algorithms a topic in DM5 Introduction to Computer Science Kim Skak

More information

1) As a logical statement, is 1 considered true or false in MATLAB? Explain your answer.

1) As a logical statement, is 1 considered true or false in MATLAB? Explain your answer. ENGR 1181 Midterm 2+ Review Note: This practice material does not contain actual test questions or represent the format of the final. The first 20 questions should be completed WITHOUT using MATLAB. This

More information

Chapter 9 Graph Algorithms

Chapter 9 Graph Algorithms Introduction graph theory useful in practice represent many real-life problems can be if not careful with data structures Chapter 9 Graph s 2 Definitions Definitions an undirected graph is a finite set

More information

Math 7 Notes Unit Three: Applying Rational Numbers

Math 7 Notes Unit Three: Applying Rational Numbers Math 7 Notes Unit Three: Applying Rational Numbers Strategy note to teachers: Typically students need more practice doing computations with fractions. You may want to consider teaching the sections on

More information

Chapter 9 Graph Algorithms

Chapter 9 Graph Algorithms Chapter 9 Graph Algorithms 2 Introduction graph theory useful in practice represent many real-life problems can be if not careful with data structures 3 Definitions an undirected graph G = (V, E) is a

More information

CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab)

CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab) CISC 181 Lab 2 (100 pts) Due: March 4 at midnight (This is a two-week lab) This lab should be done individually. Labs are to be turned in via Sakai by midnight on Tuesday, March 4 (the midnight between

More information

Practice Final Exam 2: Solutions

Practice Final Exam 2: Solutions lgorithm Design Techniques Practice Final Exam 2: Solutions 1. The Simplex lgorithm. (a) Take the LP max x 1 + 2x 2 s.t. 2x 1 + x 2 3 x 1 x 2 2 x 1, x 2 0 and write it in dictionary form. Pivot: add x

More information

CISC 181 Lab 2 (100 pts) Due: March 7 at midnight (This is a two-week lab)

CISC 181 Lab 2 (100 pts) Due: March 7 at midnight (This is a two-week lab) CISC 181 Lab 2 (100 pts) Due: March 7 at midnight (This is a two-week lab) This lab may be done individually or with a partner. Working with a partner DOES NOT mean, you do the evens, and I ll do the odds.

More information

ARITHMETIC EXPRESSION

ARITHMETIC EXPRESSION Section 1: Expression & Terms MATH LEVEL 2 LESSON PLAN 1 ARITHMETIC EXPRESSION 2017 Copyright Vinay Agarwala, Revised: 10/31/17 1. An arithmetic expression is made up of numbers joined by addition (+),

More information

Chapter 1 Operations With Numbers

Chapter 1 Operations With Numbers Chapter 1 Operations With Numbers Part I Negative Numbers You may already know what negative numbers are, but even if you don t, then you have probably seen them several times over the past few days. If

More information

UML CS Algorithms Qualifying Exam Fall, 2004 ALGORITHMS QUALIFYING EXAM

UML CS Algorithms Qualifying Exam Fall, 2004 ALGORITHMS QUALIFYING EXAM ALGORITHMS QUALIFYING EXAM This exam is open books & notes and closed neighbors & calculators. The upper bound on exam time is 3 hours. Please put all your work on the exam paper. Please write your name

More information

i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers.

i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers. Chapter 1 Integers Types of Numbers i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers. ii) Whole numbers: Counting numbers and 0, i.e., 0, 1, 2, 3, 4, 5,.. are called whole

More information

3 February 2011 CSE-3421M Test #1 p. 1 of 14. CSE-3421M Test #1. Design

3 February 2011 CSE-3421M Test #1 p. 1 of 14. CSE-3421M Test #1. Design 3 February 2011 CSE-3421M Test #1 p. 1 of 14 CSE-3421M Test #1 Design Sur / Last Name: Given / First Name: Student ID: Instructor: Parke Godfrey Exam Duration: 75 minutes Term: Winter 2011 Answer the following

More information

2.3 Building the Perfect Square A Solidify Understanding Task

2.3 Building the Perfect Square A Solidify Understanding Task 2.3 Building the Perfect Square A Solidify Understanding Task Part 1: Quadratic Quilts 2013 www.flickr.com/photos/tweedledeedesigns Optima has a quilt shop where she sells many colorful quilt blocks for

More information

Examples of Tasks from Course 1, Unit 4

Examples of Tasks from Course 1, Unit 4 Examples of Tasks from Course 1, Unit 4 What Solutions are Available? Lesson 1: page 258, Modeling Task 1; page 260, Modeling Task 4; page 261, Organizing Task 1; page 271, Modeling Task 2; page 272, Modeling

More information

CS1800 Discrete Structures Fall 2017 October 25, CS1800 Discrete Structures Midterm Version B

CS1800 Discrete Structures Fall 2017 October 25, CS1800 Discrete Structures Midterm Version B CS1800 Discrete Structures Fall 2017 October 25, 2017 Instructions: CS1800 Discrete Structures Midterm Version B 1. The exam is closed book and closed notes. You may not use a calculator or any other electronic

More information

The Further Mathematics Support Programme

The Further Mathematics Support Programme The Further Mathematics Support Programme Algorithms An algorithm is a precise set of instructions which is used to accomplish a specific process. We come across algorithms in every-day life, for example:

More information

Junior Circle Meeting 3 Circuits and Paths. April 18, 2010

Junior Circle Meeting 3 Circuits and Paths. April 18, 2010 Junior Circle Meeting 3 Circuits and Paths April 18, 2010 We have talked about insect worlds which consist of cities connected by tunnels. Here is an example of an insect world (Antland) which we saw last

More information

2012 Pascal Contest (Grade 9)

2012 Pascal Contest (Grade 9) The ENTRE for EUTION in MTHEMTIS and OMPUTING www.cemc.uwaterloo.ca 01 Pascal ontest (Grade 9) Thursday, February 3, 01 (in North merica and South merica) Friday, February 4, 01 (outside of North merica

More information

Gateway Regional School District VERTICAL ALIGNMENT OF MATHEMATICS STANDARDS Grades 3-6

Gateway Regional School District VERTICAL ALIGNMENT OF MATHEMATICS STANDARDS Grades 3-6 NUMBER SENSE & OPERATIONS 3.N.1 Exhibit an understanding of the values of the digits in the base ten number system by reading, modeling, writing, comparing, and ordering whole numbers through 9,999. Our

More information

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10.

Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 10. PA Ch 5 Rational Expressions Rational Number is a number that can be written as a quotient of two integers. DECIMALS are special fractions whose denominators are powers of 0. Since decimals are special

More information

Us postal service tracking certified mail

Us postal service tracking certified mail P ford residence southampton, ny Us postal service tracking certified mail Service / Sample Number. USPS Tracking. Certified Mail. EA 000 000 000 US. Priority Mail International. A Domestic Certified Mail

More information

School District of Marshfield Mathematics Standards

School District of Marshfield Mathematics Standards MATHEMATICS Counting and Cardinality, Operations and Algebraic Thinking, Number and Operations in Base Ten, Measurement and Data, and Geometry Operations and Algebraic Thinking Use the Four Operations

More information

Introducing eservices for claimants

Introducing eservices for claimants Introducing eservices for claimants eservices is the Employment Security Department s secure website for applying for unemployment benefits, submitting weekly claims and accessing information about your

More information

Course Learning Outcomes for Unit I. Reading Assignment. Unit Lesson. UNIT I STUDY GUIDE Number Theory and the Real Number System

Course Learning Outcomes for Unit I. Reading Assignment. Unit Lesson. UNIT I STUDY GUIDE Number Theory and the Real Number System UNIT I STUDY GUIDE Number Theory and the Real Number System Course Learning Outcomes for Unit I Upon completion of this unit, students should be able to: 2. Relate number theory, integer computation, and

More information

Basic Definitions and Concepts Complement to the Prologue and to Chapter 1, Respecting the Rules

Basic Definitions and Concepts Complement to the Prologue and to Chapter 1, Respecting the Rules Basic s and Concepts Complement to the Prologue and to Chapter 1, Respecting the Rules 1. CHAINS, CYCLES AND CONNECTIVITY Take out a sheet of paper, choose a few spots, and mark those spots with small

More information

Math Circle Beginners Group October 18, 2015 Solutions

Math Circle Beginners Group October 18, 2015 Solutions Math Circle Beginners Group October 18, 2015 Solutions Warm-up problem 1. Let n be a (positive) integer. Prove that if n 2 is odd, then n is also odd. (Hint: Use a proof by contradiction.) Suppose that

More information

BASIC MATH CONTENTS. Section 1... Whole Number Review. Section 2... Decimal Review. Section 3... Fraction Review. Section 4...

BASIC MATH CONTENTS. Section 1... Whole Number Review. Section 2... Decimal Review. Section 3... Fraction Review. Section 4... BASIC MATH The purpose of this booklet is to refresh the reader s skills in basic mathematics. There are basic mathematical processes, which must be followed throughout all areas of math applications.

More information

I Can Grade 4 Math. Example. AACPS Division of Curriculum & Instruction Model Content Frameworks, PARCC December I need help from my teacher.

I Can Grade 4 Math. Example. AACPS Division of Curriculum & Instruction Model Content Frameworks, PARCC December I need help from my teacher. I Can Grade 4 Math Major Content Supporting Content Additional Content I Can Example I don t yet know it. I need help from my teacher. I sometimes need help. I can do this all by myself. I can teach this.

More information

The most efficient way to manage USPS Certified Mail, Priority Mail and Priority Mail Express. User Guide

The most efficient way to manage USPS Certified Mail, Priority Mail and Priority Mail Express. User Guide The most efficient way to manage USPS Certified Mail, Priority Mail and Priority Mail Express User Guide Telephone: 1-888-462-1750 Email: support@simplecertifiedmail.com 2018 SimpleCertifiedMail.com. Certified

More information

ECE 2030D Computer Engineering Spring problems, 5 pages Exam Two 8 March 2012

ECE 2030D Computer Engineering Spring problems, 5 pages Exam Two 8 March 2012 Instructions: This is a closed book, closed note exam. Calculators are not permitted. If you have a question, raise your hand and I will come to you. Please work the exam in pencil and do not separate

More information