Solving Systems of Linear Equations with the Help. of Free Technology

Size: px
Start display at page:

Download "Solving Systems of Linear Equations with the Help. of Free Technology"

Transcription

1 Solving Systems of Linear Equations with the Help of Free Technology Calin Galeriu, Ph.D. 1. Introduction The use of computer technology when teaching new math concepts, or when solving difficult math problems, is a well established and recommended practice. Student friendly technology can decrease math anxiety in the classroom, improve student understanding of abstract algebra topics, simplify math calculations, and lead to more motivated students. Students with diverse learning styles need to see a variety of mathematical approaches, and technology often delivers that easier, more visual, or more powerful method. Aspiring math teachers are now expected to learn how to use educational technology, since technology provides such an effective approach to mathematical exploration and intuitive learning. Some advanced problems cannot be solved with only pencil and paper. The use of a programming language like BASIC becomes necessary when students explore approximate numerical solutions, convergence of series, and iterative or Monte Carlo methods. Computer programming in BASIC is an activity that can integrate technology into many mathematics courses. Computer programming is one excellent way to promote abstract reasoning and critical thinking. It encourages students to put structure in their thoughts, organize data clearly, think sequentially, internalize procedures and algorithms, and imagine new ways of solving problems. The best results are achieved when students have uninterrupted access to technology, at school or at home, allowing for around the clock practice. With this idea in mind we present here three excellent free computer applications (GeoGebra, Eigenmath, and a BASIC 1

2 interpreter) that can be used for mathematical activities. Because students are able to download and install the software at home they can get a better sense of ownership of the math tools provided. The three programs described complement each other, as exemplified by the following discussion about systems of linear equations. 2. GeoGebra GeoGebra is a software application that allows a hands-on approach to geometry and algebra, in an integrated environment. A GeoGebra object, usually a function, can have three representations: an algebraic definition, a visual graph, and a table of input and output values. Changes to one of the representations will immediately affect the other representations. This provides an interactive way to explore the connection between mathematical concepts. A manual is available online on the GeoGebra website ( As an example, we will solve the following system of equations by graphing: 2 x + 3 y = 4, 5 x + 6 y = 7. Using GeoGebra we can graph the two lines, we can find the intersection point, and we can identify the x and y coordinates of that point. In the Input Bar we have to type: 2x+3y=4<ENTER>, 5x+6y=7<ENTER>, Intersect[a,b]<ENTER>. 2

3 Figure 1. Solving a system of linear equations by graphing. While not the most powerful method, solving a system of linear equations by graphing is visual, very intuitive, and very easy to understand. The graphical method also provides the best way to explain the three possible answer outcomes: one solution (intersecting lines, one intersection point), no solution (parallel lines, no intersection), and infinitely many solutions (overlapping lines). 3. Eigenmath The program Eigenmath, written by George Weigt, rivals a graphing calculator. This powerful computer algebra system can, among other things, manipulate mathematical expressions in symbolic form, work with matrices, solve systems of linear equations, make graphs of parametric two-dimensional functions, and perform differentiation and integration. 3

4 The newest version of Eigenmath is called EVAlgebra, and can be downloaded from We will solve our system of equations with the help of the inverse matrix. First we have to write the system of linear equations in matrix form (A X = B): x 4 =. 6 y 7 If the square matrix of the coefficients has an inverse, then the solution is obtained by multiplying both sides of the equation by the inverse matrix (X = A 1 B). In Eigenmath this is done by typing: A=((2,3),(5,6))<ENTER>, B=(4,7)<ENTER>, X=dot(inv(A),B)<ENTER>, X<ENTER>. One could also type just dot(inv(a),b)<enter>. Figure 2. Solving a system of linear equations with the help of the inverse matrix. Solving a system of two linear equations with the help of the inverse matrix is a very fast procedure. The method also works very well for systems with more than two equations. 4

5 The shortcoming of this method is that, most often, high school students don t have a clear understanding of the steps involved in finding the inverse of a matrix, and they have to rely exclusively on the computer for this task. 4. A BASIC Interpreter While computer programming in BASIC has a longer learning curve, the results are often worth the effort. Today s computers don t come with a simple BASIC compiler already installed, like it used to be. An option for students is to use the free online BASIC interpreter written by Joshua Bell and posted online at The BASIC program listed in Figure 3 solves a system of two equations of the form: a x + b y = c, d x + e y = f. The solution formulas c e b f x =, a e b d a f c d y =, a e b d are easily derived by solving the general system of two equations by linear combinations, performing symbolic algebraic manipulations from start to finish. 5

6 Figure 3. Solving a system of two linear equations using a BASIC program. This method promotes the use of variables to its fullest extent, which is one of the mathematical habits of mind that we should cultivate in our students. Often in algebra one wants to delay numerical evaluations until the end of a process so that one can see how the operations are sequenced and so that the structure of the calculation (rather than its value) becomes more apparent [1]. The flowchart of a BASIC program can often provide a new perspective, a deeper insight, or a better explanation of a mathematical procedure or algorithm. 5. Discussion of the Different Methods of Solving Systems of Linear Equations An engaging class discussion will follow the presentation of these different solution methods. This discussion is of fundamental importance, and making connections between the different 6

7 methods is as important as learning how to solve a system of two linear equations by any one of the methods. Assuming that the coefficients b and e are not equal to zero, the two equations can be written in slope-intercept form: a c y = x +, b b d f y = x +. e e The first line has a slope of second line has a slope of a c c, a y-intercept of, and an x-intercept of. The b b a d f f, a y-intercept of, and an x-intercept of. e e d The two lines are parallel (and the system of equations has no solution) when the two slopes are the same. This condition is equivalent to a e b d = 0, the equation tested in line 200. Even more, when the two lines are parallel and vertical ( b = 0 and e = 0 ) the equation a e b d = 0 is still satisfied. The condition a e b d = 0 also implies that the square matrix of the coefficients has a zero determinant, and as a result there is no inverse matrix. The two lines overlap (and the system of equations has infinitely many solutions) when the two slopes are the same and the two y-intercepts are the same. The second condition is equivalent to c e b f = 0, and this is the first equation tested in line 300. In the special situation when both lines are vertical we have to compare the two x-intercepts. The two x-intercepts are the same when a f c d = 0, and this is the second equation tested in line 300. Furthermore, by writing the solution formulas in matrix form e x a e b d = y d a e b d b a e b d c, a f a e b d 7

8 and by comparing this equation to X = A 1 B, we can also identify the formula for the inverse matrix. The inverse of the two-by-two matrix a d b e 1 e is a e b d d b a, provided that a e b d 0. Additional insight into the diverse nature of the students learning styles can be revealed by asking them: What is your favorite method of solving systems of two linear equations, and why? 6. References [1] A. Cuoco, E. P. Goldenberg, and J. Mark, Organizing a Curriculum around Mathematical Habits of Mind, Mathematics Teacher, 103 (2010), Common Core Standards Addressed by This Unit A-REI.6. Solve systems of linear equations exactly and approximately (e.g., with graphs), focusing on pairs of linear equations in two variables. A-REI.8. (+) Represent a system of linear equations as a single matrix equation in a vector variable. A-REI.9. (+) Find the inverse of a matrix if it exists and use it to solve systems of linear equations (using technology for matrices of dimensions 3 x 3 or greater). Copyright Calin Galeriu, All rights reserved. This document can be downloaded for free at 8

Common Core State Standards for Mathematics

Common Core State Standards for Mathematics A Correlation of Pearson to the for Mathematics for Mathematics Introduction This document demonstrates how Pearson s digits program meets the for Mathematics. Correlation references are to the digits

More information

Relations and Functions

Relations and Functions Algebra 1, Quarter 2, Unit 2.1 Relations and Functions Overview Number of instructional days: 10 (2 assessments) (1 day = 45 60 minutes) Content to be learned Demonstrate conceptual understanding of linear

More information

Lesson 23 Linear Equations With One Variable

Lesson 23 Linear Equations With One Variable We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with lesson 23 linear equations

More information

Solving Systems of Linear Equations

Solving Systems of Linear Equations Section 2.3 Solving Systems of Linear Equations TERMINOLOGY 2.3 Previously Used: Equivalent Equations Literal Equation Properties of Equations Substitution Principle Prerequisite Terms: Coordinate Axes

More information

Common Core State Standards for Mathematics

Common Core State Standards for Mathematics A Correlation of Pearson to the for Mathematics Introduction This document demonstrates how Pearson s digits program meets the Common Core State Standards for Mathematics. Correlation references are to

More information

Topic: Solving systems of equations with linear and quadratic inequalities

Topic: Solving systems of equations with linear and quadratic inequalities Subject & Grade: Mathematics, 9 th Grade Topic: Solving systems of equations with linear and quadratic inequalities Aim: How would you find the solution set of a linear and quadratic inequality? Materials:.

More information

Lesson 28: Another Computational Method of Solving a Linear System

Lesson 28: Another Computational Method of Solving a Linear System Lesson 28: Another Computational Method of Solving a Linear System Student Outcomes Students learn the elimination method for solving a system of linear equations. Students use properties of rational numbers

More information

Unit 6 Quadratic Relations of the Form y = ax 2 + bx + c

Unit 6 Quadratic Relations of the Form y = ax 2 + bx + c Unit 6 Quadratic Relations of the Form y = ax 2 + bx + c Lesson Outline BIG PICTURE Students will: manipulate algebraic expressions, as needed to understand quadratic relations; identify characteristics

More information

Common Core State Standards for Mathematics

Common Core State Standards for Mathematics A Correlation of Pearson to the for Mathematics Introduction This document demonstrates how Pearson s digits program meets the Common Core State Standards for Mathematics. Correlation references are to

More information

Algebra 1 Bassam Raychouni Grade 8 Math. Greenwood International School Course Description. Course Title: Head of Department:

Algebra 1 Bassam Raychouni Grade 8 Math. Greenwood International School Course Description. Course Title: Head of Department: Course Title: Head of Department: Bassam Raychouni (bassam@greenwood.sh.ae) Teacher(s) + e-mail: Femi Antony (femi.a@greenwood.sch.ae) Cycle/Division: High School Grade Level: 9 or 10 Credit Unit: 1 Duration:

More information

Unit 6. Systems of Linear Equations. 3 weeks

Unit 6. Systems of Linear Equations. 3 weeks Unit 6 Systems of Linear Equations 3 weeks Unit Content Investigation 1: Solving Systems of Linear Equations (3 days) Investigation 2: Solving Systems of Linear Equations by Substitution (4 days) Investigation

More information

PLEASANTON UNIFIED SCHOOL DISTRICT 8 Course Outline Form

PLEASANTON UNIFIED SCHOOL DISTRICT 8 Course Outline Form PLEASANTON UNIFIED SCHOOL DISTRICT 8 Course Outline Form Course Title: Math 8 Course Number/CBED Number: Grade Levels: Length of Course: Eighth Grade One Year Credit: 10 Meets Graduation Requirements:

More information

A Correlation of. To the. North Carolina Standard Course of Study for Mathematics High School Math 1

A Correlation of. To the. North Carolina Standard Course of Study for Mathematics High School Math 1 A Correlation of 2018 To the North Carolina Standard Course of Study for Mathematics High School Math 1 Table of Contents Standards for Mathematical Practice... 1 Number and Quantity... 8 Algebra... 9

More information

A Correlation of. To the. North Carolina Standard Course of Study for Mathematics High School Math 2

A Correlation of. To the. North Carolina Standard Course of Study for Mathematics High School Math 2 A Correlation of 2018 To the North Carolina Standard Course of Study for Mathematics High School Math 2 Table of Contents Standards for Mathematical Practice... 1 Number and Quantity... 8 Algebra... 9

More information

Agile Mind Mathematics 8 Scope and Sequence, Texas Essential Knowledge and Skills for Mathematics

Agile Mind Mathematics 8 Scope and Sequence, Texas Essential Knowledge and Skills for Mathematics Agile Mind Mathematics 8 Scope and Sequence, 2014-2015 Prior to Grade 8, students have written and interpreted expressions, solved equations and inequalities, explored quantitative relationships between

More information

Common Core State Standards for Mathematics

Common Core State Standards for Mathematics A Correlation of to the for Mathematics Grades 6-8 Introduction This document demonstrates how Pearson s digits 2012 meets the Common Core State Standards for Mathematics. Correlation references are to

More information

2.3. Solving Absolute Value Inequalities. Inequalities ENGAGE. 2.3 Solving Absolute Value

2.3. Solving Absolute Value Inequalities. Inequalities ENGAGE. 2.3 Solving Absolute Value Resource Locker LESSO N 2.3 Solving Absolute Value Inequalities Name Class Date 2.3 Solving Absolute Value Inequalities Texas Math Standards The student is expected to: A2.6.F Solve absolute value linear

More information

Numerical mathematics with GeoGebra in high school

Numerical mathematics with GeoGebra in high school Herceg 2009/2/18 23:36 page 363 #1 6/2 (2008), 363 378 tmcs@inf.unideb.hu http://tmcs.math.klte.hu Numerical mathematics with GeoGebra in high school Dragoslav Herceg and Ðorđe Herceg Abstract. We have

More information

COE Algebra Syllabus. Desired Results

COE Algebra Syllabus. Desired Results COE Algebra Syllabus School Year: 2015-2016 Certificated Teacher: Desired Results Course Title): COE Algebra Credit: x one semester (.5) two semesters (1.0) Prerequisites and/or recommended preparation:

More information

A Learning Progression for Complex Numbers

A Learning Progression for Complex Numbers A Learning Progression for Complex Numbers In mathematics curriculum development around the world, the opportunity for students to study complex numbers in secondary schools is decreasing. Given that the

More information

Simultaneous Linear Equations 8. EE.C.8a, 8.EE.C.8c Conceptual Understanding and Application Mini-Assessment by Student Achievement Partners

Simultaneous Linear Equations 8. EE.C.8a, 8.EE.C.8c Conceptual Understanding and Application Mini-Assessment by Student Achievement Partners Simultaneous Linear Equations 8. EE.C.8a, 8.EE.C.8c Conceptual Understanding and Application Mini-Assessment by Student Achievement Partners OVERVIEW This mini-assessment is designed to illustrate the

More information

Making Nano-Comparisons

Making Nano-Comparisons Subject Area(s) Measurement, Number and Operations, Physical Science, Science and Technology, Chemistry, and Physics Associated Unit Measurement and Scientific Notation Associated Lesson Graphene oxide

More information

All rights reserved. Reproduction of these materials for instructional purposes in public school classrooms in Virginia is permitted.

All rights reserved. Reproduction of these materials for instructional purposes in public school classrooms in Virginia is permitted. Algebra I Copyright 2009 by the Virginia Department of Education P.O. Box 2120 Richmond, Virginia 23218-2120 http://www.doe.virginia.gov All rights reserved. Reproduction of these materials for instructional

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 2 nd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Instructor Notes for Chapters 3 & 4

Instructor Notes for Chapters 3 & 4 Algebra for Calculus Fall 0 Section 3. Complex Numbers Goal for students: Instructor Notes for Chapters 3 & 4 perform computations involving complex numbers You might want to review the quadratic formula

More information

CALCULUS. Teaching Concepts of TechSpace THOMAS LINGEFJÄRD & DJAMSHID FARAHANI

CALCULUS. Teaching Concepts of TechSpace THOMAS LINGEFJÄRD & DJAMSHID FARAHANI Teaching Concepts of TechSpace CALCULUS THOMAS LINGEFJÄRD & DJAMSHID FARAHANI The topic of calculus is an integral part of the senior secondary mathematics curriculum. The concepts of limits and derivatives,

More information

2.1 Identifying Patterns

2.1 Identifying Patterns I. Foundations for Functions 2.1 Identifying Patterns: Leaders' Notes 2.1 Identifying Patterns Overview: Objective: s: Materials: Participants represent linear relationships among quantities using concrete

More information

MATHEMATICS COURSE SYLLABUS

MATHEMATICS COURSE SYLLABUS Course Title: Algebra 1 Honors Department: Mathematics MATHEMATICS COURSE SYLLABUS Primary Course Materials: Big Ideas Math Algebra I Book Authors: Ron Larson & Laurie Boswell Algebra I Student Workbooks

More information

Prentice Hall Mathematics, Algebra 1, South Carolina Edition 2011

Prentice Hall Mathematics, Algebra 1, South Carolina Edition 2011 Prentice Hall Mathematics, Algebra 1, South Carolina Edition 2011 C O R R E L A T E D T O South Carolina Academic Standards for Mathematics 2007, Elementary Algebra Elementary Algebra Overview The academic

More information

Advanced Placement Calculus AB/BC Standards

Advanced Placement Calculus AB/BC Standards A Correlation of Calculus AP Edition, 2018 To the Advanced Placement Calculus AB/BC Standards AP is a trademark registered and/or owned by the College Board, which was not involved in the production of,

More information

Solving and Graphing Inequalities

Solving and Graphing Inequalities Solving and Graphing Inequalities Graphing Simple Inequalities: x > 3 When finding the solution for an equation we get one answer for x. (There is only one number that satisfies the equation.) For 3x 5

More information

Trinity Area School District. Overarching Big Ideas, Enduring Understandings, and Essential Questions (These spiral throughout the entire curriculum.

Trinity Area School District. Overarching Big Ideas, Enduring Understandings, and Essential Questions (These spiral throughout the entire curriculum. Trinity Area School District Course: Algebra 1 Grade(s): 9-11 Overview of Course (Briefly describe what students should understand and be able to do as a result of engaging in this course): This course

More information

Continuing Quadratic/Polynomial Real-World Problems

Continuing Quadratic/Polynomial Real-World Problems Algebra 1, Quarter 3, Unit 3.1 Continuing Quadratic/Polynomial Real-World Problems Overview Number of instructional days: 15 (1 day = 45 60 minutes) Content to be learned Understand closed operations.

More information

Thank you for your purchase!

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

More information

Middle School Math Solution: Course 3

Middle School Math Solution: Course 3 Ohio 8.MP MATHEMATICAL PRACTICES The s for Mathematical Practice describe the skills that mathematics educators should seek to develop in their students. The descriptions of the mathematical practices

More information

Solving Quadratic Equations Using Multiple Methods and Solving Systems of Linear and Quadratic Equations

Solving Quadratic Equations Using Multiple Methods and Solving Systems of Linear and Quadratic Equations Algebra 1, Quarter 4, Unit 4.1 Solving Quadratic Equations Using Multiple Methods and Solving Systems of Linear and Quadratic Equations Overview Number of instructional days: 13 (1 day = 45 minutes) Content

More information

by Jerald Murdock, Ellen Kamischke, and Eric Kamischke An Investigative Approach

by Jerald Murdock, Ellen Kamischke, and Eric Kamischke An Investigative Approach Number and Operations Understand numbers, ways of representing numbers, relationships among numbers, and number systems develop a deeper understanding of very large and very small numbers and of various

More information

CCSS MIDDLE SCHOOL PROPORTIONAL REASONING: IT S A BIG DEAL

CCSS MIDDLE SCHOOL PROPORTIONAL REASONING: IT S A BIG DEAL CCSS MIDDLE SCHOOL PROPORTIONAL REASONING: IT S A BIG DEAL Presented by Cynthia Raff cynthia@mathandteaching.org Mark Goldstein mark@mathandteaching.org The Center for Mathematics and Teaching, Inc. www.mathandteaching.org

More information

Columbus State Community College Mathematics Department. CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173 with a C or higher

Columbus State Community College Mathematics Department. CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173 with a C or higher Columbus State Community College Mathematics Department Course and Number: MATH 2174 - Linear Algebra and Differential Equations for Engineering CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173

More information

Amarillo ISD Math Curriculum

Amarillo ISD Math Curriculum Amarillo Independent School District follows the Texas Essential Knowledge and Skills (TEKS). All of AISD curriculum and documents and resources are aligned to the TEKS. The State of Texas State Board

More information

[DOC] GRAPHING LINEAR EQUATIONS WORKSHEET ANSWERS EBOOK

[DOC] GRAPHING LINEAR EQUATIONS WORKSHEET ANSWERS EBOOK 05 March, 2018 [DOC] GRAPHING LINEAR EQUATIONS WORKSHEET ANSWERS EBOOK Document Filetype: PDF 335.63 KB 0 [DOC] GRAPHING LINEAR EQUATIONS WORKSHEET ANSWERS EBOOK These function tables give students practice

More information

Building Concepts: Solving Systems of Equations Algebraically

Building Concepts: Solving Systems of Equations Algebraically Lesson Overview In this TI-Nspire lesson, students will investigate pathways for solving systems of linear equations algebraically. There are many effective solution pathways for a system of two linear

More information

MAC-CPTM Situations Project Situation 10: Simultaneous Equations Revised 04/13/06 Dennis Hembree and Erik Tillema

MAC-CPTM Situations Project Situation 10: Simultaneous Equations Revised 04/13/06 Dennis Hembree and Erik Tillema MAC-CPTM Situations Project Situation 10: Simultaneous Equations Revised 04/13/06 Dennis Hembree and Erik Tillema Prompt A student teacher in a course titled Advanced Algebra/Trigonometry presented several

More information

Math 1 Variable Manipulation Part 5 Absolute Value & Inequalities

Math 1 Variable Manipulation Part 5 Absolute Value & Inequalities Math 1 Variable Manipulation Part 5 Absolute Value & Inequalities 1 ABSOLUTE VALUE REVIEW Absolute value is a measure of distance; how far a number is from zero: 6 is 6 away from zero, and " 6" is also

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I Part II 1 st Nine Weeks, 2016-2017 OVERVIEW Algebra I Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Bassam Raychouni Pre-Algebra. Course Title: Head of Department:

Bassam Raychouni Pre-Algebra. Course Title: Head of Department: Course Title: Head of Department:, Bassam Raychouni (bassam@greenwood.sh.ae) Teacher(s) + e-mail: Mireille Chammas (Mireille.c@greenwood.sch.ae) Cycle/Division: Middle school Grade Level: 8 Credit Unit:

More information

Algebra 1 Yearlong Curriculum Plan. Last modified: June 2014

Algebra 1 Yearlong Curriculum Plan. Last modified: June 2014 Algebra 1 Yearlong Curriculum Plan Last modified: June 2014 SUMMARY This curriculum plan is divided into four academic quarters. In Quarter 1, students first dive deeper into the real number system before

More information

LIVE Online Math Algebra Scope and Sequence

LIVE Online Math Algebra Scope and Sequence LIVE Online Math Algebra Scope and Sequence The course is broken down into units. The units, and lessons that make up each unit, are below. Note: If there is a specific concept/technique that is not listed,

More information

General-Purpose Tools in Algebra

General-Purpose Tools in Algebra General-Purpose Tools in Algebra Bowen Kerins and Al Cuoco Center for Mathematics Education Education Development Center bkerins@edc.org, acuoco@edc.org http://www.edc.org/cmeproject The The next next

More information

2007 ~ 2008 AP CALCULUS AB SYLLABUS

2007 ~ 2008 AP CALCULUS AB SYLLABUS 2007 ~ 2008 AP CALCULUS AB SYLLABUS Teacher: Mr. Leckie Room: 201 Course: AP Calculus AB Textbook: Calculus: Graphical, Numerical, Algebraic, 3 rd edition COURSE CONTENT: Calculus is the mathematics of

More information

Math 10C Course Outline

Math 10C Course Outline Math 10C Course Outline Mr. Collin Dillon St. Joseph Catholic High School 8:40am-9:55am Phone (780) 532-7779 Email CollinDillon@gpcsd.ca Mr. Dillon s Website The essence of mathematics is not to make simple

More information

Algebra II Honors Curriculum

Algebra II Honors Curriculum Algebra II Honors Curriculum Algebra II Honors Course Overview Course Description Honors Algebra 2 emphasizes the structure of algebra. The students will study complex numbers, relations and functions,

More information

Prentice Hall CME Project, Algebra

Prentice Hall CME Project, Algebra Prentice Hall CME Project, Algebra 2 2009 Grades 9-12 C O R R E L A T E D T O Grades 9-12 CME Project Algebra 2 2009 Introduction The Correlation of CME Project, Algebra 2 2009 to the Idaho Content Standards,

More information

Lesson 23: The Defining Equation of a Line

Lesson 23: The Defining Equation of a Line Student Outcomes Students know that two equations in the form of and graph as the same line when and at least one of or is nonzero. Students know that the graph of a linear equation, where,, and are constants

More information

Algebra 1 Syllabus

Algebra 1 Syllabus Algebra 1 Syllabus 2017-18 dennis_jenkins@crpusd.org Welcome to algebra, a course designed to prepare students for geometry and any other courses taken after it. Students are required by the state of California

More information

Geometry Mathematics Item and Scoring Sampler 2018

Geometry Mathematics Item and Scoring Sampler 2018 Geometry Mathematics Item and Scoring Sampler 2018 COPYRIGHT GEORGIA DEPARTMENT OF EDUCATION. ALL RIGHTS RESERVED. TABLE OF CONTENTS Introduction.... 1 Types of Items Included in the Sampler and Uses of

More information

Total=75 min. Materials BLM cut into cards BLM

Total=75 min. Materials BLM cut into cards BLM Unit 2: Day 4: All together now! Math Learning Goals: Minds On: 15 Identify functions as polynomial functions. Consolidate understanding of properties of functions that include: linear, Action: 50 quadratic,

More information

ALGEBRA I CURRICULUM GUIDE Overview and Scope & Sequence

ALGEBRA I CURRICULUM GUIDE Overview and Scope & Sequence ALGEBRA I CURRICULUM GUIDE Overview and Scope & Sequence Loudoun County Public Schools 2017-2018 (Additional curriculum information and resources for teachers can be accessed through CMS and VISION) 1

More information

Mifflin County School District Planned Instruction

Mifflin County School District Planned Instruction Mifflin County School District Planned Instruction Title of Planned Instruction: Algebra II Subject Area: Mathematics Grade Level: Grades 9-12 Prerequisites: Algebra I with a grade of A, B, or C Course

More information

Evaluation Module 5 - Class B11 (September 2012) Responsible for evaluation: Dorte Nielsen / Cristina Lerche Data processing and preparation of

Evaluation Module 5 - Class B11 (September 2012) Responsible for evaluation: Dorte Nielsen / Cristina Lerche Data processing and preparation of 2011 Evaluation Module 5 - Class B11 (September 2012) Responsible for evaluation: Dorte Nielsen / Cristina Lerche Data processing and preparation of report: Cristina Lerche Contents Contents... 2 Questions

More information

Quadratics and Other Polynomials

Quadratics and Other Polynomials Algebra 2, Quarter 2, Unit 2.1 Quadratics and Other Polynomials Overview Number of instructional days: 15 (1 day = 45 60 minutes) Content to be learned Know and apply the Fundamental Theorem of Algebra

More information

Guidelines for Graphing Calculator Use at the Commencement Level

Guidelines for Graphing Calculator Use at the Commencement Level Guidelines for Graphing Calculator Use at the Commencement Level Introduction Graphing calculators are instrumental in the teaching and learning of mathematics. The use of this technology should be encouraged

More information

9.4_Alg_I_Hon_ Solving Systems Using Elimination (Multiplication).notebook

9.4_Alg_I_Hon_ Solving Systems Using Elimination (Multiplication).notebook Today you will need: a pencil notebook paper 9.4 Reteach/Practice WS *Backpacks around the perimeter of room* Agenda: Bellwork Homework Review 9.4 Smart Notes Solve Linear Systems Using Elimination with

More information

Contents. To the Teacher... v

Contents. To the Teacher... v Katherine & Scott Robillard Contents To the Teacher........................................... v Linear Equations................................................ 1 Linear Inequalities..............................................

More information

Elizabethtown Area School District Pre Calculus

Elizabethtown Area School District Pre Calculus Pre Calculus Course Number: 229 Grade Level: 10-12 Length of Course: 1 Semester Total Clock Hours: 120 Hrs. Length of Period: 80 Mins. Date Written: 10-17-06 Periods per Week/Cycle: 5 Written By: Dennis

More information

Precalculus, Quarter 4, Unit 4.1. Matrices. Overview

Precalculus, Quarter 4, Unit 4.1. Matrices. Overview Precalculus, Quarter 4, Unit 4.1 Matrices Overview Number of instructional days: 11 (1 day = 45 60 minutes) Content to be learned Add, subtract, and use scalar multiplication with matrices and equivalent

More information

Planned Course: Algebra IA Mifflin County School District Date of Board Approval: April 25, 2013

Planned Course: Algebra IA Mifflin County School District Date of Board Approval: April 25, 2013 : Algebra IA Mifflin County School District Date of Board Approval: April 25, 2013 Glossary of Curriculum Summative Assessment: Seeks to make an overall judgment of progress made at the end of a defined

More information

Systems Of Linear Equations Worksheet Answers

Systems Of Linear Equations Worksheet Answers We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with systems of linear equations

More information

3.3 It All Adds Up. A Develop Understanding Task

3.3 It All Adds Up. A Develop Understanding Task 3.3 It All Adds Up A Develop Understanding Task Whenever we re thinking about algebra and working with variables, it is useful to consider how it relates to the number system and operations on numbers.

More information

DRAFT. Algebra I Honors Course Syllabus

DRAFT. Algebra I Honors Course Syllabus Algebra I Honors 1200320 2011-2012 Course Syllabus Teacher Information COMPLETED BY INDIVIDUAL TEACHER Name: Phone: Email: Blog and/or Website: Credit: 1.0 Student must take the State of Florida's Algebra

More information

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework and Curriculum Framework Publisher: McGraw-Hill School Education Text: Algebra 1 Copyright date 2018 A.1 The student will a) represent verbal quantitative situations algebraically; and TE: 5-9, 23-29,

More information

Focusing on Linear Functions and Linear Equations

Focusing on Linear Functions and Linear Equations Focusing on Linear Functions and Linear Equations In grade, students learn how to analyze and represent linear functions and solve linear equations and systems of linear equations. They learn how to represent

More information

Pre-Algebra GT (Grade 6) Essential Curriculum. The Mathematical Practices

Pre-Algebra GT (Grade 6) Essential Curriculum. The Mathematical Practices Pre-Algebra GT (Grade 6) Essential Curriculum The Mathematical Practices The Standards for Mathematical Practice describe varieties of expertise that mathematics educators at all levels should seek to

More information

How cubey is your prism? the No Child Left Behind law has called for teachers to be highly qualified to teach their subjects.

How cubey is your prism? the No Child Left Behind law has called for teachers to be highly qualified to teach their subjects. How cubey is your prism? Recent efforts at improving the quality of mathematics teaching and learning in the United States have focused on (among other things) teacher content knowledge. As an example,

More information

Situation 41: Square Roots

Situation 41: Square Roots Situation 41: Square Roots Prepared at Penn State Mid-Atlantic Center for Mathematics Teaching and Learning 14 July 2005 Tracy, Jana, Christa, Jim Prompt Edited at University of Georgia August 1, 2006

More information

MIAMI-DADE COUNTY PUBLIC SCHOOLS District Pacing Guide

MIAMI-DADE COUNTY PUBLIC SCHOOLS District Pacing Guide Topic IV: Polynomial Functions, Expressions, and Equations Pacing Date(s) Traditional 18 10/29/18 11/28/18 Block 9 10/29/18 11/28/18 Topic IV Assessment Window 11/16/18 11/28/18 MATHEMATICS FLORIDA STATE

More information

In this lesson, students model filling a rectangular

In this lesson, students model filling a rectangular NATIONAL MATH + SCIENCE INITIATIVE Mathematics Fill It Up, Please Part III Level Algebra or Math at the end of a unit on linear functions Geometry or Math as part of a unit on volume to spiral concepts

More information

Big Ideas Math Algebra 1. Correlations to the Common Core State Standards

Big Ideas Math Algebra 1. Correlations to the Common Core State Standards Big Ideas Math Algebra 1 Correlations to the Common Core State s 2 Big Ideas Math: A Common Core Curriculum Algebra 1 2015 Conceptual Category: Number and Quantity Domain: TThe Real Number System Explain

More information

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore Your web browser (Safari 7) is out of date. For more security, comfort and Activitydevelop the best experience on this site: Update your browser Ignore Places in the Park Why do we use symbols? Overview

More information

River Dell Regional School District. Algebra I Curriculum

River Dell Regional School District. Algebra I Curriculum Algebra I Curriculum 2015 Mr. Patrick Fletcher Superintendent River Dell Regional Schools Ms. Lorraine Brooks Principal River Dell High School Mr. Richard Freedman Principal River Dell Middle School Mr.

More information

Contents. To the Teacher... v

Contents. To the Teacher... v Katherine & Scott Robillard Contents To the Teacher........................................... v Linear Equations................................................ 1 Linear Inequalities..............................................

More information

Systems of Linear Equations and Inequalities

Systems of Linear Equations and Inequalities Systems of Linear Equations and Inequalities Alex Moore February 4, 017 1 What is a system? Now that we have studied linear equations and linear inequalities, it is time to consider the question, What

More information

Inquiry Activity Thank you for purchasing this product! This resource is intended for use by a single teacher. If you would like to share it, you can download an additional license for 50% off. Visit your

More information

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations

ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER / Lines and Their Equations ACCESS TO SCIENCE, ENGINEERING AND AGRICULTURE: MATHEMATICS 1 MATH00030 SEMESTER 1 017/018 DR. ANTHONY BROWN. Lines and Their Equations.1. Slope of a Line and its y-intercept. In Euclidean geometry (where

More information

URSULINE ACADEMY Curriculum Guide

URSULINE ACADEMY Curriculum Guide URSULINE ACADEMY 2018-2019 Curriculum Guide MATHEMATICS MT 510 MATHEMATICAL STRATEGIES Description: This course is designed to improve the students understanding of algebraic concepts MT 511 ALGEBRA I

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology v2.0 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a near-daily basis

More information

Rising Geometry Students!

Rising Geometry Students! Rising Geometry Students! As a 7 th grader entering in to Geometry next year, it is very important that you have mastered the topics listed below. The majority of the topics were taught in Algebra 1, but

More information

CISC - Curriculum & Instruction Steering Committee. California County Superintendents Educational Services Association

CISC - Curriculum & Instruction Steering Committee. California County Superintendents Educational Services Association CISC - Curriculum & Instruction Steering Committee California County Superintendents Educational Services Association Primary Content Module The Winning EQUATION Algebra I - Linear Equations and Inequalities

More information

April 2016 Draft. DRAFT New Louisiana Standards for Correlation to Eureka Math Page 1. eureka math.org 2016 Great Minds

April 2016 Draft. DRAFT New Louisiana Standards for Correlation to Eureka Math Page 1. eureka math.org 2016 Great Minds DRAFT New Louisiana Standards for 2016 2017 Correlation to Eureka Math Grade 8 April 2016 Draft DRAFT New Louisiana Standards for 2016 2017 Correlation to Eureka Math Page 1 Grade 8 Mathematics The majority

More information

Sequence of Math 8 SDC Units Aligned with the California Standards

Sequence of Math 8 SDC Units Aligned with the California Standards Sequence of Math 8 SDC Units Aligned with the California Standards Year at a Glance Unit Big Ideas Course 3 Textbook Chapters Dates 1. Equations Ch. 1 Equations 29 days: 9/5/17 10/13/17 2. Transformational

More information

MATHE 4800C FOUNDATIONS OF ALGEBRA AND GEOMETRY CLASS NOTES FALL 2011

MATHE 4800C FOUNDATIONS OF ALGEBRA AND GEOMETRY CLASS NOTES FALL 2011 MATHE 4800C FOUNDATIONS OF ALGEBRA AND GEOMETRY CLASS NOTES FALL 2011 MATTHEW AUTH, LECTURER OF MATHEMATICS 1. Foundations of Euclidean Geometry (Week 1) During the first weeks of the semester we will

More information

Lesson 1 Structure and Size: Comparing Viruses, Bacteria, and Eukaryotic Cells

Lesson 1 Structure and Size: Comparing Viruses, Bacteria, and Eukaryotic Cells 1 Lesson 1 Structure and Size: Comparing Viruses, Bacteria, and Eukaryotic Cells LESSON QUESTIONS What are the similarities and differences in structure between viruses, bacteria and eukaryotic cells?

More information

Algebra B. Curriculum Framework

Algebra B. Curriculum Framework Curriculum Framework Compiled using the Common Core State Standards for Mathematics and the PARCC Model Content Frameworks for Mathematics Version 3.0 (November 2012 revision) Course Title: Course/Unit

More information

Mifflin County School District Planned Instruction

Mifflin County School District Planned Instruction Mifflin County School District Planned Instruction Title of Planned Instruction: Advanced Algebra II Subject Area: Mathematics Grade Level: Grades 9-12 Prerequisites: Algebra I with a grade of A or B Course

More information

Background. A Transformation from Traditional College Algebra to Freudenthal College Algebra. Background. Traditional

Background. A Transformation from Traditional College Algebra to Freudenthal College Algebra. Background. Traditional A Transformation from Traditional College Algebra to Freudenthal College Algebra Monica Geist, Ph.D. Front Range Community College monica.geist@frontrange.edu Background Started teaching College Algebra

More information

Chapter 2 Linear Equations and Inequalities in One Variable

Chapter 2 Linear Equations and Inequalities in One Variable Chapter 2 Linear Equations and Inequalities in One Variable Section 2.1: Linear Equations in One Variable Section 2.3: Solving Formulas Section 2.5: Linear Inequalities in One Variable Section 2.6: Compound

More information

Precalculus Graphical, Numerical, Algebraic Media Update 7th Edition 2010, (Demana, et al)

Precalculus Graphical, Numerical, Algebraic Media Update 7th Edition 2010, (Demana, et al) A Correlation of Precalculus Graphical, Numerical, Algebraic Media Update To the Virginia Standards of Learning for Mathematical Analysis February 2009 INTRODUCTION This document demonstrates how, meets

More information

Fairfield Public Schools

Fairfield Public Schools Mathematics Fairfield Public Schools AP Calculus AB AP Calculus AB BOE Approved 04/08/2014 1 AP CALCULUS AB Critical Areas of Focus Advanced Placement Calculus AB consists of a full year of college calculus.

More information

Gary School Community Corporation Mathematics Department Unit Document. Unit Name: Polynomial Operations (Add & Sub)

Gary School Community Corporation Mathematics Department Unit Document. Unit Name: Polynomial Operations (Add & Sub) Gary School Community Corporation Mathematics Department Unit Document Unit Number: 1 Grade: Algebra 1 Unit Name: Polynomial Operations (Add & Sub) Duration of Unit: A1.RNE.7 Standards for Mathematical

More information

Geometry 21 Summer Work Packet Review and Study Guide

Geometry 21 Summer Work Packet Review and Study Guide Geometry Summer Work Packet Review and Study Guide This study guide is designed to accompany the Geometry Summer Work Packet. Its purpose is to offer a review of the ten specific concepts covered in the

More information