Summation Formulas. Math Review. Let N > 0, let A, B, and C be constants, and let f and g be any functions. Then: S1: factor out constant

Size: px
Start display at page:

Download "Summation Formulas. Math Review. Let N > 0, let A, B, and C be constants, and let f and g be any functions. Then: S1: factor out constant"

Transcription

1 Computer Science Dept Va Tech August McQuain WD Summation Formulas Let > 0, let A, B, and C e constants, and let f and g e any functions. Then: f C Cf ) ) S: factor out constant g f g f ) ) )) ) S: separate summed terms C C S3: sum of constant ) S4: sum of 6 ) ) S5: sum of squared 0 S6: sum of ^ ) S7: sum of ^-)

2 Logarithms Let e a real numer, > 0 and. Then, for any real numer > 0, the arithm of to ase is the power to which must e raised to yield. That is: ) y if and only if y For eample: 64) 6 ecause 6 64 /8) 3 ecause 3 /8 ) 0 ecause 0 If the ase is omitted, the standard convention in mathematics is that ase 0 is intended; in computer science the standard convention is that ase is intended. Computer Science Dept Va Tech August McQuain WD

3 Logarithms 3 Let a and e real numers, oth positive and neither equal to. Let > 0 and y > 0 e real numers. L: ) 0 L7: y) ) y) L: L3: L4: ) ) ) 0 for all 0 for all 0 L8: L9: y y ) y ) ) y) L5: L6: ) y ) y L0: ) a a ) ) Computer Science Dept Va Tech August McQuain WD

4 Limit of a Function Definition: 4 Let f) e a function with domain a, ) and let a < c <. The it of f) as approaches c is L if, for every positive real numer e, there is a positive real numer d such that whenever -c < d then f) L < e. The definition eing cumersome, the following theorems on its are useful. We assume f) is a function with domain as descried aove and that K is a constant. C: c K K c C: r r C3: c for all r 0 c c Computer Science Dept Va Tech August McQuain WD

5 Limit of a Function 5 Here assume f) and g) are functions with domain as descried aove and that K is a constant, and that oth the following its eist and are finite): c f ) A c g ) B Then: C4: c Kf ) K c f ) C5: C6: C7: c c c f ) g ) f ) g ) c c f )* g ) f )* g ) c c f ) / g ) f ) / g ) provided B 0 c c Computer Science Dept Va Tech August McQuain WD

6 Limit as Approaches Infinity Definition: 6 Let f) e a function with domain [0, ). The it of f) as approaches is L, where L is finite, if, for every positive real numer e, there is a positive real numer such that whenever > then f) L < e. The definition eing cumersome, the following theorems on its are useful. We assume f) is a function with domain [0, ) and that K is a constant. C8: K K 0 C9: C0: 0 for all r 0 r Computer Science Dept Va Tech August McQuain WD

7 Limit of a Rational Function 7 Given a rational function the last two rules are sufficient if a little algera is employed: Divide y highest power of from the denominator. Tae its term y term. Apply theorem C3. Computer Science Dept Va Tech August McQuain WD

8 Infinite Limits 8 In some cases, the it may e infinite. Mathematically, this means that the it does not eist. C: r for all r 0 C3: e C: Eample: Computer Science Dept Va Tech August McQuain WD

9 l'hôpital's Rule 9 In some cases, the reduction tric shown for rational functions does not apply: 7 5 ) 0 5?? In such cases, l'hôpital's Rule is often useful. If f) and g) are differentiale functions such that then: c f ) g ) c c f ) f ) g ) g ) c This also applies if the it is 0. Computer Science Dept Va Tech August McQuain WD

10 l'hôpital's Rule Eamples Applying l'hôpital's Rule: ) Another eample: 3 0 e 3 e 6 e 6 e 0 Recall that: f ) f ) D e e D f ) Computer Science Dept Va Tech August McQuain WD

11 Mathematical Induction Mathematical induction is a technique for proving that a statement is true for all integers in the range from 0 to, where 0 is typically 0 or. First or Wea) Principle of Mathematical Induction Let P) e a proposition regarding the integer, and let S e the set of all integers for which P) is true. If ) 0 is in S, and ) whenever is in S then + is also in S, then S contains all integers in the range [ 0, ). To apply the PMI, we must first estalish that a specific integer, 0, is in S estalishing the asis) and then we must estalish that if a aritrary integer, 0, is in S then its successor, +, is also in S. Computer Science Dept Va Tech August McQuain WD

12 Induction Eample Theorem: For all integers n, n +n is a multiple of. proof: Let S e the set of all integers for which n +n is a multiple of. If n =, then n +n =, which is oviously a multiple of. This estalishes the asis, that is in S. ow suppose that some integer is an element of S. Then + is a multiple of. We need to show that + is an element of S; in other words, we must show that +) ++) is a multiple of. Performing simple algera: +) ++) = + + ) + + ) = ow we now + is a multiple of, and the epression aove can e grouped to show: +) ++) = + ) + + ) = + ) + + ) The last epression is the sum of two multiples of, so it's also a multiple of. Therefore, + is an element of S. Therefore, y PMI, S contains all integers [, ). QED Computer Science Dept Va Tech August McQuain WD

13 Inadequacy of the First Form of Induction 3 Theorem: Every integer greater than 3 can e written as a sum of 's and 5's. That is, if > 3, then there are nonnegative integers and y such that = + 5y.) This is not easily) provale using the First Principle of Induction. The prolem is that the way to write + in terms of 's and 5's has little to do with the way is written in terms of 's and 5's. For eample, if we now that we can say that = + 5y + = + 5y + = + 5y ) = + 3) + 5y ) ut we have no reason to elieve that y is nonnegative. Suppose for eample that is 9.) Computer Science Dept Va Tech August McQuain WD

14 "Strong" Form of Induction 4 There is a second statement of induction, sometimes called the "strong" form, that is adequate to prove the result on the preceding slide: Second or Strong) Principle of Mathematical Induction Let P) e a proposition regarding the integer, and let S e the set of all integers for which P) is true. If ) 0 is in S, and ) whenever 0 through are in S then + is also in S, then S contains all integers in the range [ 0, ). Interestingly, the "strong" form of induction is ically equivalent to the "wea" form stated earlier; so in principle, anything that can e proved using the "strong" form can also e proved using the "wea" form. Computer Science Dept Va Tech August McQuain WD

15 Using the Second Form of Induction 5 Theorem: Every integer greater than 3 can e written as a sum of 's and 5's. proof: Let S e the set of all integers n > 3 for which n = + 5y for some nonnegative integers and y. If n = 4, then n = * + 5*0. If n = 5, then n = *0 + 5*. This estalishes the asis, that 4 and 5 are in S. ow suppose that all integers from 4 through are elements of S, where 5. We need to show that + is an element of S; in other words, we must show that + = r + 5s for some nonnegative integers r and s. ow + 6, so - 4. Therefore y our assumption, - = + 5y for some nonnegative integers and y. Then, simple algera yields that: + = - + = + 5y + = +) + 5y, whence + is an element of S. Therefore, y the Second PMI, S contains all integers [4, ). QED Computer Science Dept Va Tech August McQuain WD

16 Induction Eample Consider the sequences {a } and {d } : 6 a for 0 Then for all 0. a = d. proof: Let S = { 0 a = d }. d 3d d 0 0, d d for Trivial calculations show that a 0 = d 0 and a = d, so 0 and are in S. Suppose that there is some such that 0,,, are in S. In other words, assume that there is some such that a i = d i for all i from 0 to. ow, +, so from the definition of {d }and the inductive assumption we have: d 3d d 3 3 ) 3 ) Therefore + is in S, and so y the principle of induction, S = { 0}. QED Computer Science Dept Va Tech August McQuain WD

Logarithms. For example:

Logarithms. For example: Math Review Summation Formulas Let >, let A, B, and C e constants, and let f and g e any functions. Then: f C Cf ) ) S: factor out constant ± ± g f g f ) ) )) ) S: separate summed terms C C ) 6 ) ) Computer

More information

Let N > 0, let A, B, and C be constants, and let f and g be any functions. Then: S2: separate summed terms. S7: sum of k2^(k-1)

Let N > 0, let A, B, and C be constants, and let f and g be any functions. Then: S2: separate summed terms. S7: sum of k2^(k-1) Summation Formulas Let > 0, let A, B, and C e constants, and let f and g e any functions. Then: k Cf ( k) C k S: factor out constant f ( k) k ( f ( k) ± g( k)) k S: separate summed terms f ( k) ± k g(

More information

Outline. Limits as x

Outline. Limits as x MS: IT Mathematics Limits & Continuity Limits at Infinity John Carroll School of Mathematical Sciences Dublin City University Introduction So far, we have only considered its as c where c is some finite

More information

4. (6 points) Express the domain of the following function in interval notation:

4. (6 points) Express the domain of the following function in interval notation: Eam 1-A L. Ballou Name Math 131 Calculus I September 1, 016 NO Calculator Allowed BOX YOUR ANSWER! Show all work for full credit! 1. (4 points) Write an equation of a line with y-intercept 4 and -intercept

More information

Algebra I Notes Concept 00b: Review Properties of Integer Exponents

Algebra I Notes Concept 00b: Review Properties of Integer Exponents Algera I Notes Concept 00: Review Properties of Integer Eponents In Algera I, a review of properties of integer eponents may e required. Students egin their eploration of power under the Common Core in

More information

The Final Exam is comprehensive but identifying the topics covered by it should be simple.

The Final Exam is comprehensive but identifying the topics covered by it should be simple. Math 10 Final Eam Study Guide The Final Eam is comprehensive ut identifying the topics covered y it should e simple. Use the previous eams as your primary reviewing tool! This document is to help provide

More information

Algebra I Notes Unit Nine: Exponential Expressions

Algebra I Notes Unit Nine: Exponential Expressions Algera I Notes Unit Nine: Eponential Epressions Syllaus Ojectives: 7. The student will determine the value of eponential epressions using a variety of methods. 7. The student will simplify algeraic epressions

More information

Radical Expressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots exist?

Radical Expressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots exist? Topic 4 1 Radical Epressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots eist? 4 4 Definition: X is a square root of a if X² = a. 0 Symbolically,

More information

Polynomial Degree and Finite Differences

Polynomial Degree and Finite Differences CONDENSED LESSON 7.1 Polynomial Degree and Finite Differences In this lesson, you Learn the terminology associated with polynomials Use the finite differences method to determine the degree of a polynomial

More information

Upper Bounds for Stern s Diatomic Sequence and Related Sequences

Upper Bounds for Stern s Diatomic Sequence and Related Sequences Upper Bounds for Stern s Diatomic Sequence and Related Sequences Colin Defant Department of Mathematics University of Florida, U.S.A. cdefant@ufl.edu Sumitted: Jun 18, 01; Accepted: Oct, 016; Pulished:

More information

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions

UNIT 3. Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions UNIT 3 Rational Functions Limits at Infinity (Horizontal and Slant Asymptotes) Infinite Limits (Vertical Asymptotes) Graphing Rational Functions Recall From Unit Rational Functions f() is a rational function

More information

MATH 1010E University Mathematics Lecture Notes (week 8) Martin Li

MATH 1010E University Mathematics Lecture Notes (week 8) Martin Li MATH 1010E University Mathematics Lecture Notes (week 8) Martin Li 1 L Hospital s Rule Another useful application of mean value theorems is L Hospital s Rule. It helps us to evaluate its of indeterminate

More information

Appendix lecture 9: Extra terms.

Appendix lecture 9: Extra terms. Appendi lecture 9: Etra terms The Hyperolic method has een used to prove that d n = log + 2γ + O /2 n This can e used within the Convolution Method to prove Theorem There eists a constant C such that n

More information

Proof that 2 is irrational

Proof that 2 is irrational Proof that is irrational When we convert fractions into decimals, we notice two things. Either the decimals () terminate or they () repeat in a recognizale pattern. For example, 3 = 0.75 (decimal expansion

More information

Representation theory of SU(2), density operators, purification Michael Walter, University of Amsterdam

Representation theory of SU(2), density operators, purification Michael Walter, University of Amsterdam Symmetry and Quantum Information Feruary 6, 018 Representation theory of S(), density operators, purification Lecture 7 Michael Walter, niversity of Amsterdam Last week, we learned the asic concepts of

More information

UNIT 3. Recall From Unit 2 Rational Functions

UNIT 3. Recall From Unit 2 Rational Functions UNIT 3 Recall From Unit Rational Functions f() is a rational function if where p() and q() are and. Rational functions often approach for values of. Rational Functions are not graphs There various types

More information

Math 3450 Homework Solutions

Math 3450 Homework Solutions Math 3450 Homework Solutions I have decided to write up all the solutions to prolems NOT assigned from the textook first. There are three more sets to write up and I am doing those now. Once I get the

More information

Section 2.6 Limits at infinity and infinite limits 2 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I

Section 2.6 Limits at infinity and infinite limits 2 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I Section 2.6 Limits at infinity and infinite its 2 Lectures College of Science MATHS 0: Calculus I (University of Bahrain) Infinite Limits / 29 Finite its as ±. 2 Horizontal Asympotes. 3 Infinite its. 4

More information

Math 1314 Lesson 4 Limits

Math 1314 Lesson 4 Limits Math 1314 Lesson 4 Limits What is calculus? Calculus is the study of change, particularly, how things change over time. It gives us a framework for measuring change using some fairly simple models. In

More information

ab is shifted horizontally by h units. ab is shifted vertically by k units.

ab is shifted horizontally by h units. ab is shifted vertically by k units. Algera II Notes Unit Eight: Eponential and Logarithmic Functions Sllaus Ojective: 8. The student will graph logarithmic and eponential functions including ase e. Eponential Function: a, 0, Graph of an

More information

Success Center Math Tips

Success Center Math Tips . Asolte Vale Eqations mer of asolte vales 3 3= o soltion Isolate the asolte vale Other side negative? Rewrite the eqation with one asolte vale on each side Write two eqations withot asolte vales: In one,

More information

The Product and Quotient Rules

The Product and Quotient Rules The Product and Quotient Rules In this section, you will learn how to find the derivative of a product of functions and the derivative of a quotient of functions. A function that is the product of functions

More information

MATH 225: Foundations of Higher Matheamatics. Dr. Morton. 3.4: Proof by Cases

MATH 225: Foundations of Higher Matheamatics. Dr. Morton. 3.4: Proof by Cases MATH 225: Foundations of Higher Matheamatics Dr. Morton 3.4: Proof y Cases Chapter 3 handout page 12 prolem 21: Prove that for all real values of y, the following inequality holds: 7 2y + 2 2y 5 7. You

More information

Math Theory of Number Homework 1

Math Theory of Number Homework 1 Math 4050 Theory of Number Homework 1 Due Wednesday, 015-09-09, in class Do 5 of the following 7 problems. Please only attempt 5 because I will only grade 5. 1. Find all rational numbers and y satisfying

More information

Chapter 2. Limits and Continuity 2.6 Limits Involving Infinity; Asymptotes of Graphs

Chapter 2. Limits and Continuity 2.6 Limits Involving Infinity; Asymptotes of Graphs 2.6 Limits Involving Infinity; Asymptotes of Graphs Chapter 2. Limits and Continuity 2.6 Limits Involving Infinity; Asymptotes of Graphs Definition. Formal Definition of Limits at Infinity.. We say that

More information

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23 Chapter 3 Limit and Continuity Contents 3. Definition of Limit 3 3.2 Basic Limit Theorems 8 3.3 One sided Limit 4 3.4 Infinite Limit, Limit at infinity and Asymptotes 5 3.4. Infinite Limit and Vertical

More information

QUIZ ON CHAPTERS 1 AND 2 - SOLUTIONS REVIEW / LIMITS AND CONTINUITY; MATH 150 SPRING 2017 KUNIYUKI 105 POINTS TOTAL, BUT 100 POINTS = 100%

QUIZ ON CHAPTERS 1 AND 2 - SOLUTIONS REVIEW / LIMITS AND CONTINUITY; MATH 150 SPRING 2017 KUNIYUKI 105 POINTS TOTAL, BUT 100 POINTS = 100% QUIZ ON CHAPTERS AND 2 - SOLUTIONS REVIEW / LIMITS AND CONTINUITY; MATH 50 SPRING 207 KUNIYUKI 05 POINTS TOTAL, BUT 00 POINTS = 00% ) For a), b), and c) below, bo in the correct answer. (6 points total;

More information

PROBLEM SET 1 SOLUTIONS 1287 = , 403 = , 78 = 13 6.

PROBLEM SET 1 SOLUTIONS 1287 = , 403 = , 78 = 13 6. Math 7 Spring 06 PROBLEM SET SOLUTIONS. (a) ( pts) Use the Euclidean algorithm to find gcd(87, 0). Solution. The Euclidean algorithm is performed as follows: 87 = 0 + 78, 0 = 78 +, 78 = 6. Hence we have

More information

A population of 50 flies is expected to double every week, leading to a function of the x

A population of 50 flies is expected to double every week, leading to a function of the x 4 Setion 4.3 Logarithmi Funtions population of 50 flies is epeted to doule every week, leading to a funtion of the form f ( ) 50(), where represents the numer of weeks that have passed. When will this

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.4 Indeterminate Forms and L Hospital s Rule In this section, we will learn: How to evaluate functions whose values cannot be found at

More information

Conceptual Explanations: Logarithms

Conceptual Explanations: Logarithms Conceptual Eplanations: Logarithms Suppose you are a iologist investigating a population that doules every year. So if you start with 1 specimen, the population can e epressed as an eponential function:

More information

Review: Limits of Functions - 10/7/16

Review: Limits of Functions - 10/7/16 Review: Limits of Functions - 10/7/16 1 Right and Left Hand Limits Definition 1.0.1 We write lim a f() = L to mean that the function f() approaches L as approaches a from the left. We call this the left

More information

The first property listed above is an incredibly useful tool in divisibility problems. We ll prove that it holds below.

The first property listed above is an incredibly useful tool in divisibility problems. We ll prove that it holds below. 1 Divisiility Definition 1 We say an integer is divisile y a nonzero integer a denoted a - read as a divides if there is an integer n such that = an If no such n exists, we say is not divisile y a denoted

More information

Critical value of the total debt in view of the debts. durations

Critical value of the total debt in view of the debts. durations Critical value of the total det in view of the dets durations I.A. Molotov, N.A. Ryaova N.V.Pushov Institute of Terrestrial Magnetism, the Ionosphere and Radio Wave Propagation, Russian Academy of Sciences,

More information

Copyrighted by Gabriel Tang B.Ed., B.Sc. Page 111.

Copyrighted by Gabriel Tang B.Ed., B.Sc. Page 111. Algera Chapter : Polnomial and Rational Functions Chapter : Polnomial and Rational Functions - Polnomial Functions and Their Graphs Polnomial Functions: - a function that consists of a polnomial epression

More information

GEOMETRY FINAL CLAY SHONKWILER

GEOMETRY FINAL CLAY SHONKWILER GEOMETRY FINAL CLAY SHONKWILER 1 a: If M is non-orientale and p M, is M {p} orientale? Answer: No. Suppose M {p} is orientale, and let U α, x α e an atlas that gives an orientation on M {p}. Now, let V,

More information

SECTION 2.5: THE INDETERMINATE FORMS 0 0 AND

SECTION 2.5: THE INDETERMINATE FORMS 0 0 AND (Section 2.5: The Indeterminate Forms 0/0 and / ) 2.5. SECTION 2.5: THE INDETERMINATE FORMS 0 0 AND LEARNING OBJECTIVES Understand what it means for a Limit Form to be indeterminate. Recognize indeterminate

More information

Here is a general Factoring Strategy that you should use to factor polynomials. 1. Always factor out the GCF(Greatest Common Factor) first.

Here is a general Factoring Strategy that you should use to factor polynomials. 1. Always factor out the GCF(Greatest Common Factor) first. 1 Algera and Trigonometry Notes on Topics that YOU should KNOW from your prerequisite courses! Here is a general Factoring Strategy that you should use to factor polynomials. 1. Always factor out the GCF(Greatest

More information

Creating Rational Equations that have R ational Solutions. By Alan Roebuck Chaffey College

Creating Rational Equations that have R ational Solutions. By Alan Roebuck Chaffey College Creating Rational Equations that have R ational Solutions aversion Î /' y Alan Roeuck Chaffey College alanroeuck@chaffeyedu th Page )'! of Elementary and Intermediate Algera & edition y Tussy and Gustafson

More information

Partial Fraction Decompositions

Partial Fraction Decompositions Partial Fraction Rational Functions Partial Fraction Finding Partial Fractions Integrating Partial Fraction Eamples Rational Functions Definition Eample A function of the type P/Q, where both P and Q are

More information

ERASMUS UNIVERSITY ROTTERDAM Information concerning the Entrance examination Mathematics level 2 for International Business Administration (IBA)

ERASMUS UNIVERSITY ROTTERDAM Information concerning the Entrance examination Mathematics level 2 for International Business Administration (IBA) ERASMUS UNIVERSITY ROTTERDAM Information concerning the Entrance examination Mathematics level 2 for International Business Administration (IBA) General information Availale time: 2.5 hours (150 minutes).

More information

= 1 2 x (x 1) + 1 {x} (1 {x}). [t] dt = 1 x (x 1) + O (1), [t] dt = 1 2 x2 + O (x), (where the error is not now zero when x is an integer.

= 1 2 x (x 1) + 1 {x} (1 {x}). [t] dt = 1 x (x 1) + O (1), [t] dt = 1 2 x2 + O (x), (where the error is not now zero when x is an integer. Problem Sheet,. i) Draw the graphs for [] and {}. ii) Show that for α R, α+ α [t] dt = α and α+ α {t} dt =. Hint Split these integrals at the integer which must lie in any interval of length, such as [α,

More information

Properties of proper rational numbers

Properties of proper rational numbers arxiv:1109.6820v1 [math.gm] 29 Sep 2011 Properties of proper rational numers Konstantine Zelator Mathematics, Statistics, and Computer Science 212 Ben Franklin Hall Bloomsurg University of Pennsylvania

More information

Chapter 3.5: Rational Functions

Chapter 3.5: Rational Functions Chapter.5: Rational Functions A rational number is a ratio of two integers. A rational function is a quotient of two polynomials. All rational numbers are, therefore, rational functions as well. Let s

More information

Solutions to Homework 2

Solutions to Homework 2 Solutions to Homewor Due Tuesday, July 6,. Chapter. Problem solution. If the series for ln+z and ln z both converge, +z then we can find the series for ln z by term-by-term subtraction of the two series:

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.4 Indeterminate Forms and L Hospital s Rule In this section, we will learn: How to evaluate functions whose values cannot be found at

More information

EQ: What are limits, and how do we find them? Finite limits as x ± Horizontal Asymptote. Example Horizontal Asymptote

EQ: What are limits, and how do we find them? Finite limits as x ± Horizontal Asymptote. Example Horizontal Asymptote Finite limits as x ± The symbol for infinity ( ) does not represent a real number. We use to describe the behavior of a function when the values in its domain or range outgrow all finite bounds. For example,

More information

2. Properties of Functions

2. Properties of Functions 2. PROPERTIES OF FUNCTIONS 111 2. Properties of Funtions 2.1. Injetions, Surjetions, an Bijetions. Definition 2.1.1. Given f : A B 1. f is one-to-one (short han is 1 1) or injetive if preimages are unique.

More information

CURRICULUM TIDBITS FOR THE MATHEMATICS CLASSROOM

CURRICULUM TIDBITS FOR THE MATHEMATICS CLASSROOM TANTON S TAKE ON LOGARITHMS CURRICULUM TIDBITS FOR THE MATHEMATICS CLASSROOM APRIL 01 Try walking into an algera II class and writing on the oard, perhaps even in silence, the following: = Your turn! (

More information

Quivers. Virginia, Lonardo, Tiago and Eloy UNICAMP. 28 July 2006

Quivers. Virginia, Lonardo, Tiago and Eloy UNICAMP. 28 July 2006 Quivers Virginia, Lonardo, Tiago and Eloy UNICAMP 28 July 2006 1 Introduction This is our project Throughout this paper, k will indicate an algeraically closed field of characteristic 0 2 Quivers 21 asic

More information

Limits and Continuity

Limits and Continuity Limits and Continuity Philippe B. Laval Kennesaw State University January 2, 2005 Contents Abstract Notes and practice problems on its and continuity. Limits 2. Introduction... 2.2 Theory:... 2.2. GraphicalMethod...

More information

MATH section 3.1 Maximum and Minimum Values Page 1 of 7

MATH section 3.1 Maximum and Minimum Values Page 1 of 7 MATH section. Maimum and Minimum Values Page of 7 Definition : Let c be a number in the domain D of a function f. Then c ) is the Absolute maimum value of f on D if ) c f() for all in D. Absolute minimum

More information

f 0 ab a b: base f

f 0 ab a b: base f Precalculus Notes: Unit Eponential and Logarithmic Functions Sllaus Ojective: 9. The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential

More information

Lecture Notes for Math 1000

Lecture Notes for Math 1000 Lecture Notes for Math 1000 Dr. Xiang-Sheng Wang Memorial University of Newfoundland Office: HH-2016, Phone: 864-4321 Office hours: 13:00-15:00 Wednesday, 12:00-13:00 Friday Email: swang@mun.ca Course

More information

4.3 Division of Polynomials

4.3 Division of Polynomials 4.3 Division of Polynomials Learning Objectives Divide a polynomials by a monomial. Divide a polynomial by a binomial. Rewrite and graph rational functions. Introduction A rational epression is formed

More information

Problem Set 5 Solutions

Problem Set 5 Solutions Problem Set 5 Solutions Section 4.. Use mathematical induction to prove each of the following: a) For each natural number n with n, n > + n. Let P n) be the statement n > + n. The base case, P ), is true

More information

of multiplicity two. The sign of the polynomial is shown in the table below

of multiplicity two. The sign of the polynomial is shown in the table below 161 Precalculus 1 Review 5 Problem 1 Graph the polynomial function P( ) ( ) ( 1). Solution The polynomial is of degree 4 and therefore it is positive to the left of its smallest real root and to the right

More information

#A50 INTEGERS 14 (2014) ON RATS SEQUENCES IN GENERAL BASES

#A50 INTEGERS 14 (2014) ON RATS SEQUENCES IN GENERAL BASES #A50 INTEGERS 14 (014) ON RATS SEQUENCES IN GENERAL BASES Johann Thiel Dept. of Mathematics, New York City College of Technology, Brooklyn, New York jthiel@citytech.cuny.edu Received: 6/11/13, Revised:

More information

CALCULUS: THE ANSWERS MATH 150: CALCULUS WITH ANALYTIC GEOMETRY I. VERSION 1.3 KEN KUNIYUKI and LALEH HOWARD SAN DIEGO MESA COLLEGE

CALCULUS: THE ANSWERS MATH 150: CALCULUS WITH ANALYTIC GEOMETRY I. VERSION 1.3 KEN KUNIYUKI and LALEH HOWARD SAN DIEGO MESA COLLEGE CALCULUS: THE ANSWERS MATH 150: CALCULUS WITH ANALYTIC GEOMETRY I VERSION 1. KEN KUNIYUKI and LALEH HOWARD SAN DIEGO MESA COLLEGE 1) f 4 (Answers to Exercises for Chapter 1: Review) A.1.1. CHAPTER 1: REVIEW

More information

MCS 115 Exam 2 Solutions Apr 26, 2018

MCS 115 Exam 2 Solutions Apr 26, 2018 MCS 11 Exam Solutions Apr 6, 018 1 (10 pts) Suppose you have an infinitely large arrel and a pile of infinitely many ping-pong alls, laeled with the positive integers 1,,3,, much like in the ping-pong

More information

Intermediate Algebra Section 9.3 Logarithmic Functions

Intermediate Algebra Section 9.3 Logarithmic Functions Intermediate Algebra Section 9.3 Logarithmic Functions We have studied inverse functions, learning when they eist and how to find them. If we look at the graph of the eponential function, f ( ) = a, where

More information

Solutions to Problem Sheet for Week 6

Solutions to Problem Sheet for Week 6 THE UNIVERSITY OF SYDNEY SCHOOL OF MATHEMATICS AND STATISTICS Solutions to Problem Sheet for Week 6 MATH90: Differential Calculus (Advanced) Semester, 07 Web Page: sydney.edu.au/science/maths/u/ug/jm/math90/

More information

Indeterminate Forms and L Hospital s Rule

Indeterminate Forms and L Hospital s Rule APPLICATIONS OF DIFFERENTIATION Indeterminate Forms and L Hospital s Rule In this section, we will learn: How to evaluate functions whose values cannot be found at certain points. INDETERMINATE FORM TYPE

More information

Midterm 1 Solutions. Monday, 10/24/2011

Midterm 1 Solutions. Monday, 10/24/2011 Midterm Solutions Monday, 0/24/20. (0 points) Consider the function y = f() = e + 2e. (a) (2 points) What is the domain of f? Epress your answer using interval notation. Solution: We must eclude the possibility

More information

Math 31A Discussion Session Week 1 Notes January 5 and 7, 2016

Math 31A Discussion Session Week 1 Notes January 5 and 7, 2016 Math 31A Discussion Session Week 1 Notes January 5 and 7, 2016 This week we re discussing two important topics: its and continuity. We won t give a completely rigorous definition of either, but we ll develop

More information

Completing the Square

Completing the Square 3.5 Completing the Square Essential Question How can you complete the square for a quadratic epression? Using Algera Tiles to Complete the Square Work with a partner. Use algera tiles to complete the square

More information

Lecture 6 January 15, 2014

Lecture 6 January 15, 2014 Advanced Graph Algorithms Jan-Apr 2014 Lecture 6 January 15, 2014 Lecturer: Saket Sourah Scrie: Prafullkumar P Tale 1 Overview In the last lecture we defined simple tree decomposition and stated that for

More information

Climbing an Infinite Ladder

Climbing an Infinite Ladder Section 5.1 Section Summary Mathematical Induction Examples of Proof by Mathematical Induction Mistaken Proofs by Mathematical Induction Guidelines for Proofs by Mathematical Induction Climbing an Infinite

More information

Expansion formula using properties of dot product (analogous to FOIL in algebra): u v 2 u v u v u u 2u v v v u 2 2u v v 2

Expansion formula using properties of dot product (analogous to FOIL in algebra): u v 2 u v u v u u 2u v v v u 2 2u v v 2 Least squares: Mathematical theory Below we provide the "vector space" formulation, and solution, of the least squares prolem. While not strictly necessary until we ring in the machinery of matrix algera,

More information

Bell Quiz 2-3. Determine the end behavior of the graph using limit notation. Find a function with the given zeros , 2. 5 pts possible.

Bell Quiz 2-3. Determine the end behavior of the graph using limit notation. Find a function with the given zeros , 2. 5 pts possible. Bell Quiz 2-3 2 pts Determine the end behavior of the graph using limit notation. 5 2 1. g( ) = 8 + 13 7 3 pts Find a function with the given zeros. 4. -1, 2 5 pts possible Ch 2A Big Ideas 1 Questions

More information

Module 9: Further Numbers and Equations. Numbers and Indices. The aim of this lesson is to enable you to: work with rational and irrational numbers

Module 9: Further Numbers and Equations. Numbers and Indices. The aim of this lesson is to enable you to: work with rational and irrational numbers Module 9: Further Numers and Equations Lesson Aims The aim of this lesson is to enale you to: wor with rational and irrational numers wor with surds to rationalise the denominator when calculating interest,

More information

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet.

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet. Maclaurin Series Learning Outcomes After reading this theory sheet, you should recognise the difference between a function and its polynomial epansion (if it eists!) understand what is meant by a series

More information

TWO TO ONE IMAGES AND PFA

TWO TO ONE IMAGES AND PFA TWO TO ONE IMAGES AND PFA ALAN DOW Astract. We prove that all maps on N that are exactly two to one are trivial if PFA is assumed. 1. Introduction A map f : X K is precisely two to one if for each k K,

More information

Climbing an Infinite Ladder

Climbing an Infinite Ladder Section 5.1 Section Summary Mathematical Induction Examples of Proof by Mathematical Induction Mistaken Proofs by Mathematical Induction Guidelines for Proofs by Mathematical Induction Climbing an Infinite

More information

22. RADICALS. x add 5. multiply by 7

22. RADICALS. x add 5. multiply by 7 22. RADICALS doing something, then undoing it The concept of doing something and then undoing it is very important in mathematics. Here are some eamples: Take a number. Add 5 to it. How can you get back

More information

1. Revision Description Reflect and Review Teasers Answers Recall of Rational Numbers:

1. Revision Description Reflect and Review Teasers Answers Recall of Rational Numbers: 1. Revision Description Reflect Review Teasers Answers Recall of Rational Numbers: A rational number is of the form, where p q are integers q 0. Addition or subtraction of rational numbers is possible

More information

Section 3.3 Limits Involving Infinity - Asymptotes

Section 3.3 Limits Involving Infinity - Asymptotes 76 Section. Limits Involving Infinity - Asymptotes We begin our discussion with analyzing its as increases or decreases without bound. We will then eplore functions that have its at infinity. Let s consider

More information

1Number ONLINE PAGE PROOFS. systems: real and complex. 1.1 Kick off with CAS

1Number ONLINE PAGE PROOFS. systems: real and complex. 1.1 Kick off with CAS 1Numer systems: real and complex 1.1 Kick off with CAS 1. Review of set notation 1.3 Properties of surds 1. The set of complex numers 1.5 Multiplication and division of complex numers 1.6 Representing

More information

On Worley s theorem in Diophantine approximations

On Worley s theorem in Diophantine approximations Annales Mathematicae et Informaticae 35 (008) pp. 61 73 http://www.etf.hu/ami On Worley s theorem in Diophantine approximations Andrej Dujella a, Bernadin Irahimpašić a Department of Mathematics, University

More information

Adding and Subtracting Rational Expressions. Add and subtract rational expressions with the same denominator.

Adding and Subtracting Rational Expressions. Add and subtract rational expressions with the same denominator. Chapter 7 Section 7. Objectives Adding and Subtracting Rational Expressions 1 3 Add and subtract rational expressions with the same denominator. Find a least common denominator. Add and subtract rational

More information

we make slices perpendicular to the x-axis. If the slices are thin enough, they resemble x cylinders or discs. The formula for the x

we make slices perpendicular to the x-axis. If the slices are thin enough, they resemble x cylinders or discs. The formula for the x Math Learning Centre Solids of Revolution When we rotate a curve around a defined ais, the -D shape created is called a solid of revolution. In the same wa that we can find the area under a curve calculating

More information

Creating Good Equations for the Classroom: Rational, Logarithmic and Square Root aversion ""Î# 9Î#!"'

Creating Good Equations for the Classroom: Rational, Logarithmic and Square Root aversion Î# 9Î#!' Creating Good Equations for the Classroom: Rational, Logarithmic and Square Root aversion ""Î 9Î!"' Alan Roeuck Chaffey College alan.roeuck@chaffey.edu We're math teachers. We don't just solve equations,

More information

Discrete Mathematics. Spring 2017

Discrete Mathematics. Spring 2017 Discrete Mathematics Spring 2017 Previous Lecture Principle of Mathematical Induction Mathematical Induction: rule of inference Mathematical Induction: Conjecturing and Proving Climbing an Infinite Ladder

More information

Graphs and polynomials

Graphs and polynomials 5_6_56_MQVMM - _t Page Frida, Novemer 8, 5 :5 AM MQ Maths Methods / Final Pages / 8//5 Graphs and polnomials VCEcoverage Areas of stud Units & Functions and graphs Algera In this chapter A The inomial

More information

NOTES 5: APPLICATIONS OF DIFFERENTIATION

NOTES 5: APPLICATIONS OF DIFFERENTIATION NOTES 5: APPLICATIONS OF DIFFERENTIATION Name: Date: Period: Mrs. Nguyen s Initial: LESSON 5.1 EXTREMA ON AN INTERVAL Definition of Etrema Let f be defined on an interval I containing c. 1. f () c is the

More information

RED. Name: Math 290 Fall 2016 Sample Exam 3

RED. Name: Math 290 Fall 2016 Sample Exam 3 RED Name: Math 290 Fall 2016 Sample Exam 3 Note that the first 10 questions are true false. Mark A for true, B for false. Questions 11 through 20 are multiple choice. Mark the correct answer on your ule

More information

1 Caveats of Parallel Algorithms

1 Caveats of Parallel Algorithms CME 323: Distriuted Algorithms and Optimization, Spring 2015 http://stanford.edu/ reza/dao. Instructor: Reza Zadeh, Matroid and Stanford. Lecture 1, 9/26/2015. Scried y Suhas Suresha, Pin Pin, Andreas

More information

Continuous functions. Limits of non-rational functions. Squeeze Theorem. Calculator issues. Applications of limits

Continuous functions. Limits of non-rational functions. Squeeze Theorem. Calculator issues. Applications of limits Calculus Lia Vas Continuous functions. Limits of non-rational functions. Squeeze Theorem. Calculator issues. Applications of limits Continuous Functions. Recall that we referred to a function f() as a

More information

OBJECTIVE 4 EXPONENTIAL FORM SHAPE OF 5/19/2016. An exponential function is a function of the form. where b > 0 and b 1. Exponential & Log Functions

OBJECTIVE 4 EXPONENTIAL FORM SHAPE OF 5/19/2016. An exponential function is a function of the form. where b > 0 and b 1. Exponential & Log Functions OBJECTIVE 4 Eponential & Log Functions EXPONENTIAL FORM An eponential function is a function of the form where > 0 and. f ( ) SHAPE OF > increasing 0 < < decreasing PROPERTIES OF THE BASIC EXPONENTIAL

More information

Every equation implies at least two other equation. For example: The equation 2 3= implies 6 2 = 3 and 6 3= =6 6 3=2

Every equation implies at least two other equation. For example: The equation 2 3= implies 6 2 = 3 and 6 3= =6 6 3=2 Roert C. Maell, 0 INTRODUCTION TO LOGARITHMS Every equation implies at least two other equation. For eample: The equation = 6 implies 6 = and 6 =. =6 6 = 6 = The information in each equation is equivalent

More information

3.5 Solving Quadratic Equations by the

3.5 Solving Quadratic Equations by the www.ck1.org Chapter 3. Quadratic Equations and Quadratic Functions 3.5 Solving Quadratic Equations y the Quadratic Formula Learning ojectives Solve quadratic equations using the quadratic formula. Identify

More information

About the Gamma Function

About the Gamma Function About the Gamma Function Notes for Honors Calculus II, Originally Prepared in Spring 995 Basic Facts about the Gamma Function The Gamma function is defined by the improper integral Γ) = The integral is

More information

Recall that the expression x > 3 is not a proposition. Why?

Recall that the expression x > 3 is not a proposition. Why? Predicates and Quantifiers Predicates and Quantifiers 1 Recall that the expression x > 3 is not a proposition. Why? Notation: We will use the propositional function notation to denote the expression "

More information

ON THE COMPARISON OF BOUNDARY AND INTERIOR SUPPORT POINTS OF A RESPONSE SURFACE UNDER OPTIMALITY CRITERIA. Cross River State, Nigeria

ON THE COMPARISON OF BOUNDARY AND INTERIOR SUPPORT POINTS OF A RESPONSE SURFACE UNDER OPTIMALITY CRITERIA. Cross River State, Nigeria ON THE COMPARISON OF BOUNDARY AND INTERIOR SUPPORT POINTS OF A RESPONSE SURFACE UNDER OPTIMALITY CRITERIA Thomas Adidaume Uge and Stephen Seastian Akpan, Department Of Mathematics/Statistics And Computer

More information

Minimizing a convex separable exponential function subject to linear equality constraint and bounded variables

Minimizing a convex separable exponential function subject to linear equality constraint and bounded variables Minimizing a convex separale exponential function suect to linear equality constraint and ounded variales Stefan M. Stefanov Department of Mathematics Neofit Rilski South-Western University 2700 Blagoevgrad

More information

b. Create a graph that gives a more complete representation of f.

b. Create a graph that gives a more complete representation of f. or Use Onl in Pilot Program F 96 Chapter Limits 6 7. Steep secant lines a. Given the graph of f in the following figures, find the slope of the secant line that passes through, and h, f h in terms of h,

More information

On the Independence of the Formal System L *

On the Independence of the Formal System L * 6 International Journal of Fuzzy Systems, Vol. 4, No., June On the Independence of the Formal System L * Daowu Pei Astract The formal system L * of fuzzy propositional logic has een successfully applied

More information

MATH 1325 Business Calculus Guided Notes

MATH 1325 Business Calculus Guided Notes MATH 135 Business Calculus Guided Notes LSC North Harris By Isabella Fisher Section.1 Functions and Theirs Graphs A is a rule that assigns to each element in one and only one element in. Set A Set B Set

More information

Graphs and polynomials

Graphs and polynomials 1 1A The inomial theorem 1B Polnomials 1C Division of polnomials 1D Linear graphs 1E Quadratic graphs 1F Cuic graphs 1G Quartic graphs Graphs and polnomials AreAS of STud Graphs of polnomial functions

More information