This chapter illustrates some of the basic features of Mathematica useful for finite mathematics and business calculus. Example

Size: px
Start display at page:

Download "This chapter illustrates some of the basic features of Mathematica useful for finite mathematics and business calculus. Example"

Transcription

1 The Mathematics Companion for Finite Mathematics and Business Calculus is a dictionary-like reference guide for learning and applying mathematical ideas, techniques, and formulas with the help of Mathematica, the leading computational software for students and users of mathematics in business, economics, and the life and social sciences. The material in the book is organized alphabetically for easy use and reference. It can be used as a tutorial introduction to the basics of Mathematica and touches briefly on the value of Wolfram Alpha as an extension of the material covered in the companion. Many examples illustrate the use of Mathematica Manipulations for dynamic learning and exploration. The following excepts from selected chapters indicate the style and range of topics covered in the book. 1 This chapter illustrates some of the basic features of Mathematica useful for finite mathematics and business calculus. Example 11e The symbol e denotes the base of the exponential function. The N function can be used to produce decimal approximations. N[e, 45] Special symbols can be entered and formatting options can be invoked using special menus called palettes. Opening Mathematica Palettes

2 See also: Maxima and minima Suppose that a function has several maxima or minima on sub-intervals of its domain. Then these maxima are referred to as local maxima. The absolute maximum of the function over the entire domain is the maximum the local minima, if it exists. The absolute minimum of the function on a domain is the minimum of the set of local minima. If the domain of a function is an interval including endpoints, then the values of the function at the endpoints are included in the set of potential absolute maxima and minima. Mathematica Illustration Solution 1 f[x_] := Sin[x]

3 MaxValue[f[x], x Reals] 1 Solve[f[x] 1, x] x ConditionalExpression π + 2 π C[1], C[1] Integers 2 Plot[f[x], {x, -20 π, 20 π}] The graph shows that the sine function assumes its absolute maxima and minima at infinitely many points over its domain. The graph shows that the sine function assumes its absolute maxima and minima at infinitely many points over its domain. We can vary the interval {x, -20 π, 20 π} at will to view the graph of f[x] for other real number inputs and to stretch or shrink the display of the functional values. Solution 2 Plot[f[x], {x, -π, π}] This graph shows that if we restrict the domain of f to the interval -π x π, then the function has a unique global maximum and a unique global minimum on the specified domain.

4 1 1 See also: Discrete plots, histograms, list plots, list line plots, pie charts, trees Mathematica has an extensive repertoire of tools for visualizing data. Among them are the bar charts. Mathematica Illustration BarChart[Range[10], ChartStyle "DarkRainbow"]

5 BarChart[{Range[4], Reverse[Range[4]]}] BarChart[{{1, 2, 3, 4}, {1, 4, 3, 2, 5}}, ChartLabels {"a", "b", "c", "d", "e"}] a b c d a b c d e 1 See also: Annuities 1 The financing of a car loan is an example of the repayment of an ordinary annuity.

6 Mathematica Illustration Suppose we are planning to buy a new car worth $35,000 and we have two choices of paying for the car: 1. 0% financing over 60 months % financing, compounded monthly, together with a rebate of $5,000. Which option should we choose? 0% financing pmt = % financing and a $5,000 rebate We use the amortization formula Clear[pv, i, n, pmt] i pmt[pv_, i_, n_] := pv i -n If we choose the rebate option, we are borrowing only $22,200 at a monthly rate of i = 0.045/12 per cent for 48 months. pmt30 000, , The calculations show that the 4.5% option is the way to go. The payment formula corresponds to the present value formula of an ordinary annuity. We can verify this by computing the present value of the annuity consisting of 60 monthly equal payments: pv[pmt_, i_, n_] := pmt i-n i pv , , See also: Derivatives of composite functions The chain rule tells us how to differentiate functions constructed by composing two or more given functions.

7 Wolfram Alpha Illustration 1 ( ) 111() () () (())11 () 1d/d d/d d/d Mathematica Illustration f[x_] := 3 x 2-2; g[y_] := Log[y]; h[x_] := Composition[f, g][x] h[x] Log[x] 2 h[x] f[y] /. y -> Log[x] True D[h[x], x] 6 Log[x] x The function h is usually written with the composition symbol as (f g) and its values are denoted by f(g(x)).

8 Composition is not commutative. The function (f g) is rarely equal to the function (g f). k[x_] := Composition[g, f][x] k[x] Log x 2 D[k[x], x] 6 x x 2 It is easy to verify that the function h[x] and k[x] are not equal. If we evaluate both functions at x = 1, for example, we get different results: h[x] /. x 1-2 k[x] /. x A discontinuity is a point at which a function is discontinuous. There are various reason why a in one variable is discontinuous at a point x in its domain. 1. A function may be discontinuous at x if its value f[x] is different from the limit of f[x] at x. In this case, the discontinuity is said to be removable. All we need to do is to redefine f[x] to be equal to the limit of f[x] at x. 2. A function may be discontinuous at x if the limit of f[x] at x does not exist. For example, the left limit may be different from the right limit. 3. A function may be discontinuous at x if either the left limit or the right limit of f[x] at x does not exist. Mathematica Illustration A removable discontinuity

9 (x - 1) x + 2 f[x_] := (x - 1) f[1] Indeterminate g[x_] := Piecewise[{{f[x],! (x 1)}, {1, x == 1}}] g[1] 1 The value f[x] is different from the limit of f[x] at x. h[x_] := Piecewise[{{-1, x < 0}, {.5, x 0}}] Plot[h[x], {x, -2, 2}] {h[0], Limit[h[x], x 0, Direction 1], Limit[h[x], x 0, Direction -1]} {0.5, -5, -5} See also: Derivative of the logarithmic functions Suppose that the price p and the demand x of a product are related by a price-demand equation f[p_] := x

10 Then the elasticity of demand at price p is the relative rate of change of demand x, divided by the relative rate of change of price p: elasticity[p] = D[Log[f[p], p] D[Log[p], p] Mathematica Illustration p f'[p] f[p] Suppose that x = f(p) = 1000 (40 - p), for example, then f[p_] := p then DLog p, p elasticity[p] = - D[Log[p], p] p 40 - p p 40 - p 1 39 /. {p 1} p Manipulate, {p, 0, 30} 40 - p (p + a) Manipulate, {p, 0, 30}, {a, 0, 10} 40 - (p + a) If 0 < E(p) < 1, the demand is said to be inelastic, if 1 < E(p), the demand is said to be elastic, and if E(p) = 1, a percentage change in the price of the commodity entails the same percentage change in demand. In the given example, the Manipulation shows that the demand is inelastic if the unit price of

11 the commodity is less than $20 and is elastic if the price of the commodity exceeds $20. Furthermore, elasticity[20] = 1 p 40 - p /. p 20 Hence the percentage change in price of the commodity leads to the same percentage change in demand. Absolute equality of income, 17 See: Gini index, Lorenz curve Absolute maxima and minima, 17 Absolute value, 18 Absorbing Markov chains, 20 Absorbing states of a Markov chain, 21 Addition of matrices, 23 See: Matrix algebra Addition principle for counting, 23 Amortization, 24 And (, &&), 26 See: Boolean logic (conjunction) Angle, 26 Annuities, 27 Anti-derivative, 30 See: Anti-differentiation Anti-differentiation, 30 Area, 36 Arithmetic mean, 40 Arithmetic sequence, 41 Arrow representation of vectors, 42 See: Vectors Asymptotes, 42

12 Augmented matrix, 44 Average, 45 See: Mean, median, mode Average rate of change 45 Bar charts, 47 Bayes' formula, 49 Bernoulli trial, 49 Binomial coefficients, 50 Binomial distribution, 51 Binomial probability experiments, 53 See: Bernoulli trials Binomial probability distribution, 53 Binomial theorem, 54 Boolean logic, 55 Break-even point, 58 See: Business functions Business functions, 58 Cost functions, 58 Demand functions, 60 Profit functions, 61 Revenue functions, 62 Break-even point, 63 Car loans, 65 Chain rule for differentiation, 66 Characteristic polynomial, 68 Codomain of a function, 70 Column vectors, 71 Combinations, 72 Common logarithms, 73 Complement of a set, 74 Complex numbers, 76

13 Composite function, 77 See: Functions, chain rule Compound event, 77 Compound interest, 77 Concavity of the graph of a function, 78 Conditional, 79 See: Boolean logic, if-then Conditional probability, 79 Conjunction, 81 See: And, Boolean logic Consistent linear systems, 81 Constant functions, 82 See: Functions Continuous compound interest, 82 Continuous functions, 83 Cosine function, 86 See: Trigonometric functions Cost function, 86 See: Business functions Counting principles, 86 Critical points of a function, 88 Curve fitting, 89 See: Regression analysis Decreasing function, 90 Definite integral, 92 Degree measure of an angle, 96 Degree of a polynomial, 97 Demand function, 98 See: Business functions Derivatives of a function, 98 Derivatives of a composite function, 101 Derivatives of an exponential function, 102 Derivatives of a logarithmic function, 103

14 Derivatives of a product function, 104 Derivatives of a quotient functions, 105 Derivatives of trigonometric functions, 106 Determinant of a matrix, 108 Diagonal matrix, 109 Diagonal of a matrix, 110 Difference quotient, 110 Differentiable function, 112 Differential equation, 114 Differentials, 116 Differentiation, 122 Dimensions of a matrix, 126 Discontinuities, 126 Discrete probability distribution, 128 Disjoint sets, 129 Disjoint union of sets, 129 Disjunction, 131 See: Boolean logic, or Domain of a function, 131 Dot product,133 E, 135 Elasticity of demand for a product, 137 Empty set, 138 Equally likely assumption, 140 Equivalent matrices, 140 Events, 141 Expected value of a random variable, 142 Exponential functions, 144 Exponential growth and decay, 146 Factorial function, 148 Factoring polynomials, 149

15 Feasible regions, 150 Finance, 152 See: Mathematics of finance First derivatives and the graphs of functions, 152 First derivative test, 155 First-order differential equations, 158 Functions of one variable, 159 Functions of several variables, 160 Fundamental theorem of algebra, 163 Fundamental theorem of calculus, 164 Future value of an annuity, 165 Gauss-Jordan elimination, 167 Geometric sequence, 170 Gini index, 171 Graphing of functions and relations, 172 Histograms, 175 Homogeneous linear systems, 180 Horizontal asymptotes, 181 Horizontal tangents, 182 Identity matrices, 184 If and only if, 185 See: Boolean logic (implication), logical equivalence, tautologies If then, 185 See: Boolean logic (implication) Implication, 185 See: Boolean logic Implicit differentiation, 185 Inconsistent linear systems, 190

16 See: Systems of linear equations Increasing functions, 191 Indefinite and definite integrals, 193 Inelastic demand for a product, 194 See: Elasticity of demand for a product Inequalities, 194 Infinite geometric series, 194 Infinite limits, 196 Infinite sets, 197 Inflection points of a function, 198 Instantaneous rate of change, 199 Integer exponents, 200 Integers, 200 Integral of a function, 201 Integration by parts, 204 Integration by substitution, 205 Interest, 207 See: Compound interest, continuous compound interest, simple interest Intersection and union of events, 207 See: Empty set, intersection of sets, sample spaces, union of sets Intersection of sets, 207 Inverse functions, 208 Inverse of a matrix, 208 Leontief input-output analysis, 211 L' Hôpital's rule, 214 Limits, 215 Limiting matrix, 218 See: Markov chains Limits and derivatives, 218 See: Difference quotient, limits Limits at infinity, 218 Limits of integration, 221 See: Lower limits of integration, upper limits of integration

17 Linear equations, 221 Linear functions, 225 Linear inequalities, 227 Linear programming, 229 Linear regression, 232 See: Regression analysis Linear systems, 232 See: Systems of linear equations, matrix equations List line plots, 232 List plots, 233 Local extrema, 235 See: Maxima and minima Logarithmic functions, 235 Logarithms, 237 See: Common logarithms, logarithmic functions, natural logarithms Logic, 238 See: Boolean logic Logical equivalence, 238 Logical implication, 239 Lorenz curve, 240 Lower limits of integration, 240 See: Integration, limits of integration Marginal analysis, 241 Markov chains, 249 Mathematica domains, 252 Mathematics of finance, 254 See: Annuities, arithmetic sequence, compound interest, continuous interest, future value, geometric sequence, interest, present value, rate of interest, simple interest Matrices, 254 Matrix algebra, 256 Matrix equations, 261 Matrix multiplication, 262 See: Matrix algebra Maxima and minima, 262

18 Mean, 265 See: Arithmetic mean Measures of central tendency, 265 Measures of dispersion, 266 Median, 268 Method of least squares, 269 Mode, 271 Mortgages, 272 See: Annuities Multiplication of matrices, 272 See: Matrix algebra Multiplication principle for counting, 272 Mutually exclusive events, 273 Natural logarithms, 276 Negation, 277 See: Boolean logic, not Non-differentiable function, 277 Normal probability distribution, 278 Not, 283 See: Boolean logic (negation) Numerical integration methods, 283 See: Simpson's rule, Trapezoidal rule Odds, 284 One-to-one correspondence, 285 See: One-to-one functions One-to-one functions, 285 Operations on polynomials, 287 Operations on rational functions, 288 Optimization in business and economics, 290 Or, 291 See: Boolean logic (disjunction)

19 Parabolas, 292 See: Quadratic equations, quadratic formula, quadratic functions Percentage rate of change, 292 Permutations, 292 Pie charts, 293 Piecewise defined functions, 295 Pivot of a matrix, 296 See: Row-reduced matrix Points of diminishing returns, 296 Point-slope form of a line equation, 298 Polynomial equations, 299 Polynomials, 301 Polynomials and rational functions, 302 Power series, 303 Present value of an annuity, 304 Price-demand functions, 306 See: Business functions Probability, 306 Probability distribution of a random variable, 311 Probability spaces, 312 Product rule for differentiation, 313 See: Differentiation Profit functions, 314 See: Business functions Profit-loss analysis, 314 See: Break-even point Quadratic equations, 315 Quadratic formula, 317 Quadratic functions, 319 Quadratic regression, 320 See: Break-even point

20 Quotient rule for differentiation, 320 See: Differentiation Radians, 321 Radicals, 321 Random variables, 322 Range of a function, 325 Rates of change, 326 Rational exponents, 327 Rational expressions, 327 Rational functions, 329 Rational numbers, 329 See also: Integers, real numbers, complex numbers Real exponents, 330 Real numbers, 331 Reduced form of an augmented matrix, 333 Regression analysis, 333 Regular Markov chains, 335 See: Markov chains Related rates, 335 Relative maxima and minima, 337 See: Second derivative test for local extrema Relative rate of change, 338 Revenue functions, 338 See: Business Functions Row operations, 338 See: Gauss-Jordan elimination Row-reduced matrix, 338 Row vectors, 340 Saddle points, 343 Sample spaces, 344 Scalar multiplication of matrices, 345

21 See: Matrix algebra Scatter diagram, 345 See: List plot Scientific notation, 345 Second derivatives and graphs of functions, 346 Second derivative test for local extrema, 349 Sequences, 349 Series, 351 Sets, 352 Sigma notation, 355 Simple events, 357 See: Sample spaces Simple interest, 357 Simpson's rule for approximating definite integrals, 357 Sine function, 360 See: Trigonometric functions Sinking funds, 360 Slope-intercept equation of a straight line, 361 Slopes of tangents to the graph of a function, 362 Slope of a straight line, 364 Slope-point equation of a straight line, 365 Solving linear systems, 365 Standard deviation, 367 Sums of arithmetic sequences, 368 Sums of finite geometric sequences, 369 Sums of infinite geometric series, 370 Systems of linear equations, 371 Tangent function, 373 See: Trigonometric functions Tangent lines, 373 Tangent planes, 376 Tautologies, 377 See: Boolean logic

22 Technology matrices, 377 Total income, 380 See: Income Transition matrix, 380 Transpose of a matrix, 381 See: Matrix algebra Trapezoidal rule for approximating definite integrals, 381 Trigonometric functions, 384 Truth-tables, 387 See: Boolean logic Unbounded solution region, 388 See: Feasible region Union of alphanumeric lists, 388 Union of sets, 389 Upper limits of integration, 390 See: Integration, lower limits of integration Variables and constants, 391 Variance, 393 Vectors, 393 Venn diagrams, 395 Vertex form of a quadratic function, 398 Vertical asymptotes, 399 Vertical lines, 401

Finite Mathematics

Finite Mathematics Finite Mathematics 978-1-63545-026-2 To learn more about all our offerings Visit Knewton.com Source Author(s) (Text or Video) Title(s) Link (where applicable) OpenStax Senior Contributing Authors: Gilbert

More information

Finite Mathematics and Calculus

Finite Mathematics and Calculus Finite Mathematics and Calculus 978-1-63545-027-9 To learn more about all our offerings Visit Knewton.com/highered Source Author(s) (Text or Video) Title(s) Link (where applicable) OpenStax Senior Contributing

More information

Quantitative Methods Chapter 0: Review of Basic Concepts 0.1 Business Applications (II) 0.2 Business Applications (III)

Quantitative Methods Chapter 0: Review of Basic Concepts 0.1 Business Applications (II) 0.2 Business Applications (III) Quantitative Methods Chapter 0: Review of Basic Concepts 0.1 Business Applications (II) 0.1.1 Simple Interest 0.2 Business Applications (III) 0.2.1 Expenses Involved in Buying a Car 0.2.2 Expenses Involved

More information

Business Calculus

Business Calculus Business Calculus 978-1-63545-025-5 To learn more about all our offerings Visit Knewtonalta.com Source Author(s) (Text or Video) Title(s) Link (where applicable) OpenStax Senior Contributing Authors: Gilbert

More information

Learning Module 1 - Basic Algebra Review (Appendix A)

Learning Module 1 - Basic Algebra Review (Appendix A) Learning Module 1 - Basic Algebra Review (Appendix A) Element 1 Real Numbers and Operations on Polynomials (A.1, A.2) Use the properties of real numbers and work with subsets of the real numbers Determine

More information

Grade Math (HL) Curriculum

Grade Math (HL) Curriculum Grade 11-12 Math (HL) Curriculum Unit of Study (Core Topic 1 of 7): Algebra Sequences and Series Exponents and Logarithms Counting Principles Binomial Theorem Mathematical Induction Complex Numbers Uses

More information

PreCalculus. Curriculum (447 topics additional topics)

PreCalculus. Curriculum (447 topics additional topics) PreCalculus 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 needs.

More information

Algebra 2. Curriculum (384 topics additional topics)

Algebra 2. Curriculum (384 topics additional topics) Algebra 2 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 needs.

More information

Algebra and Trigonometry

Algebra and Trigonometry Algebra and Trigonometry 978-1-63545-098-9 To learn more about all our offerings Visit Knewtonalta.com Source Author(s) (Text or Video) Title(s) Link (where applicable) OpenStax Jay Abramson, Arizona State

More information

MILLIS PUBLIC SCHOOLS

MILLIS PUBLIC SCHOOLS MILLIS PUBLIC SCHOOLS Curriculum Guide High School Math The Millis Public Schools Curriculum Guide highlights the Power Standards for each grade level, Grade 9 through Grade 12 for the Math department.

More information

College Algebra To learn more about all our offerings Visit Knewton.com

College Algebra To learn more about all our offerings Visit Knewton.com College Algebra 978-1-63545-097-2 To learn more about all our offerings Visit Knewton.com Source Author(s) (Text or Video) Title(s) Link (where applicable) OpenStax Text Jay Abramson, Arizona State University

More information

Contents. CHAPTER P Prerequisites 1. CHAPTER 1 Functions and Graphs 69. P.1 Real Numbers 1. P.2 Cartesian Coordinate System 14

Contents. CHAPTER P Prerequisites 1. CHAPTER 1 Functions and Graphs 69. P.1 Real Numbers 1. P.2 Cartesian Coordinate System 14 CHAPTER P Prerequisites 1 P.1 Real Numbers 1 Representing Real Numbers ~ Order and Interval Notation ~ Basic Properties of Algebra ~ Integer Exponents ~ Scientific Notation P.2 Cartesian Coordinate System

More information

Curriculum Map for Mathematics SL (DP1)

Curriculum Map for Mathematics SL (DP1) Unit Title (Time frame) Topic 1 Algebra (8 teaching hours or 2 weeks) Curriculum Map for Mathematics SL (DP1) Standards IB Objectives Knowledge/Content Skills Assessments Key resources Aero_Std_1: Make

More information

2. TRIGONOMETRY 3. COORDINATEGEOMETRY: TWO DIMENSIONS

2. TRIGONOMETRY 3. COORDINATEGEOMETRY: TWO DIMENSIONS 1 TEACHERS RECRUITMENT BOARD, TRIPURA (TRBT) EDUCATION (SCHOOL) DEPARTMENT, GOVT. OF TRIPURA SYLLABUS: MATHEMATICS (MCQs OF 150 MARKS) SELECTION TEST FOR POST GRADUATE TEACHER(STPGT): 2016 1. ALGEBRA Sets:

More information

Student Learning Outcomes MATH 100: BEGINNING ALGEBRA

Student Learning Outcomes MATH 100: BEGINNING ALGEBRA Student Learning Outcomes MATH 100: BEGINNING ALGEBRA I. Real Numbers 1. Perform the basic operations on fractions, reduce, and convert to decimals and percents. 2. Define, classify, and graph real numbers.

More information

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS.

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS. STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF 2017 - DRAFT SYLLABUS Subject :Mathematics Class : XI TOPIC CONTENT Unit 1 : Real Numbers - Revision : Rational, Irrational Numbers, Basic Algebra

More information

Mathematics Syllabus UNIT I ALGEBRA : 1. SETS, RELATIONS AND FUNCTIONS

Mathematics Syllabus UNIT I ALGEBRA : 1. SETS, RELATIONS AND FUNCTIONS Mathematics Syllabus UNIT I ALGEBRA : 1. SETS, RELATIONS AND FUNCTIONS (i) Sets and their Representations: Finite and Infinite sets; Empty set; Equal sets; Subsets; Power set; Universal set; Venn Diagrams;

More information

How to handle and solve a linear equation (what s a linear equation?) How to draw the solution set for a linear inequality

How to handle and solve a linear equation (what s a linear equation?) How to draw the solution set for a linear inequality Study guide for final exam, Math 1090 - College Algebra for Business and Social Sciences This guide is meant to be a help on studying what I think is most important important that you learn form this exam,

More information

Algebra 2. Curriculum (524 topics additional topics)

Algebra 2. Curriculum (524 topics additional topics) Algebra 2 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 needs.

More information

Check boxes of Edited Copy of Sp Topics (was 217-pilot)

Check boxes of Edited Copy of Sp Topics (was 217-pilot) Check boxes of Edited Copy of 10024 Sp 11 213 Topics (was 217-pilot) College Algebra, 9th Ed. [open all close all] R-Basic Algebra Operations Section R.1 Integers and rational numbers Rational and irrational

More information

Harbor Creek School District

Harbor Creek School District Unit 1 Days 1-9 Evaluate one-sided two-sided limits, given the graph of a function. Limits, Evaluate limits using tables calculators. Continuity Evaluate limits using direct substitution. Differentiability

More information

How well do I know the content? (scale 1 5)

How well do I know the content? (scale 1 5) Page 1 I. Number and Quantity, Algebra, Functions, and Calculus (68%) A. Number and Quantity 1. Understand the properties of exponents of s I will a. perform operations involving exponents, including negative

More information

Contents. Set Theory. Functions and its Applications CHAPTER 1 CHAPTER 2. Preface... (v)

Contents. Set Theory. Functions and its Applications CHAPTER 1 CHAPTER 2. Preface... (v) (vii) Preface... (v) CHAPTER 1 Set Theory Definition of Set... 1 Roster, Tabular or Enumeration Form... 1 Set builder Form... 2 Union of Set... 5 Intersection of Sets... 9 Distributive Laws of Unions and

More information

Review Notes for IB Standard Level Math

Review Notes for IB Standard Level Math Review Notes for IB Standard Level Math 1 Contents 1 Algebra 8 1.1 Rules of Basic Operations............................... 8 1.2 Rules of Roots..................................... 8 1.3 Rules of Exponents...................................

More information

Binomials defined, 13 division by, FOIL method and, 22 multiplying binomial by trinomial,

Binomials defined, 13 division by, FOIL method and, 22 multiplying binomial by trinomial, 5639_Holtfrerich_Index 6/2/05 11:45 AM Page I-1 Index Absolute value defined, 46 functions and, 126 59 Absolute value equations, solutions, 46 49 Absolute value inequalities, solutions, 263 267 Acceleration,

More information

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120 Whitman-Hanson Regional High School provides all students with a high- quality education in order to develop reflective, concerned citizens and contributing members of the global community. Course Number

More information

Algebra 2 with Trigonometry

Algebra 2 with Trigonometry Algebra 2 with Trigonometry This course covers the topics shown below; new topics have been highlighted. Students navigate learning paths based on their level of readiness. Institutional users may customize

More information

Region 16 Board of Education. Precalculus Curriculum

Region 16 Board of Education. Precalculus Curriculum Region 16 Board of Education Precalculus Curriculum 2008 1 Course Description This course offers students an opportunity to explore a variety of concepts designed to prepare them to go on to study calculus.

More information

Math Review for AP Calculus

Math Review for AP Calculus Math Review for AP Calculus 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

More information

CURRICULUM PACING GUIDE ALG. II WITH TRIG (GRADES 10-12) 1st Nine Weeks 1

CURRICULUM PACING GUIDE ALG. II WITH TRIG (GRADES 10-12) 1st Nine Weeks 1 b. Use a variety of strategies to set up and solve increasingly complex problems c. Represent data, real-world situations and solutions in increasingly complex contexts (e.g., expressions, formulas, tables,

More information

Final Exam Review Packet

Final Exam Review Packet 1 Exam 1 Material Sections A.1, A.2 and A.6 were review material. There will not be specific questions focused on this material but you should know how to: Simplify functions with exponents. Factor quadratics

More information

Final Exam Review Packet

Final Exam Review Packet 1 Exam 1 Material Sections A.1, A.2 and A.6 were review material. There will not be specific questions focused on this material but you should know how to: Simplify functions with exponents. Factor quadratics

More information

Secondary Honors Algebra II Objectives

Secondary Honors Algebra II Objectives Secondary Honors Algebra II Objectives Chapter 1 Equations and Inequalities Students will learn to evaluate and simplify numerical and algebraic expressions, to solve linear and absolute value equations

More information

21 ST CENTURY LEARNING CURRICULUM FRAMEWORK PERFORMANCE RUBRICS FOR MATHEMATICS PRE-CALCULUS

21 ST CENTURY LEARNING CURRICULUM FRAMEWORK PERFORMANCE RUBRICS FOR MATHEMATICS PRE-CALCULUS 21 ST CENTURY LEARNING CURRICULUM FRAMEWORK PERFORMANCE RUBRICS FOR MATHEMATICS PRE-CALCULUS Table of Contents Functions... 2 Polynomials and Rational Functions... 3 Exponential Functions... 4 Logarithmic

More information

Mathematics 6 12 Section 26

Mathematics 6 12 Section 26 Mathematics 6 12 Section 26 1 Knowledge of algebra 1. Identify graphs of linear inequalities on a number line. 2. Identify graphs of linear equations and inequalities in the coordinate plane. 3. Identify

More information

Math Prep for Statics

Math Prep for Statics Math Prep for Statics 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

ESCONDIDO UNION HIGH SCHOOL DISTRICT COURSE OF STUDY OUTLINE AND INSTRUCTIONAL OBJECTIVES

ESCONDIDO UNION HIGH SCHOOL DISTRICT COURSE OF STUDY OUTLINE AND INSTRUCTIONAL OBJECTIVES ESCONDIDO UNION HIGH SCHOOL DISTRICT COURSE OF STUDY OUTLINE AND INSTRUCTIONAL OBJECTIVES COURSE TITLE: Algebra II A/B COURSE NUMBERS: (P) 7241 / 2381 (H) 3902 / 3903 (Basic) 0336 / 0337 (SE) 5685/5686

More information

MTH306: Algebra II. Course length: Two semesters. Materials: None

MTH306: Algebra II. Course length: Two semesters. Materials: None MTH306: Algebra II Students are able to gain credit if they have previously completed this course but did not successfully earn credit. For each unit, students take a diagnostic test that assesses their

More information

Index. Cambridge University Press An Introduction to Mathematics for Economics Akihito Asano. Index.

Index. Cambridge University Press An Introduction to Mathematics for Economics Akihito Asano. Index. , see Q.E.D. ln, see natural logarithmic function e, see Euler s e i, see imaginary number log 10, see common logarithm ceteris paribus, 4 quod erat demonstrandum, see Q.E.D. reductio ad absurdum, see

More information

Grade 8 Math Curriculum Map Erin Murphy

Grade 8 Math Curriculum Map Erin Murphy Topic 1 Variables and Expressions 2 Weeks Summative Topic Test: Students will be able to (SWBAT) use symbols o represent quantities that are unknown or that vary; demonstrate mathematical phrases and real-world

More information

Harbor Creek School District. Algebra II Advanced. Concepts Timeframe Skills Assessment Standards Linear Equations Inequalities

Harbor Creek School District. Algebra II Advanced. Concepts Timeframe Skills Assessment Standards Linear Equations Inequalities Algebra II Advanced and Graphing and Solving Linear Linear Absolute Value Relation vs. Standard Forms of Linear Slope Parallel & Perpendicular Lines Scatterplot & Linear Regression Graphing linear Absolute

More information

Spiral Review Probability, Enter Your Grade Online Quiz - Probability Pascal's Triangle, Enter Your Grade

Spiral Review Probability, Enter Your Grade Online Quiz - Probability Pascal's Triangle, Enter Your Grade Course Description This course includes an in-depth analysis of algebraic problem solving preparing for College Level Algebra. Topics include: Equations and Inequalities, Linear Relations and Functions,

More information

Copyright 2018 UC Regents and ALEKS Corporation. ALEKS is a registered trademark of ALEKS Corporation. 2/10

Copyright 2018 UC Regents and ALEKS Corporation. ALEKS is a registered trademark of ALEKS Corporation. 2/10 Prep for Calculus This course covers the topics outlined below. You can customize the scope and sequence of this course to meet your curricular needs. Curriculum (281 topics + 125 additional topics) Real

More information

Algebra 2 with Trigonometry Correlation of the ALEKS course Algebra 2 with Trigonometry to the Tennessee Algebra II Standards

Algebra 2 with Trigonometry Correlation of the ALEKS course Algebra 2 with Trigonometry to the Tennessee Algebra II Standards Algebra 2 with Trigonometry Correlation of the ALEKS course Algebra 2 with Trigonometry to the Tennessee Algebra II Standards Standard 2 : Number & Operations CLE 3103.2.1: CLE 3103.2.2: CLE 3103.2.3:

More information

Introductory Mathematics

Introductory Mathematics Introductory Mathematics 1998 2003 1.01 Identify subsets of the real number system. 1.02 Estimate and compute with rational Grade 7: 1.02 numbers. 1.03 Compare, order, and convert among Grade 6: 1.03 fractions,

More information

Mathematics AKS

Mathematics AKS Integrated Algebra I A - Process Skills use appropriate technology to solve mathematical problems (GPS) (MAM1_A2009-1) build new mathematical knowledge through problem-solving (GPS) (MAM1_A2009-2) solve

More information

The aim of this section is to introduce the numerical, graphical and listing facilities of the graphic display calculator (GDC).

The aim of this section is to introduce the numerical, graphical and listing facilities of the graphic display calculator (GDC). Syllabus content Topic 1 Introduction to the graphic display calculator The aim of this section is to introduce the numerical, graphical and listing facilities of the graphic display calculator (GDC).

More information

TEACHER CERTIFICATION EXAM 1.0 KNOWLEDGE OF ALGEBRA Identify graphs of linear inequalities on a number line...1

TEACHER CERTIFICATION EXAM 1.0 KNOWLEDGE OF ALGEBRA Identify graphs of linear inequalities on a number line...1 TABLE OF CONTENTS COMPETENCY/SKILL PG # 1.0 KNOWLEDGE OF ALGEBRA...1 1.1. Identify graphs of linear inequalities on a number line...1 1.2. Identify graphs of linear equations and inequalities in the coordinate

More information

ax 2 + bx + c = 0 where

ax 2 + bx + c = 0 where Chapter P Prerequisites Section P.1 Real Numbers Real numbers The set of numbers formed by joining the set of rational numbers and the set of irrational numbers. Real number line A line used to graphically

More information

PreCalculus. Curriculum (637 topics additional topics)

PreCalculus. Curriculum (637 topics additional topics) PreCalculus 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 needs.

More information

College Algebra with Corequisite Support: A Blended Approach

College Algebra with Corequisite Support: A Blended Approach College Algebra with Corequisite Support: A Blended Approach 978-1-63545-058-3 To learn more about all our offerings Visit Knewtonalta.com Source Author(s) (Text or Video) Title(s) Link (where applicable)

More information

College Algebra with Corequisite Support: Targeted Review

College Algebra with Corequisite Support: Targeted Review College Algebra with Corequisite Support: Targeted Review 978-1-63545-056-9 To learn more about all our offerings Visit Knewtonalta.com Source Author(s) (Text or Video) Title(s) Link (where applicable)

More information

CURRICULUM MAP. Course/Subject: Honors Math I Grade: 10 Teacher: Davis. Month: September (19 instructional days)

CURRICULUM MAP. Course/Subject: Honors Math I Grade: 10 Teacher: Davis. Month: September (19 instructional days) Month: September (19 instructional days) Numbers, Number Systems and Number Relationships Standard 2.1.11.A: Use operations (e.g., opposite, reciprocal, absolute value, raising to a power, finding roots,

More information

PRECALCULUS BISHOP KELLY HIGH SCHOOL BOISE, IDAHO. Prepared by Kristina L. Gazdik. March 2005

PRECALCULUS BISHOP KELLY HIGH SCHOOL BOISE, IDAHO. Prepared by Kristina L. Gazdik. March 2005 PRECALCULUS BISHOP KELLY HIGH SCHOOL BOISE, IDAHO Prepared by Kristina L. Gazdik March 2005 1 TABLE OF CONTENTS Course Description.3 Scope and Sequence 4 Content Outlines UNIT I: FUNCTIONS AND THEIR GRAPHS

More information

College Algebra & Trig w Apps

College Algebra & Trig w Apps WTCS Repository 10-804-197 College Algebra & Trig w Apps Course Outcome Summary Course Information Description Total Credits 5.00 This course covers those skills needed for success in Calculus and many

More information

Pre-Calculus Chapter 0. Solving Equations and Inequalities 0.1 Solving Equations with Absolute Value 0.2 Solving Quadratic Equations

Pre-Calculus Chapter 0. Solving Equations and Inequalities 0.1 Solving Equations with Absolute Value 0.2 Solving Quadratic Equations Pre-Calculus Chapter 0. Solving Equations and Inequalities 0.1 Solving Equations with Absolute Value 0.1.1 Solve Simple Equations Involving Absolute Value 0.2 Solving Quadratic Equations 0.2.1 Use the

More information

College Algebra with Corequisite Support: A Compressed Approach

College Algebra with Corequisite Support: A Compressed Approach College Algebra with Corequisite Support: A Compressed Approach 978-1-63545-059-0 To learn more about all our offerings Visit Knewton.com Source Author(s) (Text or Video) Title(s) Link (where applicable)

More information

Wellston City Schools Calculus Curriculum Calendar

Wellston City Schools Calculus Curriculum Calendar Wellston City Schools Calculus 2006-2007 Curriculum Calendar Grading Period 1:Week 1: Review 11 th grade standards Learn to represent functions using: *Words *Tables of values *Graphs *Formulas Present

More information

AP CALCULUS AB Study Guide for Midterm Exam 2017

AP CALCULUS AB Study Guide for Midterm Exam 2017 AP CALCULUS AB Study Guide for Midterm Exam 2017 CHAPTER 1: PRECALCULUS REVIEW 1.1 Real Numbers, Functions and Graphs - Write absolute value as a piece-wise function - Write and interpret open and closed

More information

WEST AFRICAN SENIOR SCHOOL CERTIFICATE EXAMINATION FURTHER MATHEMATICS/MATHEMATICS (ELECTIVE)

WEST AFRICAN SENIOR SCHOOL CERTIFICATE EXAMINATION FURTHER MATHEMATICS/MATHEMATICS (ELECTIVE) AIMS OF THE SYLLABUS The aims of the syllabus are to test candidates on: (iii) further conceptual and manipulative skills in Mathematics; an intermediate course of study which bridges the gap between Elementary

More information

Algebra II- Comprehensive/ Part A

Algebra II- Comprehensive/ Part A Algebra II- Comprehensive/ Part A COURSE DESCRIPTION: This course builds upon algebraic concepts covered in Algebra I and prepares students for advanced-level courses. Students extend their knowledge and

More information

CME Project, Algebra Correlated to: Michigan High School Content Expectations, Algebra 1

CME Project, Algebra Correlated to: Michigan High School Content Expectations, Algebra 1 STRAND 1: QUANTITATIVE LITERACY AND LOGIC STANDARD L1: REASONING ABOUT NUMBERS, SYSTEMS, AND QUANTITATIVE SITUATIONS Based on their knowledge of the properties of arithmetic, students understand and reason

More information

1 Functions and Graphs

1 Functions and Graphs 1 Functions and Graphs 1.1 Functions Cartesian Coordinate System A Cartesian or rectangular coordinate system is formed by the intersection of a horizontal real number line, usually called the x axis,

More information

Greenwich Public Schools Mathematics Curriculum Objectives. Calculus

Greenwich Public Schools Mathematics Curriculum Objectives. Calculus Mathematics Curriculum Objectives Calculus June 30, 2006 NUMERICAL AND PROPORTIONAL REASONING Quantitative relationships can be expressed numerically in multiple ways in order to make connections and simplify

More information

MAP 2302 MAP 4103 MAE 3920 MAE 4360 MAS 4301 MAS Introduction to Abstract Algebra I. Introduction to Abstract Algebra

MAP 2302 MAP 4103 MAE 3920 MAE 4360 MAS 4301 MAS Introduction to Abstract Algebra I. Introduction to Abstract Algebra B.S. In Mathematics Florida A&M University MAC 2311 MAD 2120 MAC 2312 MAE 1920 MAC 2313 STA 2023 MHF 4202 MAE 2920 MAS 3105 MAP 2302 MAP 4103 MAS 4301 MAE 3920 MAE 4360 MTG 4212 MAS 4203 FTCE Skills &

More information

College Algebra and Trigonometry

College Algebra and Trigonometry GLOBAL EDITION College Algebra and Trigonometry THIRD EDITION J. S. Ratti Marcus McWaters College Algebra and Trigonometry, Global Edition Table of Contents Cover Title Page Contents Preface Resources

More information

Alg Review/Eq & Ineq (50 topics, due on 01/19/2016)

Alg Review/Eq & Ineq (50 topics, due on 01/19/2016) Course Name: MAC 1140 Spring 16 Course Code: XQWHD-P4TU6 ALEKS Course: PreCalculus Instructor: Van De Car Course Dates: Begin: 01/11/2016 End: 05/01/2016 Course Content: 307 topics Textbook: Coburn: Precalculus,

More information

Identify the graph of a function, and obtain information from or about the graph of a function.

Identify the graph of a function, and obtain information from or about the graph of a function. PS 1 Graphs: Graph equations using rectangular coordinates and graphing utilities, find intercepts, discuss symmetry, graph key equations, solve equations using a graphing utility, work with lines and

More information

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK COURSE / SUBJECT A P C a l c u l u s ( A B ) KEY COURSE OBJECTIVES/ENDURING UNDERSTANDINGS OVERARCHING/ESSENTIAL SKILLS OR QUESTIONS Limits and Continuity Derivatives

More information

ESSENTIALS OF LEARNING. Math 7. Math A MATH B. Pre-Calculus. Math 12X. Visual Basic

ESSENTIALS OF LEARNING. Math 7. Math A MATH B. Pre-Calculus. Math 12X. Visual Basic Three Viillllage Centtrall Schooll Diisttriictt ESSENTIALS OF LEARNING MATHEMATICS Math 7 Math A MATH B Pre-Calculus Math 12X Visual Basic The mission of the Three Village Central School District, in concert

More information

Algebra 1 Standards Curriculum Map Bourbon County Schools. Days Unit/Topic Standards Activities Learning Targets ( I Can Statements) 1-19 Unit 1

Algebra 1 Standards Curriculum Map Bourbon County Schools. Days Unit/Topic Standards Activities Learning Targets ( I Can Statements) 1-19 Unit 1 Algebra 1 Standards Curriculum Map Bourbon County Schools Level: Grade and/or Course: Updated: e.g. = Example only Days Unit/Topic Standards Activities Learning Targets ( I 1-19 Unit 1 A.SSE.1 Interpret

More information

ema urworlc Allan G. Bluman Higher Education Professor Emeritus, Community College of Allegheny County Me Graw Hill

ema urworlc Allan G. Bluman Higher Education Professor Emeritus, Community College of Allegheny County Me Graw Hill ema in urworlc Allan G. Bluman Professor Emeritus, Community College of Allegheny County Me Graw Hill Higher Education Boston Burr Ridge, IL Dubuque, IA Madison, Wl New York San Francisco St. Louis Bangkok

More information

T a b l e o f C o n t e n t s

T a b l e o f C o n t e n t s T a b l e o f C o n t e n t s C O M P E T E N C Y 1 KNOWLEDGE OF ALGEBRA... 1 SKILL 1.1: Apply the properties of real numbers: closure, commutative, associative, distributive, transitive, identities, and

More information

MAT1300 Final Review. Pieter Hofstra. December 4, 2009

MAT1300 Final Review. Pieter Hofstra. December 4, 2009 December 4, 2009 Sections from the book to study (8th Edition) Chapter 0: 0.1: Real line and Order 0.2: Absolute Value and Distance 0.3: Exponents and Radicals 0.4: Factoring Polynomials (you may omit

More information

California Algebra 1

California Algebra 1 California Algebra 1 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

Index I-1. in one variable, solution set of, 474 solving by factoring, 473 cubic function definition, 394 graphs of, 394 x-intercepts on, 474

Index I-1. in one variable, solution set of, 474 solving by factoring, 473 cubic function definition, 394 graphs of, 394 x-intercepts on, 474 Index A Absolute value explanation of, 40, 81 82 of slope of lines, 453 addition applications involving, 43 associative law for, 506 508, 570 commutative law for, 238, 505 509, 570 English phrases for,

More information

Calculus first semester exam information and practice problems

Calculus first semester exam information and practice problems Calculus first semester exam information and practice problems As I ve been promising for the past year, the first semester exam in this course encompasses all three semesters of Math SL thus far. It is

More information

Pre-calculus 12 Curriculum Outcomes Framework (110 hours)

Pre-calculus 12 Curriculum Outcomes Framework (110 hours) Curriculum Outcomes Framework (110 hours) Trigonometry (T) (35 40 hours) General Curriculum Outcome: Students will be expected to develop trigonometric reasoning. T01 Students will be expected to T01.01

More information

Diploma Subject: Mathematical Studies Level: SL

Diploma Subject: Mathematical Studies Level: SL Diploma Subject: Mathematical Studies Level: SL Topic Content Year 1 Presumed Knowledge Number Sets, Measurement, Approximation, Rounding and Estimation, % Error, Scientific Notation. Number and Algebra

More information

Math Literacy. Curriculum (457 topics)

Math Literacy. Curriculum (457 topics) Math Literacy 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

Check boxes of Edited Copy of Sp Topics (was 261-pilot)

Check boxes of Edited Copy of Sp Topics (was 261-pilot) Check boxes of Edited Copy of 10023 Sp 11 253 Topics (was 261-pilot) Intermediate Algebra (2011), 3rd Ed. [open all close all] R-Review of Basic Algebraic Concepts Section R.2 Ordering integers Plotting

More information

Algebra II Learning Targets

Algebra II Learning Targets Chapter 0 Preparing for Advanced Algebra LT 0.1 Representing Functions Identify the domain and range of functions LT 0.2 FOIL Use the FOIL method to multiply binomials LT 0.3 Factoring Polynomials Use

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

ALGEBRA 2. Background Knowledge/Prior Skills Knows what operation properties hold for operations with matrices

ALGEBRA 2. Background Knowledge/Prior Skills Knows what operation properties hold for operations with matrices ALGEBRA 2 Numbers and Operations Standard: 1 Understands and applies concepts of numbers and operations Power 1: Understands numbers, ways of representing numbers, relationships among numbers, and number

More information

OKLAHOMA SUBJECT AREA TESTS (OSAT )

OKLAHOMA SUBJECT AREA TESTS (OSAT ) CERTIFICATION EXAMINATIONS FOR OKLAHOMA EDUCATORS (CEOE ) OKLAHOMA SUBJECT AREA TESTS (OSAT ) October 2005 Subarea Range of Competencies I. Mathematical Processes and Number Sense 01 04 II. Relations,

More information

Final Exam Study Guide

Final Exam Study Guide Final Exam Study Guide Final Exam Coverage: Sections 10.1-10.2, 10.4-10.5, 10.7, 11.2-11.4, 12.1-12.6, 13.1-13.2, 13.4-13.5, and 14.1 Sections/topics NOT on the exam: Sections 10.3 (Continuity, it definition

More information

Secondary 1 - Secondary 3 CCSS Vocabulary Word List Revised Vocabulary Word Sec 1 Sec 2 Sec 3 absolute value equation

Secondary 1 - Secondary 3 CCSS Vocabulary Word List Revised Vocabulary Word Sec 1 Sec 2 Sec 3 absolute value equation Vocabulary Word Sec 1 Sec 2 Sec 3 absolute value equation (optional) absolute value function absolute value inequality (optional) acute angle addition rule algebraic representation alternate exterior angles

More information

PETERS TOWNSHIP HIGH SCHOOL

PETERS TOWNSHIP HIGH SCHOOL PETERS TOWNSHIP HIGH SCHOOL COURSE SYLLABUS: ALG EBRA 2 HONORS Course Overview and Essential Skills This course is an in-depth study of the language, concepts, and techniques of Algebra that will prepare

More information

Liberal Arts Mathematics

Liberal Arts Mathematics Liberal Arts Mathematics 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

More information

Algebra 1 Mathematics: to Hoover City Schools

Algebra 1 Mathematics: to Hoover City Schools Jump to Scope and Sequence Map Units of Study Correlation of Standards Special Notes Scope and Sequence Map Conceptual Categories, Domains, Content Clusters, & Standard Numbers NUMBER AND QUANTITY (N)

More information

WA State Common Core Standards - Mathematics

WA State Common Core Standards - Mathematics Number & Quantity The Real Number System Extend the properties of exponents to rational exponents. 1. Explain how the definition of the meaning of rational exponents follows from extending the properties

More information

SESSION CLASS-XI SUBJECT : MATHEMATICS FIRST TERM

SESSION CLASS-XI SUBJECT : MATHEMATICS FIRST TERM TERMWISE SYLLABUS SESSION-2018-19 CLASS-XI SUBJECT : MATHEMATICS MONTH July, 2018 to September 2018 CONTENTS FIRST TERM Unit-1: Sets and Functions 1. Sets Sets and their representations. Empty set. Finite

More information

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK COURSE / SUBJECT A P C a l c u l u s ( B C ) KEY COURSE OBJECTIVES/ENDURING UNDERSTANDINGS OVERARCHING/ESSENTIAL SKILLS OR QUESTIONS Limits and Continuity Derivatives

More information

UNIVERSITY OF NORTH ALABAMA MA 110 FINITE MATHEMATICS

UNIVERSITY OF NORTH ALABAMA MA 110 FINITE MATHEMATICS MA 110 FINITE MATHEMATICS Course Description. This course is intended to give an overview of topics in finite mathematics together with their applications and is taken primarily by students who are not

More information

Mathematics Three Points

Mathematics Three Points Subject Pre- Mathematics Three Points and Statistics Probability Topics Unit 1 Basic operations, Fractions, Factors, Arithmetic Progression, Quadratic Equations, Reading Graphs, Profit and Loss Percentages,

More information

Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 13 days Essential Questions: Key Concepts: Key Vocabulary:

Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 13 days Essential Questions: Key Concepts: Key Vocabulary: Math Curriculum Map: Integrated Algebra II Unit: 1 Quarter: Time Frame: Review of Algebra 1 13 days Essential Questions: How does the order of operations help solve one- and two- step equations? How is

More information

Observations Homework Checkpoint quizzes Chapter assessments (Possibly Projects) Blocks of Algebra

Observations Homework Checkpoint quizzes Chapter assessments (Possibly Projects) Blocks of Algebra September The Building Blocks of Algebra Rates, Patterns and Problem Solving Variables and Expressions The Commutative and Associative Properties The Distributive Property Equivalent Expressions Seeing

More information

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF 2017 - DRAFT SYLLABUS Subject :Business Maths Class : XI Unit 1 : TOPIC Matrices and Determinants CONTENT Determinants - Minors; Cofactors; Evaluation

More information

Course Name - Strategic Math - Algebra 2

Course Name - Strategic Math - Algebra 2 1 of22 HPS Sem. 1 Sept. Algebraic Language Writing algebraic expressionsl1.2.1 Use mathematical symbols to MA.9-12.A-SSE.1.a represent quantitative relationships and 1. Interpret expressions that represent

More information