Measurement. Joseph Spring. Based on Software Metrics by Fenton and Pfleeger

Size: px
Start display at page:

Download "Measurement. Joseph Spring. Based on Software Metrics by Fenton and Pfleeger"

Transcription

1 Measurement Joseph Spring Based on Software Metrics by Fenton and Pfleeger

2 Discussion Measurement Direct and Indirect Measurement Measurements met so far Measurement Scales and Types of Scale

3 Measurement Everyday Examples Write down three general measurements that you have met in everyday life

4 Measurement Definition Measurement is the process by which numbers or symbols are assigned to attributes of entities in the real world in such a way as to describe them according to clearly defined rules An entity is an object or an event where an object is for example a person or a room An event is for example the testing phase of a software project, or a journey, An attribute is a feature or property of an event. For example The area of a room, the colour of a room, the cost of a journey The elapsed time in a testing phase When describing entities using attributes we often use numbers or symbols, e.g. price in pounds sterling, height in cm or inches, clothing in small, medium or large abstractions for our perception of the real world Note we can make judgements about entities by knowing and analysing their attributes e.g. height of a person, James is over 7 ft tall

5 Direct and Indirect Measurement These were discussed last week Direct Measurement A Definition Examples Indirect Measurement A Definition Examples

6 Measurements met so far Experimental Models Measurements from Data Theoretical Models Measurements Probability Stochastic Lines of Code Function Points Reliability Complexity

7 Measurements met so far Prediction Systems A prediction system consists of A Mathematical Model A set of prediction procedures for determining unknown parameters Interpreting results Example Reliability (Uniform and Exponential) Complexity (McCabe s Cyclomatic Complexity for a program)

8 Classifying Software Measures An internal attribute of a product, process or resource are those that can be measured purely in terms of the product, process or resource itself. So an internal attribute is one that can be measured by examining the product, process or resource on its own separate from its behaviour Examples Consider a set of s/w modules without executing the code we can determine several internal attributes: Size in terms of LOC, complexity (eg in terms of number of decision points, McCabe), dependencies among modules, faults in the code, (misplaced commas, inappropriate use of a command, )

9 Classifying Software Measures An external attribute of a product, process or resource are those that can be measured only with respect to how the product, process or resource relates to its environment. Here the behaviour of the product, process or resource is important rather than the entity itself Examples Again for a set of s/w modules some errors we can only find when we run the code: for example number of failures experienced by the user, difficulties experienced in navigation, length of time to search a database,.

10 Classifying Software Measures What of: nominal data ordinal data interval data Ratio data absolute data Include examples for each of the above

11 Nominal Scale (Nominal Data) The most primitive form of Measurement Example Consider a study into the location of software faults, in which the possible locations are at the specification stage, the design stage, or the coding stage So the entity = faults and the attribute = location of fault Two possible mappings M 1 and M 2 could be: M 1 1 if x is a specification fault 2 if x is a design fault M2 3 if x is a coding fault 101 if x is a specification fault if x is a design fault if x is a coding fault

12 Nominal Scale (Nominal Data) There are two characteristics for the Nominal Scale: The empirical relation system consists only of different classes. There is no notion of ordering among the classes Any distinct numbering or symbolic representation of the classes is an acceptable measure, but there is no notion of magnitude associated with the numbers or symbols M 1 1 if x is a specification fault 2 if x is a design fault M2 3 if x is a coding fault 101 if x is a specification fault if x is a design fault if x is a coding fault

13 Ordinal Scale (Ordinal Data) Example Let the set of entities be software modules Let the attribute be complexity Let there be five classes of attribute: trivial, simple, moderate, complex and incomprehensible Note Here the attributes have an implicit order relation: that applies to the different classes R = is less complex than

14 Ordinal Scale (Ordinal Data) A mapping a if x is trivial b if x is simple M( x) c if x is moderate d if x is complex e if x is incomprehensible is valid providing a, b, c, d, e preserve the implicit order e.g. a < b < c < d < e e.g. a = 1, b = 2, c = 3, d = 4, e = 5 Qu. What of : a = 10, b = 11, c = 4, d = 5, e = 6 or a = 10, b = 11, c = 12, d = 13, e = 13

15 Ordinal Scale (Ordinal Data) Characteristics of the Ordinal Scale The empirical relation system consists of classes that are ordered with respect to the attribute Any mapping that preserves the ordering (a monotonic function) is acceptable The numbers are only used to rank the classes. +, -, x, and \ have no meaning here

16 Interval Scale (Interval Data) This scale captures more information than the previous two on the size of the intervals separating the classes; giving an understanding in some sense of the jump from one class to another Characteristics of the interval scale An interval scale preserves order, as with the ordinal scale An interval scale preserves differences, but not ratios So we know the difference between any two classes in ran(m) but the ratio of two classes in ran(m) doesn t make sense Addition and subtraction are acceptable for the interval scale but not multiplication or division

17 Interval Scale (Interval Data) Examples 1. Consider differences in air temperature measured in 0 C or 0 F. We may say that the difference between one degree and another is the same. However, suppose that in London the temperature is 20 0 C and in Madrid it was 30 0 C. We cannot say that it is 2/3 as hot in London as in Madrid or that it is 50% hotter in Madrid than London 2. For the M(x) example from the Ordinal scale slide if b-a = c-b = d-c = e-d then the attribute is measurable on an interval scale For example a = 1, b = 2, c = 3, d = 4, e = 5 a = 0, b = 2, c = 4, d = 6, e = 8 a = 3.1, b = 5.1, c = 7.1, d = 9.1, e = 11.1

18 Ratio Scale (Ratio Data) To preserve ratios we require the following characteristics: The measurement mapping preserves ordering, the size of intervals between entities and ratios between entities There is a zero element, representing a total lack of the attribute The measurement mapping must start at zero and increase at equal intervals, known as units All arithmetic can be meaningfully applied to the classes in the range of the mapping

19 Ratio Scale (Ratio Data) Examples 1. The length of a physical object, enabling us to make statements such as one entity is twice as long as another entity 2. The length of s/w code is also measurable on a ratio scale. E.g. lines of code, 1000;s of lines of code, number of characters in the code,

20 Absolute Scale (Absolute Data) For absolute measures M and M there exists only one transformation that maps between the two, the identity I. hence M and M are the same Characteristics of Absolute Data The measurement for an absolute scale counts the number of elements in the entity set The attribute always takes the form number of occurances of x in the entity There is only one possible measurement mapping the actual count All arithmetic analysis of the resulting count is meaningful

21 Absolute Scale (Absolute Data) Examples 1. In software engineering 1. The number of failures observed during integration testing 2. The number of people working on a software project can only be counted in one way the number of people Note 1. LOC is not an absolute measure for the attribute program length since there are different ways to measure the attribute: lines of code, 1000;s of lines of code, number of characters in the code, number of bytes, 2. However LOC is an absolute measure if the attribute is number of lines of code

22 Discussion Measurement Direct and Indirect Measurement Measurements met so far Measurement Scales and Types of Scale

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #23 Loops: Precedence of Operators

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #23 Loops: Precedence of Operators Introduction to Programming in C Department of Computer Science and Engineering Lecture No. #23 Loops: Precedence of Operators This one more concept that we have to understand, before we really understand

More information

DATA ANALYSIS I. Types of Attributes Sparse, Incomplete, Inaccurate Data

DATA ANALYSIS I. Types of Attributes Sparse, Incomplete, Inaccurate Data DATA ANALYSIS I Types of Attributes Sparse, Incomplete, Inaccurate Data Sources Bramer, M. (2013). Principles of data mining. Springer. [12-21] Witten, I. H., Frank, E. (2011). Data Mining: Practical machine

More information

Medium Term Plan Mathematics Year 6. The Medium Term Plan lists the objectives to be covered each half term for the teaching of Mathematics

Medium Term Plan Mathematics Year 6. The Medium Term Plan lists the objectives to be covered each half term for the teaching of Mathematics Medium Term Plan Mathematics Year 6 The Medium Term Plan lists the objectives to be covered each half term for the teaching of Mathematics problem, an appropriate degree of accuracy the four op s Solve

More information

LEADERS. Long and Medium Term Planning

LEADERS. Long and Medium Term Planning LEADERS Long and Medium Term Planning Medium-Term Planning W Title Curriculum objective 1 Place value and rounding off 2 Mental and written addition and subtraction of large numbers To read, write, order

More information

Measuring Complexity

Measuring Complexity Measuring Complexity outline why should we measure the complexity of a software system? what might we want to measure? complexity of the source code within a code module between code modules complexity

More information

Big Mathematical Ideas and Understandings

Big Mathematical Ideas and Understandings Big Mathematical Ideas and Understandings A Big Idea is a statement of an idea that is central to the learning of mathematics, one that links numerous mathematical understandings into a coherent whole.

More information

CONSUMPTION BASICS. MICROECONOMICS Principles and Analysis Frank Cowell. July 2017 Frank Cowell: Consumption Basics 1

CONSUMPTION BASICS. MICROECONOMICS Principles and Analysis Frank Cowell. July 2017 Frank Cowell: Consumption Basics 1 CONSUMPTION BASICS MICROECONOMICS Principles and Analysis Frank Cowell July 2017 Frank Cowell: Consumption Basics 1 Overview Consumption: Basics The setting The environment for the basic consumer optimisation

More information

Basic Concepts Weka Workbench and its terminology

Basic Concepts Weka Workbench and its terminology Changelog: 14 Oct, 30 Oct Basic Concepts Weka Workbench and its terminology Lecture Part Outline Concepts, instances, attributes How to prepare the input: ARFF, attributes, missing values, getting to know

More information

Understanding Geospatial Data Models

Understanding Geospatial Data Models Understanding Geospatial Data Models 1 A geospatial data model is a formal means of representing spatially referenced information. It is a simplified view of physical entities and a conceptualization of

More information

Simplifying Expressions

Simplifying Expressions Unit 1 Beaumont Middle School 8th Grade, 2017-2018 Math8; Intro to Algebra Name: Simplifying Expressions I can identify expressions and write variable expressions. I can solve problems using order of operations.

More information

Year 1 End of Year Maths Targets. Pupil Name AUT 2 SPR 2 SPR 1 AUT 1 SUM 1 SUM 2 TARGETS

Year 1 End of Year Maths Targets. Pupil Name AUT 2 SPR 2 SPR 1 AUT 1 SUM 1 SUM 2 TARGETS Year End of Year Maths Targets Pupil Name Number and place value I can count to and across 00, forward and backwards,beginning with 0 or from any number. I can count in multiples of, 5 and 0. I can count,

More information

Use Math to Solve Problems and Communicate. Level 1 Level 2 Level 3 Level 4 Level 5 Level 6

Use Math to Solve Problems and Communicate. Level 1 Level 2 Level 3 Level 4 Level 5 Level 6 Number Sense M.1.1 Connect and count number words and numerals from 0-999 to the quantities they represent. M.2.1 Connect and count number words and numerals from 0-1,000,000 to the quantities they represent.

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

Central Valley School District Math Curriculum Map Grade 8. August - September

Central Valley School District Math Curriculum Map Grade 8. August - September August - September Decimals Add, subtract, multiply and/or divide decimals without a calculator (straight computation or word problems) Convert between fractions and decimals ( terminating or repeating

More information

Groveport Madison Local School District Third Grade Math Content Standards. Planning Sheets

Groveport Madison Local School District Third Grade Math Content Standards. Planning Sheets Standard: Patterns, Functions and Algebra A. Analyze and extend patterns, and describe the rule in words. 1. Extend multiplicative and growing patterns, and describe the pattern or rule in words. 2. Analyze

More information

Middle School Math Course 3

Middle School Math Course 3 Middle School Math Course 3 Correlation of the ALEKS course Middle School Math Course 3 to the Texas Essential Knowledge and Skills (TEKS) for Mathematics Grade 8 (2012) (1) Mathematical process standards.

More information

Scope and Sequence for the New Jersey Core Curriculum Content Standards

Scope and Sequence for the New Jersey Core Curriculum Content Standards Scope and Sequence for the New Jersey Core Curriculum Content Standards The following chart provides an overview of where within Prentice Hall Course 3 Mathematics each of the Cumulative Progress Indicators

More information

Mathematics Curriculum Grade 6

Mathematics Curriculum Grade 6 supplementary 6A. Numbers and Operations numbers, ways of representing numbers, relationships among numbers and number systems. 6A.1 6A.2 6A.3 6A.4 Demonstrate number sense for fractions, mixed numbers,

More information

ROCHESTER COMMUNITY SCHOOL MATHEMATICS SCOPE AND SEQUENCE, K-5 STRAND: NUMERATION

ROCHESTER COMMUNITY SCHOOL MATHEMATICS SCOPE AND SEQUENCE, K-5 STRAND: NUMERATION STRAND: NUMERATION Shows one-to-one correspondence for numbers 1-30 using objects and pictures Uses objects and pictures to show numbers 1 to 30 Counts by 1s to 100 Counts by 10s to 100 Counts backwards

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

Department of Computer Science. Thomas Borchert. Code Profiling. Static Code Analysis. Computer Science E-level thesis (30hp)

Department of Computer Science. Thomas Borchert. Code Profiling. Static Code Analysis. Computer Science E-level thesis (30hp) Department of Computer Science Thomas Borchert Code Profiling Static Code Analysis Computer Science E-level thesis (3hp) Date: 8-1-23 Supervisor: Donald F. Ross Examiner: Thijs J. Holleboom Serial Number:

More information

Objective 1 : The student will demonstrate an understanding of numbers, operations, and quantitative reasoning.

Objective 1 : The student will demonstrate an understanding of numbers, operations, and quantitative reasoning. Essential Mathematics (with QuickTables) Correlation of the ALEKS course Essential Mathematics to the Texas Assessment of Knowledge and Skills (TAKS) for Grade 6 Objective 1 : The student will demonstrate

More information

Neighbourhood Operations Specific Theory

Neighbourhood Operations Specific Theory Neighbourhood Operations Specific Theory Neighbourhood operations are a method of analysing data in a GIS environment. They are especially important when a situation requires the analysis of relationships

More information

Data Mining. Part 1. Introduction. 1.3 Input. Fall Instructor: Dr. Masoud Yaghini. Input

Data Mining. Part 1. Introduction. 1.3 Input. Fall Instructor: Dr. Masoud Yaghini. Input Data Mining Part 1. Introduction 1.3 Fall 2009 Instructor: Dr. Masoud Yaghini Outline Instances Attributes References Instances Instance: Instances Individual, independent example of the concept to be

More information

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault

+ = Spatial Analysis of Raster Data. 2 =Fault in shale 3 = Fault in limestone 4 = no Fault, shale 5 = no Fault, limestone. 2 = fault 4 = no fault Spatial Analysis of Raster Data 0 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 2 4 4 4 2 4 5 5 4 2 4 4 4 2 5 5 4 4 2 4 5 4 3 5 4 4 4 2 5 5 5 3 + = 0 = shale 1 = limestone 2 = fault 4 = no fault 2 =Fault in shale 3 =

More information

S. Rinzivillo DATA VISUALIZATION AND VISUAL ANALYTICS

S. Rinzivillo DATA VISUALIZATION AND VISUAL ANALYTICS S. Rinzivillo rinzivillo@isti.cnr.it DATA VISUALIZATION AND VISUAL ANALYTICS Perception and Cognition vs Game #4 How many 3s? 1258965168765132168943213 5463479654321320354968413 2068798417184529529287149

More information

End-of-Year Assessment Goals

End-of-Year Assessment Goals End-of-Year Assessment Goals The End-of-Year Assessment (pages 24 241) provides an additional opportunity that you may use as part of your balanced assessment plan. It covers some of the important concepts

More information

EDINBURGH PRIMARY SCHOOL

EDINBURGH PRIMARY SCHOOL EDINBURGH PRIMARY SCHOOL TARGETS FOR THE NEW MATHEMATICS CURRICULUM Parent Information Edinburgh Primary School Assessment MATHEMATICS TARGETS - A YEAR 1 MATHEMATICIAN Number and place value I can count

More information

MAT 155. Chapter 1 Introduction to Statistics. sample. population. parameter. statistic

MAT 155. Chapter 1 Introduction to Statistics. sample. population. parameter. statistic MAT 155 Dr. Claude Moore Cape Fear Community College Chapter 1 Introduction to Statistics 1 1Review and Preview 1 2Statistical Thinking 1 3Types of Data 1 4Critical Thinking 1 5Collecting Sample Data Key

More information

Mathematics Curriculum Medium Term Planning Year Five

Mathematics Curriculum Medium Term Planning Year Five Curriculum Medium Term Planning Year Five Year Five Programme of Study Number Number and Place Value Statutory Requirements Pupils should be taught to: read, write, order and compare numbers to at least

More information

Data can be in the form of numbers, words, measurements, observations or even just descriptions of things.

Data can be in the form of numbers, words, measurements, observations or even just descriptions of things. + What is Data? Data is a collection of facts. Data can be in the form of numbers, words, measurements, observations or even just descriptions of things. In most cases, data needs to be interpreted and

More information

FOR0383 Software Quality Assurance

FOR0383 Software Quality Assurance This method seems much, much bigger than all the other methods. FOR0383 Software Quality Assurance Lecture 15 Code metrics "You cannot control what you cannot measure." Tom DeMarco 2/11/2009 Dr Andy Brooks

More information

Map Analysis of Raster Data I 3/8/2018

Map Analysis of Raster Data I 3/8/2018 Map Analysis of Raster Data I /8/8 Spatial Analysis of Raster Data What is Spatial Analysis? = shale = limestone 4 4 4 4 5 5 4 4 4 4 5 5 4 4 4 5 4 5 4 4 4 5 5 5 + = = fault =Fault in shale 4 = no fault

More information

Math Lesson Plan 3rd Grade Curriculum Total Activities: 168

Math Lesson Plan 3rd Grade Curriculum Total Activities: 168 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

Chapter Two: Descriptive Methods 1/50

Chapter Two: Descriptive Methods 1/50 Chapter Two: Descriptive Methods 1/50 2.1 Introduction 2/50 2.1 Introduction We previously said that descriptive statistics is made up of various techniques used to summarize the information contained

More information

Maths Scope and Sequence. Gr. 5 - Data Handling. Mathematics Scope and Sequence Document Last Updated August SM

Maths Scope and Sequence. Gr. 5 - Data Handling. Mathematics Scope and Sequence Document Last Updated August SM Maths Scope and Sequence Mathematics Scope and Sequence Document Last Updated ugust 2013. SM Gr. 5 - Data Handling Overall expectation - Phase 4 Learners will collect, organize and display data for the

More information

number Understand the equivalence between recurring decimals and fractions

number Understand the equivalence between recurring decimals and fractions number Understand the equivalence between recurring decimals and fractions Using and Applying Algebra Calculating Shape, Space and Measure Handling Data Use fractions or percentages to solve problems involving

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

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability

7 Fractions. Number Sense and Numeration Measurement Geometry and Spatial Sense Patterning and Algebra Data Management and Probability 7 Fractions GRADE 7 FRACTIONS continue to develop proficiency by using fractions in mental strategies and in selecting and justifying use; develop proficiency in adding and subtracting simple fractions;

More information

Percentage and Ratio. Properties of Number. Perimeter and Area. Position and Direction MATHS LADDER CONTENTS LEARNING LADDERS

Percentage and Ratio. Properties of Number. Perimeter and Area. Position and Direction MATHS LADDER CONTENTS LEARNING LADDERS MATHS NAME CLASS CONTENTS Page 4 Page 6 Page 8 Page 10 Page 12 Page 14 Page 18 Page 20 Page 22 Page 26 Page 28 Page 32 Page 34 Page 36 Page 40 Page 44 Page 46 Times Tables Addition Subtraction Multiplication

More information

MATHS. years 4,5,6. malmesbury c of e primary school NAME CLASS

MATHS. years 4,5,6. malmesbury c of e primary school NAME CLASS MATHS years 4,5,6 NAME CLASS malmesbury c of e primary school LEARNING LADDERS CONTENTS Ladder Title Times Tables Addition Subtraction Multiplication Division Fractions Decimals Percentage and Ratio Problem

More information

Data Mining. 1.3 Input. Fall Instructor: Dr. Masoud Yaghini. Chapter 3: Input

Data Mining. 1.3 Input. Fall Instructor: Dr. Masoud Yaghini. Chapter 3: Input Data Mining 1.3 Input Fall 2008 Instructor: Dr. Masoud Yaghini Outline Instances Attributes References Instances Instance: Instances Individual, independent example of the concept to be learned. Characterized

More information

Chapter 1 Introduction to Statistics

Chapter 1 Introduction to Statistics Corresponds to ELEMENTARY STATISTICS USING THE TI 83/84 PLUS CALCULATOR 3rd ed. Lecture Slides Elementary Statistics Eleventh Edition and the Triola Statistics Series by Mario F. Triola Chapter 1 Introduction

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

Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6

Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6 Mathematics - LV 6 Correlation of the ALEKS course Mathematics MS/LV 6 to the State of Texas Assessments of Academic Readiness (STAAR) for Grade 6 Number, Operation, and Quantitative Reasoning. 6.1.A:

More information

Cycle 1 Autumn Themes Cross curricular maths Maths Units Skills Non-negotiables

Cycle 1 Autumn Themes Cross curricular maths Maths Units Skills Non-negotiables Maths Long Term Plan Year 6 Cycle 1 Autumn Themes Cross curricular maths Maths Units Skills Non-negotiables New Beginnings (2 weeks) Data collection across school Place Value games focus / Tables and Division

More information

Mathematics - Grade 7: Introduction Math 7

Mathematics - Grade 7: Introduction Math 7 Mathematics - Grade 7: Introduction Math 7 In Grade 7, instructional time should focus on four critical areas: (1) developing understanding of and applying proportional relationships; (2) developing understanding

More information

Math Lesson Plan 3rd Grade Curriculum Total Activities: 190

Math Lesson Plan 3rd Grade Curriculum Total Activities: 190 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

Number. Measure. Geometry. Key:

Number. Measure. Geometry. Key: Year R Maths - Key Performance Indicator Can count reliably with numbers from one to 0. Can find one more or one less than a given number. Using quantities or objects, can add or subtract two single digit

More information

Larkrise Maths Curriculum Pitch & Expectations Shape, Space & Measure

Larkrise Maths Curriculum Pitch & Expectations Shape, Space & Measure Larkrise Maths Curriculum Pitch & Expectations Shape, Space & Measure Measurement Compare, describe and solve practical problems for lengths and heights, mass/weight, capacity and volume time Measure and

More information

NUMBER SENSE AND OPERATIONS. Competency 0001 Understand the structure of numeration systems and multiple representations of numbers.

NUMBER SENSE AND OPERATIONS. Competency 0001 Understand the structure of numeration systems and multiple representations of numbers. SUBAREA I. NUMBER SENSE AND OPERATIONS Competency 0001 Understand the structure of numeration systems and multiple representations of numbers. Prime numbers are numbers that can only be factored into 1

More information

NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA

NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA Statistics is concerned with scientific methods of collecting, recording, organising, summarising, presenting and analysing data from which future

More information

Stage 6 Checklists Have you reached this Standard?

Stage 6 Checklists Have you reached this Standard? Stage 6 Checklists Have you reached this Standard? Main Criteria for the whole year. Multiply and divide numbers with up to three decimal places by 10, 100, and 1000 Use long division to divide numbers

More information

LASER s Level 2 Maths Course - Summary

LASER s Level 2 Maths Course - Summary LASER s Level 2 Maths Course - Summary Unit Code Unit Title Credits Level Status SER945 Shape, Space and Measurement 3 2 Mandatory SER946 Collecting, Recording and Analysing Data 3 2 Mandatory SER947 Development

More information

I can fluently multiply within 100 using strategies and properties. (i.e., associative property of multiplication; basic facts) I/E R R

I can fluently multiply within 100 using strategies and properties. (i.e., associative property of multiplication; basic facts) I/E R R FOURTH GRADE BROKEN ARROW MATH 1 2 3 Operations and Algebraic Thinking: Use the four operations with whole numbers to solve problems *BA 1 I can explain how a multiplication equation can be used to compare.

More information

ELGIN ACADEMY Mathematics Department Evaluation Booklet (Main) Name Reg

ELGIN ACADEMY Mathematics Department Evaluation Booklet (Main) Name Reg ELGIN ACADEMY Mathematics Department Evaluation Booklet (Main) Name Reg CfEM You should be able to use this evaluation booklet to help chart your progress in the Maths department from August in S1 until

More information

Houghton Mifflin MATHEMATICS Level 1 correlated to NCTM Standard

Houghton Mifflin MATHEMATICS Level 1 correlated to NCTM Standard Number and Operations Standard Understand numbers, ways of representing numbers, relationships among numbers, and number systems count with understanding and recognize TE: 191A 195B, 191 195, 201B, 201

More information

Fractions, Decimals, Ratio and Percentages (FDRP) Measures (MEA)

Fractions, Decimals, Ratio and Percentages (FDRP) Measures (MEA) Termly assessment Number and Place Value (NPV) Addition and Subtraction (AS) Multiplication and Division (MD) Fractions, Decimals, Ratio and Percentages (FDRP) Measures (MEA) Geometry (GEO) Statistics

More information

Houghton Mifflin Math Expressions Grade 3 correlated to Illinois Mathematics Assessment Framework

Houghton Mifflin Math Expressions Grade 3 correlated to Illinois Mathematics Assessment Framework STATE GOAL 6: NUMBER SENSE Demonstrate and apply a knowledge and sense of numbers, including numeration and operations (addition, subtraction, multiplication, division), patterns, ratios and proportions.

More information

Houghton Mifflin Math Expressions Grade 2 correlated to Illinois Mathematics Assessment Framework

Houghton Mifflin Math Expressions Grade 2 correlated to Illinois Mathematics Assessment Framework STATE GOAL 6: NUMBER SENSE Demonstrate and apply a knowledge and sense of numbers, including numeration and operations (addition, subtraction, multiplication, division), patterns, ratios and proportions.

More information

Houghton Mifflin Math Expressions Grade 1 correlated to Illinois Mathematics Assessment Framework

Houghton Mifflin Math Expressions Grade 1 correlated to Illinois Mathematics Assessment Framework STATE GOAL 6: NUMBER SENSE Demonstrate and apply a knowledge and sense of numbers, including numeration and operations (addition, subtraction, multiplication, division), patterns, ratios and proportions.

More information

Knowledge Discovery and Data Mining

Knowledge Discovery and Data Mining Knowledge Discovery and Data Mining Unit # 2 Sajjad Haider Spring 2010 1 Structured vs. Non-Structured Data Most business databases contain structured data consisting of well-defined fields with numeric

More information

ADW GRADE 5 Math Standards, revised 2017

ADW GRADE 5 Math Standards, revised 2017 NUMBER SENSE (NS) Students compute with whole numbers, decimals and fractions and understand the relationship among decimals, fractions and percents. They understand the relative magnitudes of numbers.

More information

Machine Learning Chapter 2. Input

Machine Learning Chapter 2. Input Machine Learning Chapter 2. Input 2 Input: Concepts, instances, attributes Terminology What s a concept? Classification, association, clustering, numeric prediction What s in an example? Relations, flat

More information

Florida Math 0018 Correlation of the ALEKS course Florida Math 0018 to the Florida Mathematics Competencies - Lower

Florida Math 0018 Correlation of the ALEKS course Florida Math 0018 to the Florida Mathematics Competencies - Lower Florida Math 0018 Correlation of the ALEKS course Florida Math 0018 to the Florida Mathematics Competencies - Lower Whole Numbers MDECL1: Perform operations on whole numbers (with applications, including

More information

3 rd Grade Mathematics Learning Targets By Unit PA CORE STANDARD ADDRESSED

3 rd Grade Mathematics Learning Targets By Unit PA CORE STANDARD ADDRESSED INSTRUCTIONAL UNIT UNIT 1: NUMBERS TO 10,000 PA CORE STANDARD ADDRESSED LEARNING TARGETS I can use base ten blocks to count, read and write numbers to 10,000. I can use a place-value chart to read, write

More information

= = = -1

= = = -1 MA.7.A.3.1 Use and justify the rules for adding, subtracting, multiplying, and dividing, and finding the absolute value of integers. Integers less than zero are negative integers. Integers greater than

More information

Wisconsin. Model Academic Standards. for Mathematics

Wisconsin. Model Academic Standards. for Mathematics 2004 correlated to the Wisconsin Model Academic Standards for Mathematics Grade 8 3/2003 2004 McDougal Littell Middle School Math, Course 1 2004 correlated to the Wisconsin Model Academic Standards for

More information

Mathematics Fourth Grade Performance Standards

Mathematics Fourth Grade Performance Standards Mathematics Fourth Grade Performance Standards Strand 1: Number and Operations Content Standard: Students will understand numerical concepts and mathematical operations. Benchmark 1: Understand numbers,

More information

Data Mining Practical Machine Learning Tools and Techniques

Data Mining Practical Machine Learning Tools and Techniques Input: Concepts, instances, attributes Data ining Practical achine Learning Tools and Techniques Slides for Chapter 2 of Data ining by I. H. Witten and E. rank Terminology What s a concept z Classification,

More information

AM205: lecture 2. 1 These have been shifted to MD 323 for the rest of the semester.

AM205: lecture 2. 1 These have been shifted to MD 323 for the rest of the semester. AM205: lecture 2 Luna and Gary will hold a Python tutorial on Wednesday in 60 Oxford Street, Room 330 Assignment 1 will be posted this week Chris will hold office hours on Thursday (1:30pm 3:30pm, Pierce

More information

Forestry Applied Multivariate Statistics. Cluster Analysis

Forestry Applied Multivariate Statistics. Cluster Analysis 1 Forestry 531 -- Applied Multivariate Statistics Cluster Analysis Purpose: To group similar entities together based on their attributes. Entities can be variables or observations. [illustration in Class]

More information

ELGIN ACADEMY Mathematics Department Evaluation Booklet (Core) Name Reg

ELGIN ACADEMY Mathematics Department Evaluation Booklet (Core) Name Reg ELGIN ACADEMY Mathematics Department Evaluation Booklet (Core) Name Reg CfEL You should be able to use this evaluation booklet to help chart your progress in the Maths department throughout S1 and S2.

More information

Themes in the Texas CCRS - Mathematics

Themes in the Texas CCRS - Mathematics 1. Compare real numbers. a. Classify numbers as natural, whole, integers, rational, irrational, real, imaginary, &/or complex. b. Use and apply the relative magnitude of real numbers by using inequality

More information

Wincham CP School Scheme of Work for Maths Year Group 5 Year A & B. Active Learn Year 5 Text books

Wincham CP School Scheme of Work for Maths Year Group 5 Year A & B. Active Learn Year 5 Text books Wincham CP School Scheme of Work for Maths Year Group 5 Year A & B Key to Strands (KS1) NPV: Number and Place Value NAS: Number, Addition and Subtraction NMD: Number, Multiplication and Division F: Fractions

More information

Advanced Algebra I Simplifying Expressions

Advanced Algebra I Simplifying Expressions Page - 1 - Name: Advanced Algebra I Simplifying Expressions Objectives The students will be able to solve problems using order of operations. The students will identify expressions and write variable expressions.

More information

15.1 Understanding Geometric

15.1 Understanding Geometric Name Class Date 15.1 Understanding Geometric Sequences Essential Question: How are the terms of a geometric sequence related? Resource Locker Explore 1 Exploring Growth Patterns of Geometric Sequences

More information

Data Has Shape. Did you know? Data has Shape! Examples. My Data What do you think the shape of height data for this class looks like?

Data Has Shape. Did you know? Data has Shape! Examples. My Data What do you think the shape of height data for this class looks like? L01 Data Has Shape Did you know? Data has Shape! Examples My Data What do you think the shape of height data for this class looks like? Data From you Calculate your height in inches From the shape of the

More information

ENTRY LEVEL. WJEC ENTRY LEVEL Certificate in MATHEMATICS - NUMERACY GUIDANCE FOR TEACHING

ENTRY LEVEL. WJEC ENTRY LEVEL Certificate in MATHEMATICS - NUMERACY GUIDANCE FOR TEACHING ENTRY LEVEL WJEC ENTRY LEVEL Certificate in MATHEMATICS - NUMERACY GUIDANCE FOR TEACHING Teaching from 2016 Contents 1. Introduction 3 2. Subject content and further guidance 4 2.1 Stage 1 4 2.1 Stage

More information

YEAR 7 SCHEME OF WORK - EXTENSION

YEAR 7 SCHEME OF WORK - EXTENSION YEAR 7 SCHEME OF WORK - EXTENSION Autumn Term 1 Number Skills Spring Term 1 Angles and Shape Summer Term 1 Multiplicative Reasoning Analysing and displaying data Decimals Perimeter, Area and Volume Half

More information

Data Mining. Practical Machine Learning Tools and Techniques. Slides for Chapter 3 of Data Mining by I. H. Witten, E. Frank and M. A.

Data Mining. Practical Machine Learning Tools and Techniques. Slides for Chapter 3 of Data Mining by I. H. Witten, E. Frank and M. A. Data Mining Practical Machine Learning Tools and Techniques Slides for Chapter 3 of Data Mining by I. H. Witten, E. Frank and M. A. Hall Input: Concepts, instances, attributes Terminology What s a concept?

More information

Mathematics. Scheme of Work. Year 7. New Mathematics Framework

Mathematics. Scheme of Work. Year 7. New Mathematics Framework Mathematics Scheme of Work Year 7 New Mathematics Framework 1 YEAR 7: Overview of year 7 scheme of work YEAR 7 Topics Assessment Tests Term 1 Algebra 1 Number 1 Geometry and Measures 1 Test 1 Sequences

More information

Proven to Raise Achievement for Struggling Students Grades 2 12

Proven to Raise Achievement for Struggling Students Grades 2 12 Nevada State Standards Proven to Raise Achievement for Struggling Students Grades 2 12 RTI tel 800.225.5750 epsbooks.com fax 888.440.2665 Standard 1.0 Grade 2 Numbers, Number Sense, and Computation: To

More information

Big Ideas. Objects can be transferred in an infinite number of ways. Transformations can be described and analyzed mathematically.

Big Ideas. Objects can be transferred in an infinite number of ways. Transformations can be described and analyzed mathematically. Big Ideas Numbers, measures, expressions, equations, and inequalities can represent mathematical situations and structures in many equivalent forms. Objects can be transferred in an infinite number of

More information

Product Engineering Optimizer

Product Engineering Optimizer CATIA V5 Training Foils Product Engineering Optimizer Version 5 Release 19 January 2009 EDU_CAT_EN_PEO_FI_V5R19 1 About this course Objectives of the course Upon completion of this course, you will learn

More information

TIPS4Math Grades 4 to 6 Overview Grade 4 Grade 5 Grade 6 Collect, Organize, and Display Primary Data (4+ days)

TIPS4Math Grades 4 to 6 Overview Grade 4 Grade 5 Grade 6 Collect, Organize, and Display Primary Data (4+ days) Collect, Organize, and Display Primary Data (4+ days) Collect, Organize, Display and Interpret Categorical Data (5+ days) 4m88 Collect data by conducting a survey or an experiment to do with the 4m89 Collect

More information

Week 7 Picturing Network. Vahe and Bethany

Week 7 Picturing Network. Vahe and Bethany Week 7 Picturing Network Vahe and Bethany Freeman (2005) - Graphic Techniques for Exploring Social Network Data The two main goals of analyzing social network data are identification of cohesive groups

More information

2017 Summer Review for Students Entering Pre-Algebra 7 & Pre-Algebra 8

2017 Summer Review for Students Entering Pre-Algebra 7 & Pre-Algebra 8 1. Area and Perimeter of Polygons 2. Multiple Representations of Portions 3. Multiplying Fractions and Decimals 4. Order of Operations 5. Writing and Evaluating Algebraic Expressions 6. Simplifying Expressions

More information

System Models 2. Lecture - System Models 2 1. Areas for Discussion. Introduction. Introduction. System Models. The Modelling Process - General

System Models 2. Lecture - System Models 2 1. Areas for Discussion. Introduction. Introduction. System Models. The Modelling Process - General Areas for Discussion System Models 2 Joseph Spring School of Computer Science MCOM0083 - Distributed Systems and Security Lecture - System Models 2 1 Architectural Models Software Layers System Architecture

More information

Math Lesson Plan 4th Grade Curriculum Total Activities: 204

Math Lesson Plan 4th Grade Curriculum Total Activities: 204 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

B. Number Operations and Relationships Grade 7

B. Number Operations and Relationships Grade 7 B. Number Operations and Relationships MPS Learning Target #1 Represent, rename, compare, and identify equivalent forms of fractions, decimals, and percents using place value and number theory concepts.

More information

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics

Mapping Common Core State Standard Clusters and. Ohio Grade Level Indicator. Grade 5 Mathematics Mapping Common Core State Clusters and Ohio s Grade Level Indicators: Grade 5 Mathematics Operations and Algebraic Thinking: Write and interpret numerical expressions. Operations and Algebraic Thinking:

More information

SUBJECT: YEAR: Half Term:

SUBJECT: YEAR: Half Term: Maths - Stage 2 8 1 Geometrical reasoning: lines, angles and shapes To label lines, angles and shapes To be able to identify parallel, perpendicular lines Learn correct mathematical vocabulary Label various

More information

Math Lesson Plan 4th Grade Curriculum Total Activities: 214

Math Lesson Plan 4th Grade Curriculum Total Activities: 214 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

Numerical & Proportional Reasoning: Place Value Patterns & Equivalent Forms Kindergarten Grade 2 Grades 3-5

Numerical & Proportional Reasoning: Place Value Patterns & Equivalent Forms Kindergarten Grade 2 Grades 3-5 Numerical & Proportional Reasoning: Place Value Patterns & Equivalent Forms 2.1 Numbers and words can be used to count and represent quantities or position. The position of a digit in any number determines

More information

4th Grade Math: State Standards, MPS Objectives and Essential Learnings

4th Grade Math: State Standards, MPS Objectives and Essential Learnings Grade Math: s, s and s MA 4.1 Students will communicate number sense concepts using multiple representations to reason, solve problems, and make connections within mathematics and across disciplines. MA

More information

Year 6 Mathematics Overview

Year 6 Mathematics Overview Year 6 Mathematics Overview Term Strand National Curriculum 2014 Objectives Focus Sequence Autumn 1 Number and Place Value read, write, order and compare numbers up to 10 000 000 and determine the value

More information

Data analysis using Microsoft Excel

Data analysis using Microsoft Excel Introduction to Statistics Statistics may be defined as the science of collection, organization presentation analysis and interpretation of numerical data from the logical analysis. 1.Collection of Data

More information

Note: Levels A-I respresent Grade Levels K-8; Florida - Grade 7 -Math Standards /Benchmarks PLATO Courseware Covering Florida - Grade 7 - Math

Note: Levels A-I respresent Grade Levels K-8; Florida - Grade 7 -Math Standards /Benchmarks PLATO Courseware Covering Florida - Grade 7 - Math Note: Levels A-I respresent Grade Levels K-8; - Grade 7 -Math Standards /Benchmarks 2005 PLATO Courseware Covering - Grade 7 - Math Number Sense, Concepts, and Operations Standard 1: The student understands

More information

National Numeracy and Mathematics Progression Framework BEGIN

National Numeracy and Mathematics Progression Framework BEGIN National Numeracy and Mathematics Progression Framework BEGIN Main menu Please choose an organiser below to find out more: National Numeracy Progression Framework ESTIMATION AND ROUNDING NUMBER AND NUMBER

More information