ECS Baruch Lab 12 Spring 2019 Name

Size: px
Start display at page:

Download "ECS Baruch Lab 12 Spring 2019 Name"

Transcription

1 ECS Baruch Lab 12 Spring 2019 Name I. More input files. Download the file cookiesales.txt and the code file processcookies.py. cookiesales has information about some scouts and how many cookie orders they made for 3 kinds of cookies. processcookies.py reads the file, computes how many kids are listed, and computes total sales of Samoas. Run the program. Read it to understand how it works. A. For the line print("there are " + str(numkids) + " kids selling cookies.") why do I use str(numkids)? For the line sumsamoas=sumsamoas + int(saleslinelist[1]) why do I use int(saleslinelist[1])? In the loop I have print(inputlist[i].rstrip()) What happens differently if I use print(inputlist[i]) as in the comment above it? (You can try it.) Explain. For the line for i in range(3,numlines,2): would it work properly if I use numlines+1 instead of numlines? How many lines are in the file? How many lines would be in the file if there were 4 kids? How many lines would be in the file if there were 5 kids? How many lines would be in the file if there were k kids? B. Add code that will print the following line for Susie's sales: Susie Fong The name is left justified and the numbers are right justified, with one space after them. (Use values read from the file, don't just print(10).) Here is the line on graph paper: S u s i e F o n g Run the program. Print the program and the output to hand in. 1

2 II. Shape calculator A. Here is a program. DO NOT RUN IT. #shapecalculator.py from math import pi def rectarea(length, width): area=length * width return area def circlearea(radius): area=pi*radius*radius return area def welcome(): print("welcome to the shape calculator!") name=input("what is your name? ") return name def askdimension(dimension): value = float(input("what is the " + dimension +"? ")) return value def main(): name = welcome() print(name+", ", end="") x = askdimension("length") #enter 4 y = askdimension("width") #enter 3 print("the area of the rectangle is " + str(rectarea(x,y))) rad = askdimension("radius") #enter 10 a= circlearea(rad) print("the area of the circle is {0:0.5} sq. cm.".format(a)) Step through main by hand, without the computer. Show the memory in this table, and output (with the input) on the next page. For memory, put a slash through a value when it is replaced by a new value. (For input, use the values in the comments.) You will not be penalized for your errors. MEMORY rectarea circlearea welcome askdimensions main length radius name dimension name width area x area value y rad a 2

3 OUTPUT B. Download the program shapecalculator.py. Run the program. Circle anything that was wrong in your output, and fix it, making sure you understand. C. Write a function trianglearea that computes and returns the area of a triangle: altitude * base. What should the parameters be? Does it return a value? Add code to the bottom of main to use functions to get the altitude and base of a triangle, and compute and print the area of the triangle. D. Write a function squarearea. It should only need one parameter. In will compute the area of a square by calling the rectarea function. (A function calling another function.) What should the parameter of squarearea be? Add code to main to use the functions to get the dimension of the square and compute and print the area of the square. E. Set dimlist = [ 5, 3, 7, 2] Using the functions we have, add code to compute and print the area of a square whose side is the first value of dimlist. You will not need to call askdimension since the values are already in the program in dimlist. Add code to compute and print the area of a circle with diameter equal to the second value of dimlist. Finally add code to compute and print the area of a rectangle whose length and width are the last two values of dimlist. All printed values should be labeled. Run the program. Print your code and output for shapecalculator. 3

4 III. Exploring the order in which functions are performed. Write the following function in the shell: >>> def doit( a ): print("in doit.", a) return a*2 Call doit( 2) Call doit("abc") Try print("here: ", doit(4), doit(6)) Which is executed first - doit(4), doit(6) or print? (You should be able to tell by looking at the output) IV. Download learningif.py. Run it several times with different sets of data, so you get all possible outcomes. In the sections below, record the values you entered and all the output (including your input. Yes, write 6 lines every time!) Write memory values next to the variable names below: 4

5 Explain the meaning of the symbols: > >= = = The line print("thank you for playing fickle pickle.") Did it execute for all values of guess or only for some values of guess? (Go back and check your output if you are not sure.) V. Modify the program. You will need some new variables. Add functions to do each of the following. a) Print "You are speeding" if the speed is greater than 55. (Obtain a speed from the user.) b) Print odd or even depending on whether date (the day of the month) is divisible by 2. (Obtain a date from the user.) Hint: Compute by hand: 1%2 =, 2%2=, 3%2 =, 4%2 =, 5%2 =,6%2 =. How can you tell if a number is odd or even? 5

6 c) Print A for a course average score of 90 or above, B for a course average score of 80 or above, but below 90, and no credit for a course average score below 80. (This is how graduate school grades work.) This uses if...elif. You do not need "and". Print your updated version of learningif.py together with its output. V. Submitting your work. Make sure your name is on this lab packet. Staple processcookies.py, shapecalculator.py, and learningif.py to the Lab 12 packet. Each program should have the output included at the bottom. Turn the lab in at the file cabinet. 6

ECS Baruch Lab 3 Spring 2019 Name

ECS Baruch Lab 3 Spring 2019 Name ECS 102 - Baruch Lab 3 Spring 2019 Name I. You can't ask a computer to do something you can't do. Now it is your turn to step through a program, without a computer. DO NOT ENTER THIS PROGRAM ON THE COMPUTER.

More information

Math-2 Lesson 6-3: Area of: Triangles, rectangles, circles and Surface Area of Pyramids

Math-2 Lesson 6-3: Area of: Triangles, rectangles, circles and Surface Area of Pyramids Math- Lesson 6-3: rea of: Triangles, rectangles, circles and Surface rea of Pyramids SM: Lesson 6-3 (rea) For the following geometric shapes, how would you answer the question; how big is it? Describe

More information

ECS Baruch Lab 2 Fall 2019 Name

ECS Baruch Lab 2 Fall 2019 Name ECS 102 - Baruch Lab 2 Fall 2019 Name I. Review Recall that in lab 1, you created a folder on your H: drive, Document/Apps-SU/Python Programs The reason you need to save programs here on the lab computers

More information

ECS Baruch Lab 5 Spring 2019 Name NetID (login, like , not your SUID)

ECS Baruch Lab 5 Spring 2019 Name NetID (login, like  , not your SUID) ECS 102 - Baruch Lab 5 Spring 2019 Name NetID (login, like email, not your SUID) Today you will be doing some more experiments in the shell. Create a file Lab5.txt. In this file you will be asked to save

More information

"Unpacking the Standards" 4th Grade Student Friendly "I Can" Statements I Can Statements I can explain why, when and how I got my answer.

Unpacking the Standards 4th Grade Student Friendly I Can Statements I Can Statements I can explain why, when and how I got my answer. 0406.1.1 4th Grade I can explain why, when and how I got my answer. 0406.1.2 I can identify the range of an appropriate estimate. I can identify the range of over-estimates. I can identify the range of

More information

Grade 11 Unit 2 Solutions

Grade 11 Unit 2 Solutions Grade Unit Solutions Grade p Activity (a) Built in functions: input() float() print() User defined function: calcarea() rectanglearea() trianglearea() Grade p Activity (b) Function definitions: Lines,

More information

Grade 9 Applied Assessment of Mathematics

Grade 9 Applied Assessment of Mathematics Grade 9 Applied Assessment of Mathematics 2007-2009 TCDSB, Math Department, 2012 Measurement and Geometry Strand: Overall Expectations, Knowledge and Skills (KU, AP,TH, CO) Q.17 (MC, 2007, winter, expectation:

More information

Grade 10 Unit 2 Solutions

Grade 10 Unit 2 Solutions Grade 0 Unit Solutions Grade 0 p Activity (a) Built in functions: input int print User defined function: add average difference Grade 0 p Activity (b) Function definitions: Lines, & Function calls: Lines,,,,,

More information

When entering fourth grade this is what is expected that your child should already know.

When entering fourth grade this is what is expected that your child should already know. Summer Math Reinforcement Packet Students Entering into 4th Grade THIRD GRADE GRADE LEVEL EXPECTATIONS IN MATHMATICS When entering fourth grade this is what is expected that your child should already know.

More information

Geometer's Sketchpad Lab Quadrilateral Properties Due Date: _Friday, November 6, 2015_

Geometer's Sketchpad Lab Quadrilateral Properties Due Date: _Friday, November 6, 2015_ Geometer's Sketchpad Lab Quadrilateral Properties Due Date: _Friday, November 6, 2015_ This project is worth 100 points. The grade will be reduced 10% each day it is late. 1. Complete the steps to CONSTRUCT

More information

(6.6) Geometry and spatial reasoning. The student uses geometric vocabulary to describe angles, polygons, and circles.

(6.6) Geometry and spatial reasoning. The student uses geometric vocabulary to describe angles, polygons, and circles. (6.6) Geometry and spatial reasoning. The student uses geometric vocabulary to describe angles, polygons, and circles. (6.6.a) Geometry and spatial reasoning. The student uses geometric vocabulary to describe

More information

Practice Test Answer and Alignment Document Mathematics: Geometry Performance Based Assessment - Online

Practice Test Answer and Alignment Document Mathematics: Geometry Performance Based Assessment - Online The following pages include the answer key for all machine-scored items, followed by the rubrics for the hand-scored items. - The rubrics show sample student responses. Other valid methods for solving

More information

Chapter 5 Lab Methods

Chapter 5 Lab Methods Gaddis_516907_Java 4/10/07 2:10 PM Page 41 Chapter 5 Lab Methods Objectives Be able to write methods Be able to call methods Be able to write javadoc comments Be able to create HTML documentation for our

More information

CMSC 201 Fall 2018 Python Coding Standards

CMSC 201 Fall 2018 Python Coding Standards CMSC 201 Fall 2018 Python Coding Standards The purpose of these coding standards is to make programs readable and maintainable. In the real world you may need to update your own code more than 6 months

More information

Chapter 1: Symmetry and Surface Area

Chapter 1: Symmetry and Surface Area Chapter 1: Symmetry and Surface Area Name: Section 1.1: Line Symmetry Line of symmetry(or reflection): divides a shape or design into two parts. Can be found using: A mirra Folding Counting on a grid Section

More information

Grade 2 I Can Math Statements

Grade 2 I Can Math Statements Grade 2 I Can Math Statements Operations and Algebraic Thinking 2.OA.1 I can solve one- and two-step addition and subtraction word problems within 100. Visualize Retell Think Share Your Strategies More

More information

The University of Oregon May 16, 2015 Oregon Invitational Mathematics Tournament:

The University of Oregon May 16, 2015 Oregon Invitational Mathematics Tournament: The University of Oregon May 16, 2015 Oregon Invitational Mathematics Tournament: losed book examination Geometry Exam Time: 90 minutes Last Name First Name School Grade (please circle one): 7 8 9 10 11

More information

Integer Operations. Summer Packet 7 th into 8 th grade 1. Name = = = = = 6.

Integer Operations. Summer Packet 7 th into 8 th grade 1. Name = = = = = 6. Summer Packet 7 th into 8 th grade 1 Integer Operations Name Adding Integers If the signs are the same, add the numbers and keep the sign. 7 + 9 = 16-2 + -6 = -8 If the signs are different, find the difference

More information

My 5 th Grade Summer Math Practice Booklet

My 5 th Grade Summer Math Practice Booklet My 5 th Grade Summer Math Practice Booklet Name Number Sense 1. Write a ratio (fraction) comparing the number of rectangles to the number of triangles. Then write a ratio (fraction) comparing the number

More information

Surface Area and Volume

Surface Area and Volume Surface Area and Volume Day 1 - Surface Area of Prisms Surface Area = The total area of the surface of a three-dimensional object (Or think of it as the amount of paper you ll need to wrap the shape.)

More information

Lesson 19: Unknown Area Problems on the Coordinate Plane

Lesson 19: Unknown Area Problems on the Coordinate Plane Unknown Area Problems on the Coordinate Plane Student Outcomes Students find the areas of triangles and simple polygonal regions in the coordinate plane with vertices at grid points by composing into rectangles

More information

Chapter 5 Lab Methods

Chapter 5 Lab Methods Chapter 5 Lab Methods Lab Objectives Be able to write methods Be able to call methods Be able to write javadoc comments Be able to create HTML documentation for our Java class using javadoc Introduction

More information

CW Middle School. Math RtI 7 A. 4 Pro cient I can add and subtract positive fractions with unlike denominators and simplify the result.

CW Middle School. Math RtI 7 A. 4 Pro cient I can add and subtract positive fractions with unlike denominators and simplify the result. 1. Foundations (14.29%) 1.1 I can add and subtract positive fractions with unlike denominators and simplify the result. 4 Pro cient I can add and subtract positive fractions with unlike denominators and

More information

2. Find the measure of exterior angle. 3. Find the measures of angles A, B, and C. 4. Solve for x. 5. Find the measure of

2. Find the measure of exterior angle. 3. Find the measures of angles A, B, and C. 4. Solve for x. 5. Find the measure of INTEGRATED MATH III SUMMER PACKET DUE THE FIRST DAY OF SCHOOL The problems in this packet are designed to help you review topics from previous mathematics courses that are essential to your success in

More information

Answer Key Lesson 5: Area Problems

Answer Key Lesson 5: Area Problems Answer Key Lesson 5: Problems Student Guide Problems (SG pp. 186 187) Questions 1 3 1. Shapes will vary. Sample shape with an area of 12 sq cm: Problems Here are 12 square centimeters. A square centimeter

More information

Montana City School GRADE 5

Montana City School GRADE 5 Montana City School GRADE 5 Montana Standard 1: Students engage in the mathematical processes of problem solving and reasoning, estimation, communication, connections and applications, and using appropriate

More information

Prime Time (Factors and Multiples)

Prime Time (Factors and Multiples) CONFIDENCE LEVEL: Prime Time Knowledge Map for 6 th Grade Math Prime Time (Factors and Multiples). A factor is a whole numbers that is multiplied by another whole number to get a product. (Ex: x 5 = ;

More information

Area rectangles & parallelograms

Area rectangles & parallelograms Area rectangles & parallelograms Rectangles One way to describe the size of a room is by naming its dimensions. So a room that measures 12 ft. by 10 ft. could be described by saying its a 12 by 10 foot

More information

Math Lesson Plan 6th Grade Curriculum Total Activities: 302

Math Lesson Plan 6th Grade Curriculum Total Activities: 302 TimeLearning Online Learning for Homeschool and Enrichment www.timelearning.com Languages Arts, Math and more Multimedia s, Interactive Exercises, Printable Worksheets and Assessments Student Paced Learning

More information

Benjamin Adlard School 2015/16 Maths medium term plan: Autumn term Year 6

Benjamin Adlard School 2015/16 Maths medium term plan: Autumn term Year 6 Benjamin Adlard School 2015/16 Maths medium term plan: Autumn term Year 6 Number - Number and : Order and compare decimals with up to 3 decimal places, and determine the value of each digit, and. Multiply

More information

Teacher: CORE Math Grade 6 Year: Content Skills VocabularyAssessments Lessons Resources Standards. Diagnostic Math 6 Test 9/10/2011

Teacher: CORE Math Grade 6 Year: Content Skills VocabularyAssessments Lessons Resources Standards. Diagnostic Math 6 Test 9/10/2011 Teacher: CORE Math Grade 6 Year: 2010-11 Course: Math Grade 6 Month: All Months S e p Essential t Questions e m b e r NUMBER SENSE AND OPERATIONS Content Skills VocabularyAssessments Lessons Resources

More information

Archdiocese of Washington Catholic Schools Academic Standards Mathematics

Archdiocese of Washington Catholic Schools Academic Standards Mathematics 5 th GRADE Archdiocese of Washington Catholic Schools Standard 1 - Number Sense Students compute with whole numbers*, decimals, and fractions and understand the relationship among decimals, fractions,

More information

Aim: How do we find the volume of a figure with a given base? Get Ready: The region R is bounded by the curves. y = x 2 + 1

Aim: How do we find the volume of a figure with a given base? Get Ready: The region R is bounded by the curves. y = x 2 + 1 Get Ready: The region R is bounded by the curves y = x 2 + 1 y = x + 3. a. Find the area of region R. b. The region R is revolved around the horizontal line y = 1. Find the volume of the solid formed.

More information

Computer and Programming: Lab 1

Computer and Programming: Lab 1 01204111 Computer and Programming: Lab 1 Name ID Section Goals To get familiar with Wing IDE and learn common mistakes with programming in Python To practice using Python interactively through Python Shell

More information

Chapter 5 Lab Methods

Chapter 5 Lab Methods Chapter 5 Lab Methods Lab Objectives Be able to write methods Be able to call methods Be able to write javadoc comments Be able to create HTML documentation using the javadoc utility Introduction Methods

More information

Adjacent sides are next to each other and are joined by a common vertex.

Adjacent sides are next to each other and are joined by a common vertex. Acute angle An angle less than 90. A Adjacent Algebra Angle Approximate Arc Area Asymmetrical Average Axis Adjacent sides are next to each other and are joined by a common vertex. Algebra is the branch

More information

The following pages include the answer key for all machine-scored items, followed by the rubrics for the hand-scored items.

The following pages include the answer key for all machine-scored items, followed by the rubrics for the hand-scored items. Practice Test Answer and Alignment Document Mathematics Geometry Online The following pages include the answer key for all machine-scored items, followed by the rubrics for the hand-scored items. The rubrics

More information

New York State Testing Program Mathematics Test

New York State Testing Program Mathematics Test New York State Testing Program Mathematics Test 2013 Turnkey Training Grade 6 Extended-response (3-point) Sample Question Guide Set Page 0 8 2 A closed box in the shape of a rectangular prism has a length

More information

CISC 1600, Lab 3.1: Processing

CISC 1600, Lab 3.1: Processing CISC 1600, Lab 3.1: Processing Prof Michael Mandel 1 Getting set up For this lab, we will be using OpenProcessing, a site for building processing sketches online using processing.js. 1.1. Go to https://www.openprocessing.org/class/57767/

More information

14-9 Constructions Review. Geometry Period. Constructions Review

14-9 Constructions Review. Geometry Period. Constructions Review Name Geometry Period 14-9 Constructions Review Date Constructions Review Construct an Inscribed Regular Hexagon and Inscribed equilateral triangle. -Measuring radius distance to make arcs. -Properties

More information

Polyhedraville Grade Sheet- Compacted

Polyhedraville Grade Sheet- Compacted Name: Period: Due: May 22 Partner Name: City Color: Plot #: /12 points Edges, Faces & Vertices Chart Polyhedraville Grade Sheet- Compacted Do not lose your laminated land plot planning sheet. Two points

More information

Marquette University

Marquette University Marquette University 0 5 C O M P E T I T I V E S C H O L A R S H I P E X A M I N A T I O N I N M A T H E M A T I C S Do not open this booklet until you are directed to do so.. Fill out completely the following

More information

Course Outlines. Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students)

Course Outlines. Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students) Course Outlines Elementary Mathematics (Grades K-5) Kids and Numbers (Recommended for K-1 students) Shapes and Patterns. Grouping objects by similar properties. Identifying simple figures within a complex

More information

Honors Geometry Summer Assignment DUE: SEPTEMBER 20 th, 2018

Honors Geometry Summer Assignment DUE: SEPTEMBER 20 th, 2018 Honors Geometry Summer Assignment DUE: SEPTEMBER 0 th, 018 As an incoming Honors Geometry student, it is important that you are proficient in skills from previous math courses. This assignment contains

More information

SPRINGBOARD UNIT 5 GEOMETRY

SPRINGBOARD UNIT 5 GEOMETRY SPRINGBOARD UNIT 5 GEOMETRY 5.1 Area and Perimeter Perimeter the distance around an object. To find perimeter, add all sides. Area the amount of space inside a 2 dimensional object. Measurements for area

More information

The figures below are all prisms. The bases of these prisms are shaded, and the height (altitude) of each prism marked by a dashed line:

The figures below are all prisms. The bases of these prisms are shaded, and the height (altitude) of each prism marked by a dashed line: Prisms Most of the solids you ll see on the Math IIC test are prisms or variations on prisms. A prism is defined as a geometric solid with two congruent bases that lie in parallel planes. You can create

More information

Woodland Community College: Math practice Test

Woodland Community College: Math practice Test Woodland Community College: Math practice Test Pre algebra Math test The following problems are recommended practice problems for the pre-algebra section of the placement test. Some of the problems may

More information

KINDERGARTEN MATH STANDARDS BASED RUBRIC NUMBER SENSE Essential Standard: 1.0 STUDENTS UNDERSTAND THE RELATIONSHIP BETWEEN NUMBERS AND QUANTITIES.

KINDERGARTEN MATH STANDARDS BASED RUBRIC NUMBER SENSE Essential Standard: 1.0 STUDENTS UNDERSTAND THE RELATIONSHIP BETWEEN NUMBERS AND QUANTITIES. KINDERGARTEN MATH STANDARDS BASED RUBRIC NUMBER SENSE 1.0 STUDENTS UNDERSTAND THE RELATIONSHIP BETWEEN NUMBERS AND QUANTITIES. Unable to compare 2 or more In consistently compare 2 or Compare 2 or more

More information

About Finish Line Mathematics 5

About Finish Line Mathematics 5 Table of COntents About Finish Line Mathematics 5 Unit 1: Big Ideas from Grade 1 7 Lesson 1 1.NBT.2.a c Understanding Tens and Ones [connects to 2.NBT.1.a, b] 8 Lesson 2 1.OA.6 Strategies to Add and Subtract

More information

Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D 2D & 3D GEOMETRY PERIMETER/CIRCUMFERENCE & AREA SURFACE AREA & VOLUME

Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D 2D & 3D GEOMETRY PERIMETER/CIRCUMFERENCE & AREA SURFACE AREA & VOLUME Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D UNIT 9 2016-17 2D & 3D GEOMETRY PERIMETER/CIRCUMFERENCE & AREA SURFACE AREA & VOLUME CCM6+7+ Name: Math Teacher: Projected Test Date: MAIN CONCEPT(S) PAGE(S) Vocabulary

More information

The University of Oregon May 16, 2015 Oregon Invitational Mathematics Tournament:

The University of Oregon May 16, 2015 Oregon Invitational Mathematics Tournament: The University of Oregon May 16, 015 Oregon Invitational Mathematics Tournament: losed book examination Geometry xam Time: 90 minutes Last Name First Name School Grade (please circle one): 7 8 9 10 11

More information

Lab 9 - Classes and Objects Directions

Lab 9 - Classes and Objects Directions Lab 9 - Classes and Objects Directions The labs are marked based on attendance and effort. It is your responsibility to ensure the TA records your progress by the end of the lab. Do each step of the lab

More information

Putnam County Schools Curriculum Map 7 th Grade Math Module: 3 Expressions and Equations

Putnam County Schools Curriculum Map 7 th Grade Math Module: 3 Expressions and Equations Instructional Window: MAFS Standards Topic A: Putnam County Schools Curriculum Map 7 th Grade Math 2016 2017 Module: 3 Expressions and Equations MAFS.7.EE.1.1 Apply properties of operations as strategies

More information

Grade 7 Math (Master) Essential Questions Content Skills

Grade 7 Math (Master) Essential Questions Content Skills Wilmette Public Schools, District 39 Created 2006-2007 Fall Grade 7 Math (Master) Why is it important to differentiate between various multiplication methods? How can a procedure lead you to an accurate

More information

PART ONE: Learn About Area of a Parallelogram

PART ONE: Learn About Area of a Parallelogram 13 Lesson AREA PART ONE: Learn About Area of a Parallelogram? How can you use a rectangle to find the area of a parallelogram? Area (A) tells how much surface a two-dimensional figure covers. You can use

More information

Determine the surface area of the following square-based pyramid. Determine the volume of the following triangular prism. ) + 9.

Determine the surface area of the following square-based pyramid. Determine the volume of the following triangular prism. ) + 9. MPM 1D Name: Unit: Measurement Date: Calculating and of Three Dimensional Figures Use the Formula Sheet attached to help you to answer each of the following questions. Three problems are worked out for

More information

Basic and Intermediate Math Vocabulary Spring 2017 Semester

Basic and Intermediate Math Vocabulary Spring 2017 Semester Digit A symbol for a number (1-9) Whole Number A number without fractions or decimals. Place Value The value of a digit that depends on the position in the number. Even number A natural number that is

More information

Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D. Angle Relationships, Area, and Perimeter/Circumference Surface Area and Volume

Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D. Angle Relationships, Area, and Perimeter/Circumference Surface Area and Volume Page 1 CCM6+7+ UNIT 9 GEOMETRY 2D and 3D UNIT 9 2015-16 Angle Relationships, Area, and Perimeter/Circumference Surface Area and Volume CCM6+7+ Name: Math Teacher: Projected Test Date: MAIN CONCEPT(S) PAGE(S)

More information

GM1 End-of-unit Test. 1 Calculate the size of angles a, b and c. 2 ABC is a right-angled triangle. Work out the size of the marked angles.

GM1 End-of-unit Test. 1 Calculate the size of angles a, b and c. 2 ABC is a right-angled triangle. Work out the size of the marked angles. GM End-of-unit Test Calculate the size of angles a, and c. 2 ABC is a right-angled triangle. a = = c = 3 marks Work out the size of the marked angles. p = q = r = 3 marks Original material Camridge University

More information

Geometry Regents Lomac Date 11/20 due 11/23 Using Congruent Triangles to prove Quadrilateral Properties

Geometry Regents Lomac Date 11/20 due 11/23 Using Congruent Triangles to prove Quadrilateral Properties Geometry Regents Lomac 2015-2016 Date 11/20 due 11/23 Using Congruent Triangles to prove Quadrilateral Properties 1 Name Per LO: I can prove statements by first proving that triangles are congruent and

More information

Maths Assessment Framework Year 8

Maths Assessment Framework Year 8 Success Criteria for all assessments: Higher Tier Foundation Tier 90% 9 80% 6 80% 8 70% 7 60% 5 60% 6 50% 5 40% 4 Please note the GCSE Mathematics is one of the first GCSEs which will be graded by number

More information

5th Grade Mathematics Essential Standards

5th Grade Mathematics Essential Standards Standard 1 Number Sense (10-20% of ISTEP/Acuity) Students compute with whole numbers*, decimals, and fractions and understand the relationship among decimals, fractions, and percents. They understand the

More information

Summer Math Assignments for Students Entering Integrated Math

Summer Math Assignments for Students Entering Integrated Math Summer Math Assignments for Students Entering Integrated Math Purpose: The purpose of this packet is to review pre-requisite skills necessary for the student to be successful in Integrated Math. You are

More information

Geometry End- of- Course Prep Packet

Geometry End- of- Course Prep Packet Geometry End- of- Course Prep Packet TOPICS TESTED FOR GRADUATION PURPOSES Logic o If- then, converse, inverse, contrapositive o Proofs (example: prove that two triangles are congruent) o Postulates, undefined

More information

Glossary Flash Cards. acute angle. absolute value. Additive Inverse Property. Big Ideas Math Red

Glossary Flash Cards. acute angle. absolute value. Additive Inverse Property. Big Ideas Math Red Glossary Flash Cards absolute value acute angle Addition Property of Equality additive inverse Additive Inverse Property angle Copyright Big Ideas Learning, LLC Big Ideas Math Red 1 An angle whose measure

More information

Introduction to Functional Programming

Introduction to Functional Programming A Level Computer Science Introduction to Functional Programming William Marsh School of Electronic Engineering and Computer Science Queen Mary University of London Aims and Claims Flavour of Functional

More information

1.4 Surface Area of Right Pyramids and Right Cones

1.4 Surface Area of Right Pyramids and Right Cones Math 1201 Date: 1.4 Surface Area of Right Pyramids and Right Cones Understanding how to calculate surface area can be helpful in many real world applications. For example, surface area can be used to estimate

More information

Quiz. Introduction: Python. In this project, you ll make a quiz game to challenge your friends. Activity Checklist.

Quiz. Introduction: Python. In this project, you ll make a quiz game to challenge your friends. Activity Checklist. Python 1 Quiz All Code Clubs must be registered. Registered clubs appear on the map at codeclub.org.uk - if your club is not on the map then visit jumpto.cc/18cplpy to find out what to do. Introduction:

More information

4.1 Exploring Nets (pp )

4.1 Exploring Nets (pp ) Math 8 Unit 4 Notes Name: 4.1 Exploring Nets (pp. 170-176) Net: a pattern that can be folded to make an object Ex. Polyhedron: an object with faces that are polygons Prism: an object that has two congruent

More information

Choose the best answer. For 1 3, use the figure. For 4 5, use the figure. Which face is parallel to face DEF? BCEF

Choose the best answer. For 1 3, use the figure. For 4 5, use the figure. Which face is parallel to face DEF? BCEF Choose the best answer. For, use the figure. Page For, use the figure. How many pairs of parallel faces does the figure have? Which face is parallel to face DEF? BCEF ACED ABFD ABC What is the value of

More information

Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8

Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8 Middle School Math Course 3 Correlation of the ALEKS course Middle School Math 3 to the Illinois Assessment Framework for Grade 8 State Goal 6: Number Sense 6.8.01: 6.8.02: 6.8.03: 6.8.04: 6.8.05: = ALEKS

More information

ACT Math test Plane Geometry Review

ACT Math test Plane Geometry Review Plane geometry problems account for 14 questions on the ACT Math Test that s almost a quarter of the questions on the Subject Test. If you ve taken high school geometry, you ve probably covered all of

More information

4) Simplify 5( 6) Simplify. 8) Solve 1 x 2 4

4) Simplify 5( 6) Simplify. 8) Solve 1 x 2 4 Algebra Summer Assignment 1) Simplify x 4y 10 x ) Simplify 4y 6x 3( x y) 3) Simplify 1 3 ( x 3) 4) Simplify 5( x 9x) (3x 4) 7 5) Simplify ( x 3)( x ) 6) Simplify ( x 4) 3 7) Simplify ( 5x 8)(4x 1) 8) Solve

More information

Maths Key Stage 3 Scheme of Work Number and measures Place value Calculations Calculator Measures

Maths Key Stage 3 Scheme of Work Number and measures Place value Calculations Calculator Measures Maths Key Stage 3 Scheme of Work 2014 Year Autumn Spring Summer 7 Number Integers, order positive and negative numbers Low: Use the 4 operations, starting with addition and subtraction, positive numbers

More information

Lab01: C++ Expressions ES036a: Programming Fundamentals Fall 2007

Lab01: C++ Expressions ES036a: Programming Fundamentals Fall 2007 Lab01: C++ Expressions ES036a: Programming undamentals all 2007 A. Rationale and Background Welcome to ES036b Lab01. In Lab00 we learned how to create a solution and then a project within this solution

More information

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of

Measurement 1 PYTHAGOREAN THEOREM. The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of Measurement 1 PYTHAGOREAN THEOREM Remember the Pythagorean Theorem: The area of the square on the hypotenuse of a right triangle is equal to the sum of the areas of the squares on the other two sides.

More information

UNIT 4: LENGTH, AREA, AND VOLUME WEEK 16: Student Packet

UNIT 4: LENGTH, AREA, AND VOLUME WEEK 16: Student Packet Name Period Date UNIT 4: LENGTH, AREA, AND VOLUME WEEK 16: Student Packet 16.1 Circles: Area Establish the area formula for a circle. Apply the area formula for a circle to realistic problems. Demonstrate

More information

Lesson 3: Triangle Congruence: SSS, SAS, and ASA, Part 1

Lesson 3: Triangle Congruence: SSS, SAS, and ASA, Part 1 Name Date Student Guide Lesson 3: Triangle Congruence: SSS, SAS, and ASA, Part 1 Bridges, ladders, containers, and other items that need to be sturdy often use triangles. A combination of triangles is

More information

3-D Shapes and volume

3-D Shapes and volume 3-D Shapes and Volume Question Paper 1 Level IGCSE Subject Maths Exam Board Edexcel Topic Shape, Space and Measures Sub Topic 3-D Shapes and volume Booklet Question Paper 1 Time Allowed: 57 minutes Score:

More information

Number. Number. Number. Number

Number. Number. Number. Number Order of operations: Brackets Give the order in which operations should be carried out. Indices Divide Multiply Add 1 Subtract 1 What are the first 10 square numbers? The first 10 square numbers are: 1,

More information

Copyright 2013 A+ Interactive MATH (an A+ TutorSoft Inc. company), All Rights Reserved.

Copyright 2013 A+ Interactive MATH (an A+ TutorSoft Inc. company), All Rights Reserved. www.aplustutorsoft.com Page 1 of 20 Dimensions of Shapes Lesson, Worksheet & Solution Guide Release 7 A+ Interactive Math (By A+ TutorSoft, Inc.) Email: info@aplustutorsoft.com www.aplustutorsoft.com www.aplustutorsoft.com

More information

CK-12 Geometry: Exploring Similar Solids. Learning Objectives Find the relationship between similar solids and their surface areas and volumes.

CK-12 Geometry: Exploring Similar Solids. Learning Objectives Find the relationship between similar solids and their surface areas and volumes. CK-12 Geometry: Exploring Similar Solids Learning Objectives Find the relationship between similar solids and their surface areas and volumes. Review Queue a. We know that every circle is similar, is every

More information

ACT SparkNotes Test Prep: Plane Geometry

ACT SparkNotes Test Prep: Plane Geometry ACT SparkNotes Test Prep: Plane Geometry Plane Geometry Plane geometry problems account for 14 questions on the ACT Math Test that s almost a quarter of the questions on the Subject Test If you ve taken

More information

SCRATCH MODULE 3: NUMBER CONVERSIONS

SCRATCH MODULE 3: NUMBER CONVERSIONS SCRATCH MODULE 3: NUMBER CONVERSIONS INTRODUCTION The purpose of this module is to experiment with user interactions, error checking input, and number conversion algorithms in Scratch. We will be exploring

More information

Math 7 Glossary Terms

Math 7 Glossary Terms Math 7 Glossary Terms Absolute Value Absolute value is the distance, or number of units, a number is from zero. Distance is always a positive value; therefore, absolute value is always a positive value.

More information

Math 6, Unit 8 Notes: Geometric Relationships

Math 6, Unit 8 Notes: Geometric Relationships Math 6, Unit 8 Notes: Geometric Relationships Points, Lines and Planes; Line Segments and Rays As we begin any new topic, we have to familiarize ourselves with the language and notation to be successful.

More information

1.4 Perimeter, Area and Surface Area of Similar Figures

1.4 Perimeter, Area and Surface Area of Similar Figures Foundations of Math Section.4 Perimeter, rea and Surface rea of Similar Figures 35.4 Perimeter, rea and Surface rea of Similar Figures The squares shown below are similar. The corresponding sides are in

More information

2 + (-2) = 0. Hinojosa 7 th. Math Vocabulary Words. Unit 1. Word Definition Picture. The opposite of a number. Additive Inverse

2 + (-2) = 0. Hinojosa 7 th. Math Vocabulary Words. Unit 1. Word Definition Picture. The opposite of a number. Additive Inverse Unit 1 Word Definition Picture Additive Inverse The opposite of a number 2 + (-2) = 0 Equal Amount The same in quantity = Fraction A number in the form a/b, where b 0. Half One of two equal parts of a

More information

Connecticut Alternate Assessment: Individual Student Report Performance Literals Mathematics

Connecticut Alternate Assessment: Individual Student Report Performance Literals Mathematics Connecticut Alternate Assessment: Individual Student Report Performance Literals Mathematics Published November 9, 2016 Copyright 2016 by the Connecticut State Board of Education in the name of the Secretary

More information

Unit Lesson Plan: Measuring Length and Area: Area of shapes

Unit Lesson Plan: Measuring Length and Area: Area of shapes Unit Lesson Plan: Measuring Length and Area: Area of shapes Day 1: Area of Square, Rectangles, and Parallelograms Day 2: Area of Triangles Trapezoids, Rhombuses, and Kites Day 3: Quiz over Area of those

More information

UNIT 11. Angle Relationships, Area, and Perimeter/Circumference CCM6+ Name: Math Teacher: Projected Test Date: Unit 11 Vocabulary...

UNIT 11. Angle Relationships, Area, and Perimeter/Circumference CCM6+ Name: Math Teacher: Projected Test Date: Unit 11 Vocabulary... Page 1 CCM6+ Unit 11 Angle Relationships, Area, Perimeter/Circumference 15-16 UNIT 11 Angle Relationships, Area, and Perimeter/Circumference 2016 2017 CCM6+ Name: Math Teacher: Projected Test Date: Unit

More information

Algebra/Geometry Institute Summer 2010

Algebra/Geometry Institute Summer 2010 Algebra/Geometry Institute Summer 2010 Faculty Name: Diana Sanders School: John F. Kennedy Memorial High School Mound Bayou, MS Grade Level: 7 th Grade Investigating Surface Area 1. Teaching objective(s)

More information

1

1 1 2 3 4 5 >>> 6 + - * / ** % 7 8 >>> 2 / 2 + 1 * 3 4.0 >>> 2 / (2 + 1) * 3 2.0 9 451 3.1416 10 / >>> 5 / 3 1.6666666666666667 >>> 6 / 3 2.0 11 // >>> 6 // 3 2 >>> 11 // 5 2 >>> 5 // 3 1 12 Hello" 'Picobot'

More information

SUMMER MATH PREP WORK FOR STUDENTS ENTERING GEOMETRY

SUMMER MATH PREP WORK FOR STUDENTS ENTERING GEOMETRY SUMMER MATH PREP WORK FOR STUDENTS ENTERING GEOMETRY NAME: SUMMER PREP WORK HELP 8/2, 8/9, AND 8/16 2:45PM 3:45PM BOLGER MEDIA CENTER Mr. Rosenberg will be there on 8/2 Mrs. Keelen will be there on 8/9

More information

English 3 rd Grade M-Z Vocabulary Cards and Word Walls Revised: 1/13/14

English 3 rd Grade M-Z Vocabulary Cards and Word Walls Revised: 1/13/14 English 3 rd Grade M-Z Vocabulary Cards and Word Walls Revised: 1/13/14 Important Notes for Teachers: The vocabulary cards in this file match the Common Core, the math curriculum adopted by the Utah State

More information

Learning Log Title: CHAPTER 6: TRANSFORMATIONS AND SIMILARITY. Date: Lesson: Chapter 6: Transformations and Similarity

Learning Log Title: CHAPTER 6: TRANSFORMATIONS AND SIMILARITY. Date: Lesson: Chapter 6: Transformations and Similarity Chapter 6: Transformations and Similarity CHAPTER 6: TRANSFORMATIONS AND SIMILARITY Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 6: Transformations and Similarity Date: Lesson:

More information

The area of this square is 9 square units. This array has 2 rows and 5 columns. So, 2 5 = 10. The gas container has a capacity of 5 gallons.

The area of this square is 9 square units. This array has 2 rows and 5 columns. So, 2 5 = 10. The gas container has a capacity of 5 gallons. Third Grade 434 Area: The number of nonoverlapping units that cover a closed boundary (measured in square units). Array: An arrangement of objects in a regular pattern, usually rows and columns. Arrays

More information

Program Design: Read the following pseudocode that describes how the program is going to run.

Program Design: Read the following pseudocode that describes how the program is going to run. Programming Assignment #4 Summer 2017 Math for Fifth Grade: Overview In this program you are going to build a python program that uses the graphics library (created by Dr. Zelle) you learned in the class

More information

Rectangular Box vs. Cube

Rectangular Box vs. Cube A rectangular box is 4 centimeters longer and 3 centimeters narrower than a certain cube. The rectangular box and the cube have equal heights and equal surface areas. Which box holds the most centimeter

More information

4. Use a loop to print the first 25 Fibonacci numbers. Do you need to store these values in a data structure such as an array or list?

4. Use a loop to print the first 25 Fibonacci numbers. Do you need to store these values in a data structure such as an array or list? 1 Practice problems Here is a collection of some relatively straightforward problems that let you practice simple nuts and bolts of programming. Each problem is intended to be a separate program. 1. Write

More information