What are the rules of elementary algebra

Size: px
Start display at page:

Download "What are the rules of elementary algebra"

Transcription

1 What are the rules of elementar algebra James Davenport & Chris Sangwin Universities of Bath & Birmingham 7 Jul 2010

2 Setting A relativel traditional mathematics course, at, sa first-ear undergraduate level. But Computer-Aided Assessment is in use. One such eample is WeBWorK, another is MapleTA. Harness the power of technolog to improve teaching and learning [AMS Notices, June 2009].

3 Web-based Assessment and Testing Sstems Homework software has the potential to handle the grading of homework at a low cost. While this software has the limitation of requiring a concise answer an algebraic epression or a multiple-choice response it also has an important advantage over hand grading. Namel, if a student s answer to a problem is wrong, the student learns of the mistake immediatel and can be allowed to tr the problem or a similar problem repeatedl until the right answer is obtained. [AMS]

4 Automaticall generated problems Means automaticall generated answers and marking schemes. Parsing the student s answer (non-trivial see net slide) Is the student s answer mathematicall correct? Is the student s answer pedagogicall correct? So what mark does it get (assuming we are doing more than true/false marking)? Marking other than true/false was not discussed b the AMS, but seems important to us.

5 Tpical computer aided assessment Figure: STACK sstem [?]

6 Phase 1: Addition and Multiplication onl This is (close to) AC-rewriting. We can distinguish levels: 1. Tetual identit. Here + and + are different (space). Similarl +10 and +010 are different (leading zero). 2. Equalit after leical analsis. Above eamples are the same, but not +*z versus +(*z). 3. Equalit as binar parse trees. This would consider +*z and +(*z) as the same. However, this interpretation would distinguish +(+z) from (+)+z, being respectivel the trees and + z z Being based on binar parse trees, it requires an operator precedence rule (is + left-associative or right-associative) to decide which of these becomes the representation of ++z..

7 Phase 1: Addition and Multiplication (continued) 1. Tetual identit. 2. Equalit after leical analsis. 3. Equalit as binar parse trees. However, this interpretation would distinguish +(+z) from (+)+z. 4. We can avoid this if we allow n-ar trees, parsing ++z as + z, (1) but this is now a third tree, different from the two above. 5. Solved if we flatten the associative operators + and *, which would transform both trees into the tree in (1). 6. But the rules of elementar algebra include the facts that + and are commutative, as well as associative. So compare the children of a + (or *) node as (multi)sets, rather than as lists, so now the tree in (1) has the same children, admittedl in a different order, as the trees for +(z+) etc.

8 Addition and Multiplication (further) Beond this we are in the realm of computer algebra, rather than sntactic manipulation. 7. We remove identit elements: i.e. we remove 0 from the arguments of + and 1 from the arguments of. Where necessar, we flatten to remove operations which end up with a single argument. For eample We combine all numerical terms in the arguments of + and, and (for the sake of user presentation) order the result so that an number appears first for and last for We appl the distributive law (of multiplication over addition).

9 So far, so good Depending on the precise definition of obviousl equal, somewhere between levels 6 and 9 lies a sstem that gets man eamples right, in the sense that the user is not upset that the sstem refuses to recognise as equal epressions in + and * that are obviousl equal. However, the grammar of even elementar algebra is larger than this, and includes (in both unar and binar forms) and /. Practicall an sstem for processing mathematics has to deal with these, and their impact on the problem of equalit modulo the usual rules of elementar algebra. It might be thought that / and (binar) - posed the same problems, being the inverse operations to * and + respectivel, but in fact the unar operators behave differentl.

10 Subtraction Here we have both unar and binar -. We seem to make the transformation a-b a+(-b) at a ver earl stage in our mental processing. Hence the epression a-b-c is thought of as a+(-b)+(-c), and, in levels 4 and beond, becomes the tree + a b c. Level 6 would then regard this as equal to the tree from a-c-b. It would, however, also regard this as equal to the epression -b+a-c. Logicall, one cannot object to this, but nonetheless we tend to prefer one of the other forms. Convention urges minimalit here, since the other forms require one less smbol.

11 Negation in Parse Trees Does -* parse as -(*) or (-)*? These are obviousl equal.

12 Our solution In STACK we replace unar minus b multiplication b a special token, hereafter U. Hence -(*), (-)* and *(-) become the trees U, U and U respectivel. In the presence of flattening and commutativit of *, these trees are regarded as equal.

13 What about (-)*(-)? This corresponds to the tree U U, (2) which is equivalent to the tree from -(-(*)) and man other variants with (multi)set of children {U, U,, }, but not equivalent to the tree from * until we get to level 7. Algebraicall U behaves like 1, but is distinguished from it at this level so as not to be confused with an eplicit 1 entered b the user, i.e. -* versus *(-1)*.

14 Division We use reduction to the unar case, even though the surface representation is different. We consider a unar reciprocal operator R, and regard / as generating the tree R. We need one further rule R distributes over multiplication, i.e. R R R.

15 Division continued (/)/z, //z and /(*z) all generate /(/z) generates R R z R R Doesn t simplif at level 6, but R(R(z)) z should be readil available in the toolkit of an eercise writer (e.g. at level 7). R z :,

16 (Integer) Powers The first challenge is that the distributive law for eponentiation over multiplication (ab) c = a c b c seems different from the distributive law for multiplication over addition: we do not regard () 2 as better or worse than 2 2. This is easil implemented as a tree transformation: ^ z ^ ^ z z

17 (Integer) Powers continued ( ) 2 We do not regard as better or worse than 2. The previous 2 transformation automaticall leads to ^ R z ^ ^ z R z but this is not quite what was desired. It is tempting to tr to fi this b rules taking R() to R( ).

18 (Integer) Powers continued However, we accept that R is reall raising to the power 1, and introduce the rules R ^ z, R ^ z ^ U z. 1/^(-2) is then represented as UU2. Author choice whether to regards 1/^(-2) as a clums epression which does not deserve to be simplified, or work at level 7, in which case U U z z (or the pair U U 1 and 1 z z) need to be added to the ruleset.

19 Conclusion Straight AC rewriting of +, * is relativel eas Adding - and / is not eas But the unar operator technique seems promising Integer powers aren t that eas, but doable There are good mathematical reasons wh using non-integer powers is harder!

24 Nov Boolean Operations. Boolean Algebra. Boolean Functions and Expressions. Boolean Functions and Expressions

24 Nov Boolean Operations. Boolean Algebra. Boolean Functions and Expressions. Boolean Functions and Expressions 24 Nov 25 Boolean Algebra Boolean algebra provides the operations and the rules for working with the set {, }. These are the rules that underlie electronic circuits, and the methods we will discuss are

More information

CMSC 425: Lecture 10 Basics of Skeletal Animation and Kinematics

CMSC 425: Lecture 10 Basics of Skeletal Animation and Kinematics : Lecture Basics of Skeletal Animation and Kinematics Reading: Chapt of Gregor, Game Engine Architecture. The material on kinematics is a simplification of similar concepts developed in the field of robotics,

More information

Matrix Representations

Matrix Representations CONDENSED LESSON 6. Matri Representations In this lesson, ou Represent closed sstems with transition diagrams and transition matrices Use matrices to organize information Sandra works at a da-care center.

More information

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology

Intermediate Algebra. Gregg Waterman Oregon Institute of Technology Intermediate Algebra Gregg Waterman Oregon Institute of Technolog c 2017 Gregg Waterman This work is licensed under the Creative Commons Attribution 4.0 International license. The essence of the license

More information

Laurie s Notes. Overview of Section 6.3

Laurie s Notes. Overview of Section 6.3 Overview of Section.3 Introduction In this lesson, eponential equations are defined. Students distinguish between linear and eponential equations, helping to focus on the definition of each. A linear function

More information

Name Class Date. subtract 3 from each side. w 5z z 5 2 w p - 9 = = 15 + k = 10m. 10. n =

Name Class Date. subtract 3 from each side. w 5z z 5 2 w p - 9 = = 15 + k = 10m. 10. n = Reteaching Solving Equations To solve an equation that contains a variable, find all of the values of the variable that make the equation true. Use the equalit properties of real numbers and inverse operations

More information

20 Calculus and Structures

20 Calculus and Structures 0 Calculus and Structures CHAPTER FUNCTIONS Calculus and Structures Copright LESSON FUNCTIONS. FUNCTIONS A function f is a relationship between an input and an output and a set of instructions as to how

More information

Implicit Differentiation - the basics

Implicit Differentiation - the basics x x 6 Implicit Differentiation - the basics Implicit differentiation is the name for the method of differentiation that we use when we have not explicitl solved for in terms of x (that means we did not

More information

2.2 Absolute Value Functions

2.2 Absolute Value Functions . Absolute Value Functions 7. Absolute Value Functions There are a few was to describe what is meant b the absolute value of a real number. You ma have been taught that is the distance from the real number

More information

Section 2.2: Absolute Value Functions, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a

Section 2.2: Absolute Value Functions, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Section.: Absolute Value Functions, from College Algebra: Corrected Edition b Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Creative Commons Attribution-NonCommercial-ShareAlike.0 license.

More information

1. We ll look at: Types of geometrical transformation. Vector and matrix representations

1. We ll look at: Types of geometrical transformation. Vector and matrix representations Tob Howard COMP272 Computer Graphics and Image Processing 3: Transformations Tob.Howard@manchester.ac.uk Introduction We ll look at: Tpes of geometrical transformation Vector and matri representations

More information

Models of Computation The University of Birmingham. Volker Sorge March 10, Handout 10

Models of Computation The University of Birmingham. Volker Sorge March 10, Handout 10 06-05934 Models of Computation The Universit of Birmingham Spring Semester 2008 School of Computer Science Volker Sorge March 10, 2008 Handout 10 Summar of this handout: Histor Mathematical Notation Prefi

More information

2.8 Distance and Midpoint Formulas; Circles

2.8 Distance and Midpoint Formulas; Circles Section.8 Distance and Midpoint Formulas; Circles 9 Eercises 89 90 are based on the following cartoon. B.C. b permission of Johnn Hart and Creators Sndicate, Inc. 89. Assuming that there is no such thing

More information

Transformations of Functions. 1. Shifting, reflecting, and stretching graphs Symmetry of functions and equations

Transformations of Functions. 1. Shifting, reflecting, and stretching graphs Symmetry of functions and equations Chapter Transformations of Functions TOPICS.5.. Shifting, reflecting, and stretching graphs Smmetr of functions and equations TOPIC Horizontal Shifting/ Translation Horizontal Shifting/ Translation Shifting,

More information

y = f(x) x (x, f(x)) f(x) g(x) = f(x) + 2 (x, g(x)) 0 (0, 1) 1 3 (0, 3) 2 (2, 3) 3 5 (2, 5) 4 (4, 3) 3 5 (4, 5) 5 (5, 5) 5 7 (5, 7)

y = f(x) x (x, f(x)) f(x) g(x) = f(x) + 2 (x, g(x)) 0 (0, 1) 1 3 (0, 3) 2 (2, 3) 3 5 (2, 5) 4 (4, 3) 3 5 (4, 5) 5 (5, 5) 5 7 (5, 7) 0 Relations and Functions.7 Transformations In this section, we stud how the graphs of functions change, or transform, when certain specialized modifications are made to their formulas. The transformations

More information

Boolean Functions (10.1) Representing Boolean Functions (10.2) Logic Gates (10.3)

Boolean Functions (10.1) Representing Boolean Functions (10.2) Logic Gates (10.3) Chapter (Part ): Boolean Algebra Boolean Functions (.) Representing Boolean Functions (.2) Logic Gates (.3) It has started from the book titled The laws of thought written b George Boole in 854 Claude

More information

Image Metamorphosis By Affine Transformations

Image Metamorphosis By Affine Transformations Image Metamorphosis B Affine Transformations Tim Mers and Peter Spiegel December 16, 2005 Abstract Among the man was to manipulate an image is a technique known as morphing. Image morphing is a special

More information

CS 403 Compiler Construction Lecture 8 Syntax Tree and Intermediate Code Generation [Based on Chapter 6 of Aho2] This Lecture

CS 403 Compiler Construction Lecture 8 Syntax Tree and Intermediate Code Generation [Based on Chapter 6 of Aho2] This Lecture CS 403 Compiler Construction Lecture 8 Snta Tree and Intermediate Code Generation [Based on Chapter 6 of Aho2] 1 This Lecture 2 1 Remember: Phases of a Compiler This lecture: Intermediate Code This lecture:

More information

Course I. Lesson 5 Trigonometric Functions (II) 5A Radian Another Unit of Angle Graphs of Trigonometric Functions

Course I. Lesson 5 Trigonometric Functions (II) 5A Radian Another Unit of Angle Graphs of Trigonometric Functions Course I Lesson 5 Trigonometric Functions (II) 5A Radian Another Unit of Angle Graphs of Trigonometric Functions Radian Degree ( ) Angle of /0 of one circle 0 is a familiar number in astronom. ( ne ear

More information

LINEAR PROGRAMMING. Straight line graphs LESSON

LINEAR PROGRAMMING. Straight line graphs LESSON LINEAR PROGRAMMING Traditionall we appl our knowledge of Linear Programming to help us solve real world problems (which is referred to as modelling). Linear Programming is often linked to the field of

More information

PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS

PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS Topic 21: Problem solving with eponential functions 323 PROBLEM SOLVING WITH EXPONENTIAL FUNCTIONS Lesson 21.1 Finding function rules from graphs 21.1 OPENER 1. Plot the points from the table onto the

More information

Polynomial and Rational Functions

Polynomial and Rational Functions Polnomial and Rational Functions Figure -mm film, once the standard for capturing photographic images, has been made largel obsolete b digital photograph. (credit film : modification of work b Horia Varlan;

More information

Vocabulary. Term Page Definition Clarifying Example. dependent variable. domain. function. independent variable. parent function.

Vocabulary. Term Page Definition Clarifying Example. dependent variable. domain. function. independent variable. parent function. CHAPTER 1 Vocabular The table contains important vocabular terms from Chapter 1. As ou work through the chapter, fill in the page number, definition, and a clarifing eample. dependent variable Term Page

More information

0 COORDINATE GEOMETRY

0 COORDINATE GEOMETRY 0 COORDINATE GEOMETRY Coordinate Geometr 0-1 Equations of Lines 0- Parallel and Perpendicular Lines 0- Intersecting Lines 0- Midpoints, Distance Formula, Segment Lengths 0- Equations of Circles 0-6 Problem

More information

Systems of Linear Equations

Systems of Linear Equations Sstems of Linear Equations Gaussian Elimination Tpes of Solutions A linear equation is an equation that can be written in the form: a a a n n b The coefficients a i and the constant b can be real or comple

More information

Module 2, Section 2 Graphs of Trigonometric Functions

Module 2, Section 2 Graphs of Trigonometric Functions Principles of Mathematics Section, Introduction 5 Module, Section Graphs of Trigonometric Functions Introduction You have studied trigonometric ratios since Grade 9 Mathematics. In this module ou will

More information

1.3 Introduction to Functions

1.3 Introduction to Functions . Introduction to Functions. Introduction to Functions One of the core concepts in College Algebra is the function. There are man was to describe a function and we begin b defining a function as a special

More information

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions Algebra 1 Review Properties of Real Numbers Algebraic Expressions Real Numbers Natural Numbers: 1, 2, 3, 4,.. Numbers used for counting Whole Numbers: 0, 1, 2, 3, 4,.. Natural Numbers and 0 Integers:,

More information

Section 4.3 Features of a Line

Section 4.3 Features of a Line Section.3 Features of a Line Objectives In this section, ou will learn to: To successfull complete this section, ou need to understand: Identif the - and -intercepts of a line. Plotting points in the --plane

More information

A Formal Definition of Limit

A Formal Definition of Limit 5 CHAPTER Limits and Their Properties L + ε L L ε (c, L) c + δ c c δ The - definition of the it of f as approaches c Figure. A Formal Definition of Limit Let s take another look at the informal description

More information

Section 4.2 Graphing Lines

Section 4.2 Graphing Lines Section. Graphing Lines Objectives In this section, ou will learn to: To successfull complete this section, ou need to understand: Identif collinear points. The order of operations (1.) Graph the line

More information

Grid and Mesh Generation. Introduction to its Concepts and Methods

Grid and Mesh Generation. Introduction to its Concepts and Methods Grid and Mesh Generation Introduction to its Concepts and Methods Elements in a CFD software sstem Introduction What is a grid? The arrangement of the discrete points throughout the flow field is simpl

More information

What and Why Transformations?

What and Why Transformations? 2D transformations What and Wh Transformations? What? : The geometrical changes of an object from a current state to modified state. Changing an object s position (translation), orientation (rotation)

More information

Pre-Algebra Notes Unit 8: Graphs and Functions

Pre-Algebra Notes Unit 8: Graphs and Functions Pre-Algebra Notes Unit 8: Graphs and Functions The Coordinate Plane A coordinate plane is formed b the intersection of a horizontal number line called the -ais and a vertical number line called the -ais.

More information

ENGIN 112. Intro to Electrical and Computer Engineering

ENGIN 112. Intro to Electrical and Computer Engineering ENIN 2 Intro to Electrical and Computer Engineering Lecture 6 More Boolean Algebra ENIN2 L6: More Boolean Algebra September 5, 23 A B Overview Epressing Boolean functions Relationships between algebraic

More information

Roberto s Notes on Differential Calculus Chapter 8: Graphical analysis Section 5. Graph sketching

Roberto s Notes on Differential Calculus Chapter 8: Graphical analysis Section 5. Graph sketching Roberto s Notes on Differential Calculus Chapter 8: Graphical analsis Section 5 Graph sketching What ou need to know alread: How to compute and interpret limits How to perform first and second derivative

More information

Exponential Functions. Christopher Thomas

Exponential Functions. Christopher Thomas Mathematics Learning Centre Eponential Functions Christopher Thomas c 1998 Universit of Sdne Mathematics Learning Centre, Universit of Sdne 1 1 Eponential Functions 1.1 The functions =2 and =2 From our

More information

The Graph of an Equation

The Graph of an Equation 60_0P0.qd //0 :6 PM Page CHAPTER P Preparation for Calculus Archive Photos Section P. RENÉ DESCARTES (96 60) Descartes made man contributions to philosoph, science, and mathematics. The idea of representing

More information

Contents. How You May Use This Resource Guide

Contents. How You May Use This Resource Guide Contents How You Ma Use This Resource Guide ii 0 Trigonometric Formulas, Identities, and Equations Worksheet 0.: Graphical Analsis of Trig Identities.............. Worksheet 0.: Verifing Trigonometric

More information

Building up a language SICP Variations on a Scheme. Meval. The Core Evaluator. Eval. Apply. 2. syntax procedures. 1.

Building up a language SICP Variations on a Scheme. Meval. The Core Evaluator. Eval. Apply. 2. syntax procedures. 1. 6.001 SICP Variations on a Scheme Scheme Evaluator A Grand Tour Techniques for language design: Interpretation: eval/appl Semantics vs. snta Sntactic transformations Building up a language... 3. 1. eval/appl

More information

9. f(x) = x f(x) = x g(x) = 2x g(x) = 5 2x. 13. h(x) = 1 3x. 14. h(x) = 2x f(x) = x x. 16.

9. f(x) = x f(x) = x g(x) = 2x g(x) = 5 2x. 13. h(x) = 1 3x. 14. h(x) = 2x f(x) = x x. 16. Section 4.2 Absolute Value 367 4.2 Eercises For each of the functions in Eercises 1-8, as in Eamples 7 and 8 in the narrative, mark the critical value on a number line, then mark the sign of the epression

More information

Topic 2 Transformations of Functions

Topic 2 Transformations of Functions Week Topic Transformations of Functions Week Topic Transformations of Functions This topic can be a little trick, especiall when one problem has several transformations. We re going to work through each

More information

Abstract. Euler Equations Solutions for Incompressible Fluid Flow. Copyright A. A. Frempong

Abstract. Euler Equations Solutions for Incompressible Fluid Flow. Copyright A. A. Frempong Copright A. A. Frempong Euler Equations Solutions for Incompressible Fluid Flow Abstract The simplest solution is usuall the best solution---albert Einstein This paper covers the solutions of the Euler

More information

C URVES AND V ECTORS

C URVES AND V ECTORS 96-ch- SB5-Ostebee June 6, 9:57 C H A P T E R O U T L I N E. Three-Dimensional Space. Curves and Parametric Equations. Polar Coordinates and Polar Curves.4 Vectors.5 Vector-Valued Functions, Derivatives,

More information

Chapter Three Chapter Three

Chapter Three Chapter Three Chapter Three Chapter Three 90 CHAPTER THREE ConcepTests for Section.. If f () = g (), then f() = g(). (a) True (b) False (b). If f () = g (), then f() = g() + C, where C is some constant. You might point

More information

ACTIVITY 9 Continued Lesson 9-2

ACTIVITY 9 Continued Lesson 9-2 Continued Lesson 9- Lesson 9- PLAN Pacing: 1 class period Chunking the Lesson Eample A Eample B #1 #3 Lesson Practice M Notes Learning Targets: Graph on a coordinate plane the solutions of a linear inequalit

More information

Four Ways to Represent a Function: We can describe a specific function in the following four ways: * verbally (by a description in words);

Four Ways to Represent a Function: We can describe a specific function in the following four ways: * verbally (by a description in words); MA19, Activit 23: What is a Function? (Section 3.1, pp. 214-22) Date: Toda s Goal: Assignments: Perhaps the most useful mathematical idea for modeling the real world is the concept of a function. We eplore

More information

1.5 LIMITS. The Limit of a Function

1.5 LIMITS. The Limit of a Function 60040_005.qd /5/05 :0 PM Page 49 SECTION.5 Limits 49.5 LIMITS Find its of functions graphicall and numericall. Use the properties of its to evaluate its of functions. Use different analtic techniques to

More information

Simple example. Analysis of programs with pointers. Program model. Points-to relation

Simple example. Analysis of programs with pointers. Program model. Points-to relation Simple eample Analsis of programs with pointers := 5 ptr := & *ptr := 9 := program S1 S2 S3 S4 What are the defs and uses of in this program? Problem: just looking at variable names will not give ou the

More information

Algebra I. Linear Equations. Slide 1 / 267 Slide 2 / 267. Slide 3 / 267. Slide 3 (Answer) / 267. Slide 4 / 267. Slide 5 / 267

Algebra I. Linear Equations. Slide 1 / 267 Slide 2 / 267. Slide 3 / 267. Slide 3 (Answer) / 267. Slide 4 / 267. Slide 5 / 267 Slide / 67 Slide / 67 lgebra I Graphing Linear Equations -- www.njctl.org Slide / 67 Table of ontents Slide () / 67 Table of ontents Linear Equations lick on the topic to go to that section Linear Equations

More information

Determine Whether Two Functions Are Equivalent. Determine whether the functions in each pair are equivalent by. and g (x) 5 x 2

Determine Whether Two Functions Are Equivalent. Determine whether the functions in each pair are equivalent by. and g (x) 5 x 2 .1 Functions and Equivalent Algebraic Epressions On September, 1999, the Mars Climate Orbiter crashed on its first da of orbit. Two scientific groups used different measurement sstems (Imperial and metric)

More information

(0, 2) y = x 1 2. y = x (2, 2) y = 2x + 2

(0, 2) y = x 1 2. y = x (2, 2) y = 2x + 2 .5 Equations of Parallel and Perpendicular Lines COMMON CORE Learning Standards HSG-GPE.B.5 HSG-GPE.B. Essential Question How can ou write an equation of a line that is parallel or perpendicular to a given

More information

Function Notation. Essential Question How can you use function notation to represent a function?

Function Notation. Essential Question How can you use function notation to represent a function? . Function Notation Essential Question How can ou use function notation to represent a function? The notation f(), called function notation, is another name for. This notation is read as the value of f

More information

The Graph Scale-Change Theorem

The Graph Scale-Change Theorem Lesson 3-5 Lesson 3-5 The Graph Scale-Change Theorem Vocabular horizontal and vertical scale change, scale factor size change BIG IDEA The graph of a function can be scaled horizontall, verticall, or in

More information

Chapter 3. Interpolation. 3.1 Introduction

Chapter 3. Interpolation. 3.1 Introduction Chapter 3 Interpolation 3 Introduction One of the fundamental problems in Numerical Methods is the problem of interpolation, that is given a set of data points ( k, k ) for k =,, n, how do we find a function

More information

Exponential and Logarithmic Functions

Exponential and Logarithmic Functions Eponential and Logarithmic Functions Figure Electron micrograph of E. Coli bacteria (credit: Mattosaurus, Wikimedia Commons) CHAPTER OUTLINE. Eponential Functions. Logarithmic Properties. Graphs of Eponential

More information

Exponential and Logarithmic Functions

Exponential and Logarithmic Functions Eponential and Logarithmic Functions Figure Electron micrograph of E. Coli bacteria (credit: Mattosaurus, Wikimedia Commons) Chapter Outline. Eponential Functions. Logarithmic Properties. Graphs of Eponential

More information

Find the Relationship: An Exercise in Graphical Analysis

Find the Relationship: An Exercise in Graphical Analysis Find the Relationship: An Eercise in Graphical Analsis In several laborator investigations ou do this ear, a primar purpose will be to find the mathematical relationship between two variables. For eample,

More information

Optional: Building a processor from scratch

Optional: Building a processor from scratch Optional: Building a processor from scratch In this assignment we are going build a computer processor from the ground up, starting with transistors, and ending with a small but powerful processor. The

More information

Graphs, Linear Equations, and Functions

Graphs, Linear Equations, and Functions Graphs, Linear Equations, and Functions. The Rectangular R. Coordinate Fractions Sstem bjectives. Interpret a line graph.. Plot ordered pairs.. Find ordered pairs that satisf a given equation. 4. Graph

More information

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013.

DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING, THE UNIVERSITY OF NEW MEXICO ECE-238L: Computer Logic Design Fall 2013. ECE-8L: Computer Logic Design Fall Notes - Chapter BINARY NUMBER CONVERSIONS DECIMAL NUMBER SYSTEM A decimal digit can take values from to 9: Digit-b-digit representation of a positive integer number (powers

More information

Lines and Their Slopes

Lines and Their Slopes 8.2 Lines and Their Slopes Linear Equations in Two Variables In the previous chapter we studied linear equations in a single variable. The solution of such an equation is a real number. A linear equation

More information

Lecture 12 Date:

Lecture 12 Date: Information Technolog Delhi Lecture 2 Date: 3.09.204 The Signal Flow Graph Information Technolog Delhi Signal Flow Graph Q: Using individual device scattering parameters to analze a comple microwave network

More information

2.1 The ReCTAngUlAR COORdInATe SySTemS And graphs

2.1 The ReCTAngUlAR COORdInATe SySTemS And graphs 7 CHAPTER equations ANd inequalities learning ObjeCTIveS In this section ou will: Plot ordered pairs in a Cartesian coordinate sstem. Graph equations b plotting points. Graph equations with a graphing

More information

Partial Fraction Decomposition

Partial Fraction Decomposition Section 7. Partial Fractions 53 Partial Fraction Decomposition Algebraic techniques for determining the constants in the numerators of partial fractions are demonstrated in the eamples that follow. Note

More information

3.1 Functions. The relation {(2, 7), (3, 8), (3, 9), (4, 10)} is not a function because, when x is 3, y can equal 8 or 9.

3.1 Functions. The relation {(2, 7), (3, 8), (3, 9), (4, 10)} is not a function because, when x is 3, y can equal 8 or 9. 3. Functions Cubic packages with edge lengths of cm, 7 cm, and 8 cm have volumes of 3 or cm 3, 7 3 or 33 cm 3, and 8 3 or 5 cm 3. These values can be written as a relation, which is a set of ordered pairs,

More information

Answers. Chapter 4. Cumulative Review Chapters 1 3, pp Chapter Self-Test, p Getting Started, p a) 49 c) e)

Answers. Chapter 4. Cumulative Review Chapters 1 3, pp Chapter Self-Test, p Getting Started, p a) 49 c) e) . 7" " " 7 "7.. "66 ( ") cm. a, (, ), b... m b.7 m., because t t has b ac 6., so there are two roots. Because parabola opens down and is above t-ais for small positive t, at least one of these roots is

More information

A notation for describing computations that focuses. Allows convenient denition and manipulation of

A notation for describing computations that focuses. Allows convenient denition and manipulation of Introduction to -calculus A notation for describing computations that focuses on function denition and application. Allows convenient denition and manipulation of functions as \rst-class" values. Eample:

More information

Chapter 2: Introduction to Functions

Chapter 2: Introduction to Functions Chapter 2: Introduction to Functions Lesson 1: Introduction to Functions Lesson 2: Function Notation Lesson 3: Composition of Functions Lesson 4: Domain and Range Lesson 5: Restricted Domain Lesson 6:

More information

Determining the 2d transformation that brings one image into alignment (registers it) with another. And

Determining the 2d transformation that brings one image into alignment (registers it) with another. And Last two lectures: Representing an image as a weighted combination of other images. Toda: A different kind of coordinate sstem change. Solving the biggest problem in using eigenfaces? Toda Recognition

More information

2.3. Horizontal and Vertical Translations of Functions. Investigate

2.3. Horizontal and Vertical Translations of Functions. Investigate .3 Horizontal and Vertical Translations of Functions When a video game developer is designing a game, she might have several objects displaed on the computer screen that move from one place to another

More information

Two Dimensional Viewing

Two Dimensional Viewing Two Dimensional Viewing Dr. S.M. Malaek Assistant: M. Younesi Two Dimensional Viewing Basic Interactive Programming Basic Interactive Programming User controls contents, structure, and appearance of objects

More information

Section 1.6: Graphs of Functions, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Creative

Section 1.6: Graphs of Functions, from College Algebra: Corrected Edition by Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Creative Section.6: Graphs of Functions, from College Algebra: Corrected Edition b Carl Stitz, Ph.D. and Jeff Zeager, Ph.D. is available under a Creative Commons Attribution-NonCommercial-ShareAlike.0 license.

More information

science. In this course we investigate problems both algebraically and graphically.

science. In this course we investigate problems both algebraically and graphically. Section. Graphs. Graphs Much of algebra is concerned with solving equations. Man algebraic techniques have been developed to provide insights into various sorts of equations and those techniques are essential

More information

Transformations using matrices

Transformations using matrices Transformations using matrices 6 sllabusref eferenceence Core topic: Matrices and applications In this cha 6A 6B 6C 6D 6E 6F 6G chapter Geometric transformations and matri algebra Linear transformations

More information

2.3 Polynomial Functions of Higher Degree with Modeling

2.3 Polynomial Functions of Higher Degree with Modeling SECTION 2.3 Polnomial Functions of Higher Degree with Modeling 185 2.3 Polnomial Functions of Higher Degree with Modeling What ou ll learn about Graphs of Polnomial Functions End Behavior of Polnomial

More information

Algebra II Notes Radical Functions Unit Applying Radical Functions. Math Background

Algebra II Notes Radical Functions Unit Applying Radical Functions. Math Background Appling Radical Functions Math Background Previousl, ou Found inverses of linear and quadratic functions Worked with composition of functions and used them to verif inverses Graphed linear and quadratic

More information

Developed in Consultation with Tennessee Educators

Developed in Consultation with Tennessee Educators Developed in Consultation with Tennessee Educators Table of Contents Letter to the Student........................................ Test-Taking Checklist........................................ Tennessee

More information

Statistically Analyzing the Impact of Automated ETL Testing on Data Quality

Statistically Analyzing the Impact of Automated ETL Testing on Data Quality Chapter 5 Statisticall Analzing the Impact of Automated ETL Testing on Data Qualit 5.0 INTRODUCTION In the previous chapter some prime components of hand coded ETL prototpe were reinforced with automated

More information

Introduction to Trigonometric Functions. Peggy Adamson and Jackie Nicholas

Introduction to Trigonometric Functions. Peggy Adamson and Jackie Nicholas Mathematics Learning Centre Introduction to Trigonometric Functions Pegg Adamson and Jackie Nicholas c 998 Universit of Sdne Acknowledgements A significant part of this manuscript has previousl appeared

More information

Trigonometric Identities

Trigonometric Identities Trigonometric Identities 6.5 SKILL BUILDER An equation that is true for all alues of the ariable in it is called an identit. For instance, the epression 4( 3) 8 is an eample of an algebraic identit because

More information

8.6 Three-Dimensional Cartesian Coordinate System

8.6 Three-Dimensional Cartesian Coordinate System SECTION 8.6 Three-Dimensional Cartesian Coordinate Sstem 69 What ou ll learn about Three-Dimensional Cartesian Coordinates Distance and Midpoint Formulas Equation of a Sphere Planes and Other Surfaces

More information

ECE241 - Digital Systems. University of Toronto. Lab #2 - Fall Introduction Computer-Aided Design Software, the DE2 Board and Simple Logic

ECE241 - Digital Systems. University of Toronto. Lab #2 - Fall Introduction Computer-Aided Design Software, the DE2 Board and Simple Logic ECE24 - Digital Sstems Universit of Toronto Lab #2 - Fall 28 Introduction Computer-Aided Design Software, the DE2 Board and Simple Logic. Introduction The purpose of this eercise is to introduce ou to

More information

Chapter 3 Part 1 Combinational Logic Design

Chapter 3 Part 1 Combinational Logic Design Universit of Wisconsin - Madison EE/omp Sci 352 igital Sstems undamentals Kewal K. Saluja and Yu Hen Hu Spring 22 hapter 3 Part ombinational Logic esign Originals b: harles R. Kime and Tom Kamisnski Modified

More information

1. A(-2, 2), B(4, -2) 3 EXAMPLE. Graph the line y = Move up 3 units. Quick Check See left.

1. A(-2, 2), B(4, -2) 3 EXAMPLE. Graph the line y = Move up 3 units. Quick Check See left. -. Plan Objectives To graph lines given their equations To write equations of lines Eamples Graphing Lines in Slope- Intercept Form Graphing Lines Using Intercepts Transforming to Slope- Intercept Form

More information

Closure Polynomials for Strips of Tetrahedra

Closure Polynomials for Strips of Tetrahedra Closure Polnomials for Strips of Tetrahedra Federico Thomas and Josep M. Porta Abstract A tetrahedral strip is a tetrahedron-tetrahedron truss where an tetrahedron has two neighbors ecept those in the

More information

Section 1.4 Limits involving infinity

Section 1.4 Limits involving infinity Section. Limits involving infinit (/3/08) Overview: In later chapters we will need notation and terminolog to describe the behavior of functions in cases where the variable or the value of the function

More information

Chapter 3. Exponential and Logarithmic Functions. Selected Applications

Chapter 3. Exponential and Logarithmic Functions. Selected Applications Chapter Eponential and Logarithmic Functions. Eponential Functions and Their Graphs. Logarithmic Functions and Their Graphs. Properties of Logarithms. Solving Eponential and Logarithmic Equations.5 Eponential

More information

Equations and Inequalities

Equations and Inequalities Equations and Inequalities Figure CHAPTER OUTLINE. The Rectangular Coordinate Sstems and Graphs. Linear Equations in One Variable. Models and Applications. Comple Numbers. Quadratic Equations.6 Other Tpes

More information

ECE241 - Digital Systems

ECE241 - Digital Systems ECE24 - Digital Sstems Universit of Toronto Lab 2: Introduction Computer-Aided Design Software, the DE2 Board and Simple Logic. Introduction The purpose of this eercise is to introduce the software tools

More information

Lecture 10: Combinational Circuits

Lecture 10: Combinational Circuits Computer Architecture Lecture : Combinational Circuits Previous two lectures.! TOY machine. Net two lectures.! Digital circuits. George Boole (85 864) Claude Shannon (96 2) Culminating lecture.! Putting

More information

2.3. One-to-One and Inverse Functions. Introduction. Prerequisites. Learning Outcomes

2.3. One-to-One and Inverse Functions. Introduction. Prerequisites. Learning Outcomes One-to-One and Inverse Functions 2. Introduction In this Section we eamine more terminolog associated with functions. We eplain one-to-one and man-to-one functions and show how the rule associated with

More information

2-1. The Language of Functions. Vocabulary

2-1. The Language of Functions. Vocabulary Chapter Lesson -1 BIG IDEA A function is a special tpe of relation that can be described b ordered pairs, graphs, written rules or algebraic rules such as equations. On pages 78 and 79, nine ordered pairs

More information

Domain of Rational Functions

Domain of Rational Functions SECTION 46 RATIONAL FU NCTIONS SKI LLS OBJ ECTIVES Find the domain of a rational function Determine vertical, horizontal, and slant asmptotes of rational functions Graph rational functions CONCE PTUAL

More information

Computer Graphics. Geometric Transformations

Computer Graphics. Geometric Transformations Contents coordinate sstems scalar values, points, vectors, matrices right-handed and left-handed coordinate sstems mathematical foundations transformations mathematical descriptions of geometric changes,

More information

Transformations II. Arbitrary 3D Rotation. What is its inverse? What is its transpose? Can we constructively elucidate this relationship?

Transformations II. Arbitrary 3D Rotation. What is its inverse? What is its transpose? Can we constructively elucidate this relationship? Utah School of Computing Fall 25 Transformations II CS46 Computer Graphics From Rich Riesenfeld Fall 25 Arbitrar 3D Rotation What is its inverse? What is its transpose? Can we constructivel elucidate this

More information

4.7 INVERSE TRIGONOMETRIC FUNCTIONS

4.7 INVERSE TRIGONOMETRIC FUNCTIONS Section 4.7 Inverse Trigonometric Functions 4 4.7 INVERSE TRIGONOMETRIC FUNCTIONS NASA What ou should learn Evaluate and graph the inverse sine function. Evaluate and graph the other inverse trigonometric

More information

Section 5.7 Negative Exponents and Scientific Notation. What is YOUR Share?

Section 5.7 Negative Exponents and Scientific Notation. What is YOUR Share? Section. Negative Eponents and Scientific Notation What is YOUR Share? In a recent ear there was a budget deficit of about $,0,000,000,000 and there were approimatel 0,000,000 Americans. In this section

More information

Computer Graphics. P04 Transformations. Aleksandra Pizurica Ghent University

Computer Graphics. P04 Transformations. Aleksandra Pizurica Ghent University Computer Graphics P4 Transformations Aleksandra Pizurica Ghent Universit Telecommunications and Information Processing Image Processing and Interpretation Group Transformations in computer graphics Goal:

More information

6.2 Adding and Subtracting Rational Expressions

6.2 Adding and Subtracting Rational Expressions 8 CHAPTER 6 Rational Epressions Simplify. Assume that no denominator is 0. 99. p - - p 00. + q n q n + n + k - 9 0. n 0. - 6 + k Perform the indicated operation. Write all answers in lowest terms. 0. 0.

More information