Lab 1. Purpose. Assignment. Action Items/Programming Requirements

Size: px
Start display at page:

Download "Lab 1. Purpose. Assignment. Action Items/Programming Requirements"

Transcription

1 Lab 1 Purpose To assess your ability to apply the knowledge and skills developed in weeks 1 through 4. Emphasis will be placed on the following learning outcomes: 1. Create and display simple syntactically correct HTML documents. 2. Describe the execution a JavaScript program in a web browser. 3. Write and call functions that utilize parameters and return values. 4. Declare, define, and use variables in a script. 5. Correctly use the JavaScript conditional "if" statement. Assignment Your local school district wants a web page to analyze triangles based on the lengths of the three sides. You have been selected to create the HTML and JavaScript files needed to implement this analyzer. This application is to determine two things about each triangle once it determines that the inputs can form a triangle: Categorize by the number of sides with equal lengths o Equilateral triangle (all 3 sides are the same length) o Isosceles triangle (two sides are of the same length, the third is of a different length) o Scalene triangle (all 3 sides are of differing lengths) Categorize by largest angle o Right triangle (triangle contains a 90 degree angle) o Obtuse triangle (triangle contains an angle > 90 degrees) o Acute triangle (triangle only contains angles < 90 degrees) Categorizing by largest angle only using the lengths of the sides can be accomplished as follows: Determine which of the three sides is the longest. We will call this s1 The other two sides we will call s2 and s3 Calculate the squares of each of the three sides. We will call these s1sq, s2sq and s3sq Compare s1sq to the sum of s2sq and s3sq If they equal then the triangle is a right triangle o This is the Pythagorean theorem If s1sq is bigger than the sum then it is an obtuse triangle Otherwise it is an acute triangle The first step is verifying that the inputs can form triangle. If the sum of the lengths of the two shorter sides is less than the longest side s length then those three sides cannot construct a triangle. Action Items/Programming Requirements

2 The solution must use and deliver both an HTML and a JS file. The JS file must be referenced in the <head> tag of the HTML document using the <script> tag to load your function so it can be called later on. The solution should use a <script> in the <body> of the HTML to prompt the user for the necessary input information, then call the function passing the input information as parameters. The input information is: o The length of the 1 st side of a triangle o The length of the 2 nd side of a triangle o The length of the 3 rd side of a triangle The prompt() function must be used to all gather information from the user just as was done in the example screen shots. Do not use <input> tags. The function shall calculate the answers, build and output additional HTML with analysis information. Function Requirements You must use a function as described below o Function must have three parameters, representing the lengths of the three sides of a triangle. o The function must be in the JS file. o Do not prompt for user input within the analysis function, input values must be passed as function parameters. o The function parameters must be used for all analysis in the function. No global variables allowed. Put the HTML and JS files in the same folder. Try to make your solution look similar to the screen shots. Put identifying information in your files: your name, assignment name/number term/class. Example for HTML: <!-- YourName Lab Wi-ITEC136 --> Example for JS: /** YourName * Lab WI-ITEC 136 */ Review code against the documentation and style requirements Word document available on the course web site for the assignment. You will find that both documentation and style requirements are facilitated by the Aptana Integrated Development Environment (IDE). Screenshots (FireFox): Prompting the sides of a triangle:

3 Displaying results for can t form a triangle :

4 Displaying results for an analysis: Helpful Hints The following hints may help you to solve the problem: Use the prompt() function to input data. For example: var favcolor = prompt("what is your favorite color?", "yellow ); The first parameter is shown to the user and the second parameter is the optional default response. Recall that prompt() returns a string value. Use the parsefloat() function to convert a string into a floating point number. After the JavaScript below, receipttotal will hold a floating point value with decimal precision, ready to be used in math operations. var numberasstring = "6.023"; var receipttotal = parsefloat(numberasstring); Use the parseint() function to convert a string into an integer number. After the JavaScript below, totalpeople will hold a whole number value of 123, ready to be used in math operations. var totalpeopleasstring = "123"; var totalpeople = parseint(totalpeopleasstring); Use the tofixed() method of any Number object (variable) to convert a number into a string with a fixed number of decimal places. For example: var mypi = ;

5 document.writeln(mypi.tofixed(4)); // writes out Use Math.round() to round a number to the nearest integer var wholenum = Math.round(20.49); // Returns 20 Grading Criteria Quality of the solution: 0 50 points o Documentation (internal comments) (0 5 points) It is not uncommon for industry to impose a way of documenting software that is uniform across all programmers. Documentation standards are outlined in the same document referenced in the style bullet below. o Style (formatting, naming conventions and appearance of solution code) (0 5 points) As listed in the action items of the course web page lab assignment, ensure that your solution code meets the documentation and style guidelines for this course. The documentation and style requirements Word document titled "DocumentationAndStyleGuidelines.doc exists in the Resources folder on your course CD and as a link on the lab assignment page web page. Review your code against this document. I am looking for consistency also. For example, if you prefer to put your curly braces on the same line as the if statement rather than the next line, that is fine provided you are consistent throughout your code. o Correctness (how the program works under test) (0 40 points) The program should work, and be seen to work. The code should be robust. Note that grammar, spelling, and writing mechanics do not contribute to the total points for this assignment; however, improper grammar, poor spelling, or poor writing mechanics may result in significant point deductions.

Lab 2 Population. Purpose. Assignment Lab 2 analyzes population growth of a town as well as compare the population growth of two towns.

Lab 2 Population. Purpose. Assignment Lab 2 analyzes population growth of a town as well as compare the population growth of two towns. Lab 2 Population Purpose To assess your ability to apply the knowledge and skills developed up though week 7. Emphasis will be placed on the following learning outcomes: 1. Decompose a problem into modularized

More information

Lab 1 Concert Ticket Calculator

Lab 1 Concert Ticket Calculator Lab 1 Concert Ticket Calculator Purpose To assess your ability to apply the knowledge and skills developed in weeks 1 through 3. Emphasis will be placed on the following learning outcomes: 1. Create and

More information

Lab 3 - Pizza. Purpose. Assignment

Lab 3 - Pizza. Purpose. Assignment Lab 3 - Pizza Purpose To assess your ability to apply the knowledge and skills developed in weeks 1 through 9. Emphasis will be placed on the following learning outcomes: 1. Create syntactically correct

More information

ITEC136 - Lab 2 Population

ITEC136 - Lab 2 Population ITEC136 - Lab 2 Population Purpose To assess your ability to apply the knowledge and skills developed up though week 7. Emphasis will be placed on the following learning outcomes: 1. Decompose a problem

More information

Geometry- Unit 6 Notes. Simplifying Radicals

Geometry- Unit 6 Notes. Simplifying Radicals Geometry- Unit 6 Notes Name: Review: Evaluate the following WITHOUT a calculator. a) 2 2 b) 3 2 c) 4 2 d) 5 2 e) 6 2 f) 7 2 g) 8 2 h) 9 2 i) 10 2 j) 2 2 k) ( 2) 2 l) 2 0 Simplifying Radicals n r Example

More information

Study Guide and Review

Study Guide and Review Choose the term that best matches the statement or phrase. a square of a whole number A perfect square is a square of a whole number. a triangle with no congruent sides A scalene triangle has no congruent

More information

Summer Math Packet for Rising 8 th Grade Students

Summer Math Packet for Rising 8 th Grade Students Name This assignment provides a review of mathematical and algebraic skills that are required for success in 8 th grade accelerated math class. Students, please use the packets as a review to help you

More information

SUGGESTED LEARNING STRATEGIES:

SUGGESTED LEARNING STRATEGIES: Lesson 22-2 ACTIVITY 22 Learning Targets: Classify angles by their measures. Classify triangles by their angles. Recognize the relationship between the lengths of sides and measures of angles in a triangle.

More information

Classify Triangles. by the Angle Measure &The Side Lengths. Properties a SCALENE Triangle angles 1.Sum of the interior

Classify Triangles. by the Angle Measure &The Side Lengths. Properties a SCALENE Triangle angles 1.Sum of the interior Classify s by the Angle Measure &The Side Lengths Foldable Resource & Reference Properties a SCALENE angles 1.Sum of the interior equals. 180 2. The measure of each is side length is. different Note: If

More information

(13) Page #1 8, 12, 13, 15, 16, Even, 29 32, 39 44

(13) Page #1 8, 12, 13, 15, 16, Even, 29 32, 39 44 Geometry/Trigonometry Unit 7: Right Triangle Notes Name: Date: Period: # (1) Page 430 #1 15 (2) Page 430 431 #16 23, 25 27, 29 and 31 (3) Page 437 438 #1 8, 9 19 odd (4) Page 437 439 #10 20 Even, 23, and

More information

8. prove that triangle is a scalene triangle, right triangle, and/or an isosceles triangle. (evaluation)

8. prove that triangle is a scalene triangle, right triangle, and/or an isosceles triangle. (evaluation) Subject: Geometry Unit: Analytic Geometry Grade: 10 Students will: 1. compare parallel and perpendicular slopes. (analysis) 2. find the slope of a line given two points. (application) 3. find the length

More information

c122mar413.notebook March 06, 2013

c122mar413.notebook March 06, 2013 These are the programs I am going to cover today. 1 2 Javascript is embedded in HTML. The document.write() will write the literal Hello World! to the web page document. Then the alert() puts out a pop

More information

FAIR LAWN PUBLIC SCHOOLS RONALD J. MEZZADRI District Supervisor Mathematics, Business & Career Education Fair Lawn High School 14-00 Berdan Avenue Fair Lawn, New Jersey 07410-8067 (01) 794-5450 x11 Fax

More information

Name. 6b, Triangles. 1. A bridge contains beams that form triangles, as shown below.

Name. 6b, Triangles. 1. A bridge contains beams that form triangles, as shown below. Name 6b, Triangles 1. A bridge contains beams that form triangles, as shown below. Which of the following best describes the triangle with the given measures? acute scalene triangle obtuse scalene triangle

More information

1. Identify the different parts of a triangle 2. Classify triangles by their angle measures 3. Classify triangles by their side lengths

1. Identify the different parts of a triangle 2. Classify triangles by their angle measures 3. Classify triangles by their side lengths Lesson 8 Lesson 8, page 1 of 6 Glencoe Geometry Chapter 4.1, 4.2 Classifying Triangles & Angle Measure By the end of this lesson, you should be able to 1. Identify the different parts of a triangle 2.

More information

Discovery Activity & Practice

Discovery Activity & Practice Discovery Activity & Practice For the inquiry activity, there are two options. Choose the 2- page version (pages 12-13) for students who need more workspace and extra guidance. For Warm-Up B, choose

More information

Programming language components

Programming language components Programming language components syntax: grammar rules for defining legal statements what's grammatically legal? how are things built up from smaller things? semantics: what things mean what do they compute?

More information

Arithmetic. Edexcel Primary curriculum. Mathematics Grade 6. S.no Topics Levels

Arithmetic. Edexcel Primary curriculum. Mathematics Grade 6. S.no Topics Levels Edexcel Primary curriculum Mathematics Grade 6 Arithmetic S.no Topics Levels 1 Read and write whole numbers in words and figures. Low(P1) 2 Add and subtract mentally pairs of 2-digit numbers. Low(P1) 3

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

Summer Review for incoming Geometry students (all levels)

Summer Review for incoming Geometry students (all levels) Name: 2017-2018 Mathematics Teacher: Summer Review for incoming Geometry students (all levels) Please complete this review packet for the FIRST DAY OF CLASS. The problems included in this packet will provide

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

GEOMETRY Chapter 4 Lesson Plan: Triangle Congruence

GEOMETRY Chapter 4 Lesson Plan: Triangle Congruence GEOMETRY Chapter 4 Lesson Plan: Triangle Congruence Name Per. Chapter 3 Test 4.1 Learning Goal: I can Read through Lesson 4-2 and fill in study classify triangles by using guide. (pgs.223-226) their angle

More information

Defns An angle is in standard position if its vertex is at the origin and its initial side is on the -axis.

Defns An angle is in standard position if its vertex is at the origin and its initial side is on the -axis. Math 335 Trigonometry Sec 1.1: Angles Terminology Line AB, Line segment AB or segment AB, Ray AB, Endpoint of the ray AB is A terminal side Initial and terminal sides Counterclockwise rotation results

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. E. McGann LA Mission College Math 125 Fall 2014 Test #1 --> chapters 3, 4, & 5 MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Provide an appropriate

More information

Lines Plane A flat surface that has no thickness and extends forever.

Lines Plane A flat surface that has no thickness and extends forever. Lines Plane A flat surface that has no thickness and extends forever. Point an exact location Line a straight path that has no thickness and extends forever in opposite directions Ray Part of a line that

More information

Please be sure to save a copy of this activity to your computer!

Please be sure to save a copy of this activity to your computer! Thank you for your purchase Please be sure to save a copy of this activity to your computer! This activity is copyrighted by AIMS Education Foundation. All rights reserved. No part of this work may be

More information

TImath.com. Geometry. Triangle Inequalities

TImath.com. Geometry. Triangle Inequalities Triangle Inequalities ID: 9425 TImath.com Time required 30 minutes Topic: Right Triangles & Trigonometric Ratios Derive the Triangle Inequality as a corollary of the Pythagorean Theorem and apply it. Derive

More information

Learning Objective Key milestone indicator(s) Introduction Independence Application/Mastery

Learning Objective Key milestone indicator(s) Introduction Independence Application/Mastery Year 4 Assessment criteria for mathematics To know and use numbers Counting I can count in multiples of 2 to 9, 25, 50, 100 ad 1,000 I can find 1,000 more or less than a given number Representing Comparing

More information

ITSE 1411 Beg. Web Programming

ITSE 1411 Beg. Web Programming (JavaScript, Sequence, Functions) Last revised: 4/17/14 Directions: Perform the tasks below on your personal computer or a lab computer. This document shows the score points for each task in parentheses.

More information

CSCI 3300 Assignment 7

CSCI 3300 Assignment 7 Austin Peay State University, Tennessee Spring 2015 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 7 Total estimated time for this assignment: 12 hours When you see Richard

More information

CMPT 100 : INTRODUCTION TO

CMPT 100 : INTRODUCTION TO CMPT 100 : INTRODUCTION TO COMPUTING TUTORIAL #5 : JAVASCRIPT 2 GUESSING GAME 1 By Wendy Sharpe BEFORE WE GET STARTED... If you have not been to the first tutorial introduction JavaScript then you must

More information

CSCI 3300 Assignment 7

CSCI 3300 Assignment 7 Austin Peay State University, Tennessee Fall 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 7 Total estimated time for this assignment: 12 hours When you see Richard

More information

Arrays Structured data Arrays What is an array?

Arrays Structured data Arrays What is an array? The contents of this Supporting Material document have been prepared from the Eight units of study texts for the course M150: Date, Computing and Information, produced by The Open University, UK. Copyright

More information

Lesson 1.9.1: Proving the Interior Angle Sum Theorem Warm-Up 1.9.1

Lesson 1.9.1: Proving the Interior Angle Sum Theorem Warm-Up 1.9.1 NME: SIMILRITY, CONGRUENCE, ND PROOFS Lesson 9: Proving Theorems bout Triangles Lesson 1.9.1: Proving the Interior ngle Sum Theorem Warm-Up 1.9.1 When a beam of light is reflected from a flat surface,

More information

8 th Grade Math Reference Sheet

8 th Grade Math Reference Sheet 8 th Grade Math Reference Sheet Number Sense DECIMALS NS 1 To change a DECIMAL FRACTION, use the place value of the decimal as the denominator of the fraction; simplify if. 1. Line up decimal points 2.

More information

GRADE 6 PAT REVIEW. Math Vocabulary NAME:

GRADE 6 PAT REVIEW. Math Vocabulary NAME: GRADE 6 PAT REVIEW Math Vocabulary NAME: Estimate Round Number Concepts An approximate or rough calculation, often based on rounding. Change a number to a more convenient value. (0 4: place value stays

More information

SECTION SIX Teaching/ Learning Geometry. General Overview

SECTION SIX Teaching/ Learning Geometry. General Overview SECTION SIX Teaching/ Learning Geometry General Overview The learning outcomes for Geometry focus on the development of an understanding of the properties of three-dimensional and plane shapes and how

More information

Name Date Teacher Practice A

Name Date Teacher Practice A Practice A Triangles Identify each triangle by its angles and sides. 1. 2. 3. Find each angle measure. 4. Find x in the acute 5. Find y in the right 6. Find r in the obtuse 7. Find x in the acute 8. Find

More information

Activity 1 Look at the pattern on the number line and find the missing numbers. Model. (b) (c) (a) (b) (c) (d)

Activity 1 Look at the pattern on the number line and find the missing numbers. Model. (b) (c) (a) (b) (c) (d) Lesson Look at the pattern on the number line and find the missing numbers. Model (a) (b) (c) 9 Answers: (a) (b) (c) (a) (b) (c) (a) (b) (c) (a) (b) (c) 00 00. (a) (b) 00. (c) 0 0 (a) (b) (c) Use the number

More information

This table connects the content provided by Education Perfect to the NSW Syllabus..

This table connects the content provided by Education Perfect to the NSW Syllabus.. Education Perfect Maths is a comprehensive online learning and assessment resource. Designed by teachers and written by our in-house team of maths experts, our content aligns to the NSW Syllabus and covers

More information

Type of Triangle Definition Drawing. Name the triangles below, and list the # of congruent sides and angles:

Type of Triangle Definition Drawing. Name the triangles below, and list the # of congruent sides and angles: Name: Triangles Test Type of Triangle Definition Drawing Right Obtuse Acute Scalene Isosceles Equilateral Number of congruent angles = Congruent sides are of the congruent angles Name the triangles below,

More information

Chapter 9: Surface Area and Volume CHAPTER 9: ANGLES AND PYTHAGOREAN THEOREM. Date: Lesson: Learning Log Title:

Chapter 9: Surface Area and Volume CHAPTER 9: ANGLES AND PYTHAGOREAN THEOREM. Date: Lesson: Learning Log Title: CHAPTER 9: ANGLES AND PYTHAGOREAN THEOREM Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: MATH NOTES ANGLE VOCABULARY

More information

4.1 TRIANGLES AND ANGLES

4.1 TRIANGLES AND ANGLES 4.1 TRIANGLES AND ANGLES polygon- a closed figure in a plane that is made up of segments, called sides, that intersect only at their endpoints, called vertices Can you name these? triangle- a three-sided

More information

Level 1 - Maths Targets TARGETS. With support, I can show my work using objects or pictures 12. I can order numbers to 10 3

Level 1 - Maths Targets TARGETS. With support, I can show my work using objects or pictures 12. I can order numbers to 10 3 Ma Data Hling: Interpreting Processing representing Ma Shape, space measures: position shape Written Mental method s Operations relationship s between them Fractio ns Number s the Ma1 Using Str Levels

More information

8.4 Special Right Triangles

8.4 Special Right Triangles 8.4. Special Right Triangles www.ck1.org 8.4 Special Right Triangles Learning Objectives Identify and use the ratios involved with isosceles right triangles. Identify and use the ratios involved with 30-60-90

More information

Classifying Triangles

Classifying Triangles LESSON 36 Classifying Triangles Power Up facts Power Up E count aloud Count up by 7s from 7 to 84. mental math a. Estimation: Round 73 to the nearest ten. 70 b. Number Sense: 70 + 80 150 c. Number Sense:

More information

Manju Muralidharan Priya. CS4PM Web Aesthetics and Development WEEK 11

Manju Muralidharan Priya. CS4PM Web Aesthetics and Development WEEK 11 CS4PM Web Aesthetics and Development WEEK 11 Objective: Understand basics of JScript Outline: a. Basics of JScript Reading: Refer to w3schools websites and use the TRY IT YOURSELF editor and play with

More information

INFORMATION FOR PARENTS AND CARERS TARGETS IN MATHEMATICS

INFORMATION FOR PARENTS AND CARERS TARGETS IN MATHEMATICS INITIAL TARGETS I can share 6 objects between 2 children. I can write and use numbers (less than 10) in role play. I can count up to 10 objects independently. I can read and write numbers to 10 independently.

More information

Foundation. Scheme of Work. Year 9. September 2016 to July 2017

Foundation. Scheme of Work. Year 9. September 2016 to July 2017 Foundation Scheme of Work Year 9 September 06 to July 07 Assessments Students will be assessed by completing two tests (topic) each Half Term. These are to be recorded on Go Schools. There will not be

More information

Section 1: Decimal Numbers

Section 1: Decimal Numbers Name Date Section 1: Decimal Numbers 1) Write the place value of the underlined digit in the number 13,456. ) Write 53.004 in words. 3) Write one hundred three and fifteen hundredths. 4) Use >,

More information

Geometry ~ Unit 2. Lines, Angles, and Triangles *CISD Safety Net Standards: G.6D

Geometry ~ Unit 2. Lines, Angles, and Triangles *CISD Safety Net Standards: G.6D Lines, Angles, and Triangles *CISD Safety Net Standards: G.6D Title Suggested Time Frame 1 st and 2 nd Six Weeks Suggested Duration: 30 Days Geometry Big Ideas/Enduring Understandings Module 4 Parallel

More information

ACT Math and Science - Problem Drill 11: Plane Geometry

ACT Math and Science - Problem Drill 11: Plane Geometry ACT Math and Science - Problem Drill 11: Plane Geometry No. 1 of 10 1. Which geometric object has no dimensions, no length, width or thickness? (A) Angle (B) Line (C) Plane (D) Point (E) Polygon An angle

More information

Polygons - Part 1. Triangles

Polygons - Part 1. Triangles Polygons - Part 1 Triangles Introduction Complementary Angles: are two angles that add up to 90 Example: degrees A ADB = 65 degrees Therefore B + ADB BDC 65 deg 25 deg D BDC = 25 degrees C 90 Degrees Introduction

More information

6 th Grade Math Reference Sheet

6 th Grade Math Reference Sheet 6 th Grade Math Reference Sheet Data Analysis, Statistics, and Probability DATA ANALYSIS DSP 1 GRAPHS DSP 2 PROBABILITY DSP 3 Mean: Average Median: 1 middle number or average of 2 middle number Mode: Most

More information

MATH GRADE 6. Assessment Anchors & Eligible Content. Pennsylvania Department of Education 2007

MATH GRADE 6. Assessment Anchors & Eligible Content. Pennsylvania Department of Education 2007 MATH GRADE 6 Assessment Anchors & Eligible Content Pennsylvania Department of Education 2007 M6.A Numbers and Operations M6.A.1 Demonstrate an understanding of numbers, ways of representing numbers, relationships

More information

High School Geometry

High School Geometry High School Geometry This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence to meet curricular

More information

Year 4 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number and practical problems using all of my number skills.

Year 4 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number and practical problems using all of my number skills. Year 4 Step 1 Step 2 Step 3 End of Year Expectations Using and Applying I can solve number and practical problems using all of my number skills. Number Number system and counting I can count from 0 in

More information

Grade 7/8 Math Circles Fall Nov.4/5 The Pythagorean Theorem

Grade 7/8 Math Circles Fall Nov.4/5 The Pythagorean Theorem 1 Faculty of Mathematics Waterloo, Ontario Centre for Education in Mathematics and Computing Grade 7/8 Math Circles Fall 2014 - Nov.4/5 The Pythagorean Theorem Introduction A right triangle is any triangle

More information

ST MARY S COLLEGE FORM ONE COURSE OUTLINE MATHEMATICS. Term 1. Addition and subtraction. Multiplication and division facts

ST MARY S COLLEGE FORM ONE COURSE OUTLINE MATHEMATICS. Term 1. Addition and subtraction. Multiplication and division facts ST MARY S COLLEGE FORM ONE COURSE OUTLINE MATHEMATICS Term 1 1 1 Arithmetic: Place Value Definition of number types and the relation to each other Place value for integers. Number in words and vice versa

More information

Topic A- F th Grade Math Unit 1 Dates: Aug 1st- Aug 25 th

Topic A- F th Grade Math Unit 1 Dates: Aug 1st- Aug 25 th 5 th Grade Math Unit 1 Dates: Aug 1st- Aug 25 th Topic A- F 5.M.1 Convert among different-sized standard measurement units within a given measurement system, and use these conversions in solving multi-step

More information

5th Grade Pacing Guide/Expressions Stanwood Camano School District

5th Grade Pacing Guide/Expressions Stanwood Camano School District 11 Days 9/3 18 19 Days 9/21 10/16 Fluency Plan Unit 1 Multiplication & Division Word Problems * more geometric pattern rules in Unit. 10 mini lesson 1. 5.1.E Mentally divide two-digit numbers by one-digit

More information

Smarter Balanced Vocabulary (from the SBAC test/item specifications)

Smarter Balanced Vocabulary (from the SBAC test/item specifications) Example: Smarter Balanced Vocabulary (from the SBAC test/item specifications) Notes: Most terms area used in multiple grade levels. You should look at your grade level and all of the previous grade levels.

More information

Georgia Performance Standards for Fourth Grade

Georgia Performance Standards for Fourth Grade Georgia Performance Standards for Fourth Grade Mathematics Terms for Georgia s (CRCT) Criterion Reference Competency Test Administered in April of Each Year Parents: We are counting on you to help us teach

More information

Chapter 6.1 Medians. Geometry

Chapter 6.1 Medians. Geometry Chapter 6.1 Medians Identify medians of triangles Find the midpoint of a line using a compass. A median is a segment that joins a vertex of the triangle and the midpoint of the opposite side. Median AD

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

Christ Church, Church of England (VC) Primary School. Aspire, celebrate and learn in an inclusive community. A parent s guide to Year 5 Maths

Christ Church, Church of England (VC) Primary School. Aspire, celebrate and learn in an inclusive community. A parent s guide to Year 5 Maths Christ Church, Church of England (VC) Primary School Aspire, celebrate and learn in an inclusive community A parent s guide to Year 5 Maths 1 By the end of Year 5 children should be able to Learning objectives

More information

HPISD Curriculum: Grade 4 TAG Math

HPISD Curriculum: Grade 4 TAG Math Unit Overview HPISD Curriculum: Grade 4 TAG Math Title Estimated Duration 9 Weeks Geometry and Measurement 8 weeks 1 2 3 4 Properties/attributes of polygons, triangles, quadrilaterals Area and perimeter

More information

Geometry - Concepts 9-12 Congruent Triangles and Special Segments

Geometry - Concepts 9-12 Congruent Triangles and Special Segments Geometry - Concepts 9-12 Congruent Triangles and Special Segments Concept 9 Parallel Lines and Triangles (Section 3.5) ANGLE Classifications Acute: Obtuse: Right: SIDE Classifications Scalene: Isosceles:

More information

Math: Grade 6 Unit: Data About Us: Statistics Suggested Length: 5-6 weeks

Math: Grade 6 Unit: Data About Us: Statistics Suggested Length: 5-6 weeks Reporting Category: Data and Analysis Math: Grade 6 Unit: Data About Us: Statistics Suggested Length: 5-6 weeks Enduring Understanding and Essential Questions Concepts & Eligible Content (6 th grade PA

More information

Geometry End of Course Review

Geometry End of Course Review 1 Area of a rectangle is equal to base x height. For a triangle Area = ½ (bh) or one half base x height. The height must be the perpendicular distance from the base to the tallest part. The area of a circle

More information

Task 1. Set up Coursework/Examination Weights

Task 1. Set up Coursework/Examination Weights Lab02 Page 1 of 6 Lab 02 Student Mark Calculation HTML table button textbox JavaScript comments function parameter and argument variable naming Number().toFixed() Introduction In this lab you will create

More information

Name Date Time. Measure each angle below with a protractor. Then choose a word from the list to name each angle type: acute, obtuse, adjacent, right.

Name Date Time. Measure each angle below with a protractor. Then choose a word from the list to name each angle type: acute, obtuse, adjacent, right. 3 11 Written Assessment Progress Check 3 Part A Measure each angle below with a protractor. Then choose a word from the list to name each angle type: acute, obtuse, adjacent, right. 1. 2. 3. F C O A T

More information

Unit 3 Geometry. Chapter 7 Geometric Relationships Chapter 8 Measurement Relationships Chapter 9 Optimizing Measurements MPM1D

Unit 3 Geometry. Chapter 7 Geometric Relationships Chapter 8 Measurement Relationships Chapter 9 Optimizing Measurements MPM1D Unit 3 Geometry Chapter 7 Geometric Relationships Chapter 8 Measurement Relationships Chapter 9 Optimizing Measurements MPM1D Chapter 7 Outline Section Subject Homework Notes Lesson and Homework Complete

More information

Topic Week Elementary 2 Round numbers and measures to an

Topic Week Elementary 2 Round numbers and measures to an Topic Week Elementary 2 Round numbers and measures to an Week 1 Round a number to any given number of decimal places Round a number to any given number of significant figures. appropriate degree of accuracy(for

More information

Closed shapes with straight sides

Closed shapes with straight sides 41 Unit 6 and 7 Properties of 2D shapes Activity 1 Closed shapes with straight sides (polygons). Let s revise the 2D shapes you learnt about in Grade 5 Closed shapes with straight sides triangle quadrilateral

More information

Choose the correct answer. For 1 3, use the diagram. Which triangle is right and isosceles? Which angle is an acute angle? J L K

Choose the correct answer. For 1 3, use the diagram. Which triangle is right and isosceles? Which angle is an acute angle? J L K Choose the correct answer. For, use the diagram. Page Which triangle is right and isosceles? Which angle is an acute angle? J L K N Which is a right angle? J L K M Which is an obtuse angle? J L Which triangle

More information

The National Strategies Secondary Mathematics exemplification: Y8, 9

The National Strategies Secondary Mathematics exemplification: Y8, 9 Mathematics exemplification: Y8, 9 183 As outcomes, Year 8 pupils should, for example: Understand a proof that the sum of the angles of a triangle is 180 and of a quadrilateral is 360, and that the exterior

More information

CSCI 3300 Assignment 3

CSCI 3300 Assignment 3 Austin Peay State University, Tennessee Fall 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 3 Total estimated time for this assignment: 10 hours When you see Richard

More information

UNIT 4 MODULE 2: Geometry and Trigonometry

UNIT 4 MODULE 2: Geometry and Trigonometry Year 12 Further Mathematics UNIT 4 MODULE 2: Geometry and Trigonometry CHAPTER 8 - TRIGONOMETRY This module covers the application of geometric and trigonometric knowledge and techniques to various two-

More information

VOCABULARY. Chapters 1, 2, 3, 4, 5, 9, and 8. WORD IMAGE DEFINITION An angle with measure between 0 and A triangle with three acute angles.

VOCABULARY. Chapters 1, 2, 3, 4, 5, 9, and 8. WORD IMAGE DEFINITION An angle with measure between 0 and A triangle with three acute angles. Acute VOCABULARY Chapters 1, 2, 3, 4, 5, 9, and 8 WORD IMAGE DEFINITION Acute angle An angle with measure between 0 and 90 56 60 70 50 A with three acute. Adjacent Alternate interior Altitude of a Angle

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

Mathematics LV 4 (with QuickTables)

Mathematics LV 4 (with QuickTables) Mathematics LV 4 (with QuickTables) This course covers the topics shown below. Students navigate learning paths based on their level of readiness. Institutional users may customize the scope and sequence

More information

West Windsor-Plainsboro Regional School District Basic Geometry Grades 9-12

West Windsor-Plainsboro Regional School District Basic Geometry Grades 9-12 West Windsor-Plainsboro Regional School District Basic Geometry Grades 9-12 Unit 1: Basics of Geometry Content Area: Mathematics Course & Grade Level: Basic Geometry, 9 12 Summary and Rationale This unit

More information

introjs.notebook March 02, 2014

introjs.notebook March 02, 2014 1 document.write() uses the write method to write on the document. It writes the literal Hello World! which is enclosed in quotes since it is a literal and then enclosed in the () of the write method.

More information

NESHAMINY SCHOOL DISTRICT LANGHORNE, PA CURRICULUM MAP

NESHAMINY SCHOOL DISTRICT LANGHORNE, PA CURRICULUM MAP NESHAMINY SCHOOL DISTRICT LANGHORNE, PA CURRICULUM MAP 7th Grade Math - Course 2 Month: September Order of Operations Algebraic Expressions One step equations and inequalities Two step equations and inequalities

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

GRADE 5. Operations & Algebraic Thinking - Domain

GRADE 5. Operations & Algebraic Thinking - Domain Write and interpret numerical expressions. CLUSTERS: 1. Use parentheses, brackets, or braces in numerical expressions, and evaluate expressions with these symbols. 2. Write simple expressions that record

More information

Moore Catholic High School Math Department

Moore Catholic High School Math Department Moore Catholic High School Math Department Geometry Vocabulary The following is a list of terms and properties which are necessary for success in a Geometry class. You will be tested on these terms during

More information

6th Grade Math Learning Targets. Grade 6 Algebra

6th Grade Math Learning Targets. Grade 6 Algebra 6th Grade Math Learning Targets Grade 6 Algebra 6.A.1.1. Students are able to use order of operations, excluding nested parentheses and exponents, to simplify whole number expressions. Application I can

More information

You MUST know the big 3 formulas!

You MUST know the big 3 formulas! Name: Geometry Pd. Unit 3 Lines & Angles Review Midterm Review 3-1 Writing equations of lines. Determining slope and y intercept given an equation Writing the equation of a line given a graph. Graphing

More information

G.8 Right Triangles STUDY GUIDE

G.8 Right Triangles STUDY GUIDE G.8 Right Triangles STUDY GUIDE Name Date Block Chapter 7 Right Triangles Review and Study Guide Things to Know (use your notes, homework, quizzes, textbook as well as flashcards at quizlet.com (http://quizlet.com/4216735/geometry-chapter-7-right-triangles-flashcardsflash-cards/)).

More information

Key Milestone Indicator(s) Basic Advancing Deep. With help or structure, there is counting forwards to and across 100, beginning with 0 or 1.

Key Milestone Indicator(s) Basic Advancing Deep. With help or structure, there is counting forwards to and across 100, beginning with 0 or 1. Milestone 1 Assessment criteria for mathematics Learning Objective To know and use numbers Counting Key Milestone Indicator(s) Basic Advancing Deep Count to and across 100, forwards and backwards, beginning

More information

JAVASCRIPT BASICS. Type-Conversion in JavaScript. Type conversion or typecasting is one of the very important concept in

JAVASCRIPT BASICS. Type-Conversion in JavaScript. Type conversion or typecasting is one of the very important concept in Type-Conversion in JavaScript Description Type conversion or typecasting is one of the very important concept in JavaScript. It refers to changing an entity or variable from one datatype to another. There

More information

9. 4 points: What is the area of the triangle with vertices whose coordinates are (3,7), ( 4,25), and (3,11)?

9. 4 points: What is the area of the triangle with vertices whose coordinates are (3,7), ( 4,25), and (3,11)? Geometry 5 th Grade Bubble in your answers on the answer sheet. Be sure to erase all mistakes completely. You do not need to bubble in leading zeros the answer of 7 does not need to be answered as 007.

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

Geometry. Oklahoma Math Day INSTRUCTIONS:

Geometry. Oklahoma Math Day INSTRUCTIONS: Oklahoma Math Day November 16, 016 Geometry INSTRUCTIONS: 1. Do not begin the test until told to do so.. Calculators are not permitted. 3. Be sure to enter your name and high school code on the answer

More information

Introduction to Geometry

Introduction to Geometry Introduction to Geometry This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (211 topics + 6 additional topics)

More information

c) Are the triangles isosceles, scalene, or equilateral triangles?

c) Are the triangles isosceles, scalene, or equilateral triangles? Question #1: For the figure shown: 6 4 L 6 T a) Find the length of LT b) Find the length of T c) re the triangles isosceles, scalene, or equilateral triangles? d) Find the perimeter of triangle Question

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

Vocabulary for Geometry. Line (linea) a straight collection of points extending in opposite directions without end.

Vocabulary for Geometry. Line (linea) a straight collection of points extending in opposite directions without end. Vocabulary for Geometry Line (linea) a straight collection of points extending in opposite directions without end. A line AB or line BA B Symbol for a line is AB Jan 27 2:56 PM Line Segment (linea segmento)

More information