Riemann Integration Theory

Size: px
Start display at page:

Download "Riemann Integration Theory"

Transcription

1 Riemann Integration Theory James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 3, 2017

2 Outline 1 Uniform Partition Riemann Sums 2 Refinements of Partitions 3 Defining the Riemann Integral 4 Fundamental Integral Estimates

3 Uniform Partition Riemann Sums To save typing, let s learn to use a Matlab function. In Matlab s file menu, choose create a new Matlab function which gives f u n c t i o n [ v a l u e 1, v a l u e 2,... ] = MyFunction ( arg1, arg2,... ) % s t u f f i n h e r e end [value1, value2,...] are returned values the function calculates that we want to save. (arg1, arg2,...) are things the function needs to do the calculations. They are called the arguments to the function. MyFunction is the name of the function. This function must be stored in the file MyFunction.m.

4 Uniform Partition Riemann Sums Our function returns the Riemann sum, RS, and use the arguments: our function f, the partition P and the Evaluation set E. Since only one value returned [RS] can be RS. f u n c t i o n RS = RiemannSum ( f, P, E ) % comments alway b e g i n w i t h a % matlab l i n e s h e r e end The name for the function RiemannSum must be used as the file name: i.e. we must use RiemannSum.m as the file name.

5 Uniform Partition Riemann Sums The Riemann sum function: 1 f u n c t i o n RS = RiemannSum ( f, P, E ) % f i n d Riemann sum dx = d i f f (P) ; RS = sum ( f ( E). dx ) ; [ s i z e P,m] = s i z e (P) ; %g e t s i z e o f P a r t i t i o n 6 c l f ; % c l e a r t h e o l d graph h o l d on % s e t h o l d to on f o r i = 1 : s i z e (P) 1 % graph r e c t a n g l e s % p l o t r e c t a n g l e code... end 11 % p l o t f u n c t i o n code... y = l i n s p a c e (P( 1 ),P( s i z e P ), 101) ; h o l d o f f ; end

6 Uniform Partition Riemann Sums Now to see graphically how the Riemann sums converge to a finite number, let s write a new function: Riemann sums using uniform partitions and midpoint evaluation sets. 1 f u n c t i o n RS = RiemannUniformSum ( f, a, b, n ) % s e t up a u n i f o r m p a r t i t i o n w i t h n+1 p o i n t s d e l t a x = ( b a ) /n ; P = [ a : d e l t a x : b ] ; % makes a row v e c t o r f o r i =1:n 6 s t a r t = a+( i 1) d e l t a x ; s t o p = a+i d e l t a x ; E ( i ) = 0. 5 ( s t a r t+s t o p ) ; end % send i n t r a n s p o s e o f P and E so we use column v e c t o r s 11 % b e c a u s e o r i g i n a l RiemannSum f u n c t i o n u s e s columns RS = RiemannSum ( f, P, E ) ; end

7 Uniform Partition Riemann Sums We can then generate a sequence of Riemann sums for different values of n. We generate a sequence of figures which converge to a fixed value. >> f x ) s i n ( 3 x ) ; >> RS = RiemannUniformSum ( f, 1,4, 10) ; >> RS= RiemannUniformSum ( f, 1,4, 20) ; >> RS = RiemannUniformSum ( f, 1,4, 30) ; >> RS= RiemannUniformSum ( f, 1,4, 40) ;

8 Uniform Partition Riemann Sums Figure: The Riemann sum with a uniform partition P 10 of [ 1, 4] for n = 10. The function is sin(3x) and the Riemann sum is

9 Uniform Partition Riemann Sums Figure: Riemann sum with a uniform partition P 20 of [ 1, 4] for n = 20. The function is sin(3x) and the Riemann sum is

10 Uniform Partition Riemann Sums Figure: Riemann sum with a uniform partition P 40 of [ 1, 4] for n = 40. The function is sin(3x) and the Riemann sum is

11 Uniform Partition Riemann Sums Figure: Riemann sum with a uniform partition P 80 of [ 1, 4] for n = 80. The function is sin(3x) and the Riemann sum is

12 Refinements of Partitions For each j = 1,..., n 1, we let x j = x j+1 x j. The collection of all finite partitions of [a, b] is denoted Π[a, b]. Definition The Refinement of a Partition: The partition π 1 = {y 0,..., y m } is said to be a refinement of the partition π 2 = {x 0,..., x n } if every partition point x j π 2 is also in π 1. If this is the case, then we write π 2 π 1, and we say that π 1 is finer than π 2 or π 2 is coarser than π 1. Definition Common Refinement: Given π 1, π 2 Π[a, b], there is a partition π 3 Π[a, b] which is formed by taking the union of π 1 and π 2 and using common points only once. We call this partition the common refinement of π 1 and π 2 and denote it by π 3 = π 1 π 2.

13 Refinements of Partitions The relation is a partial ordering of Π[a, b]. It is not a total ordering, since not all partitions are comparable. There is a coarsest partition, also called the trivial partition. It is given by π 0 = {a, b}. We may also consider uniform partitions of order k. Let h = (b a)/k. Then π = {x 0 = a, x 0 + h, x 0 + 2h,..., x k 1 = x 0 + (k 1)h, x k = b}. Theorem Refinements and Common Refinements If π 1, π 2 Π[a, b], then π 1 π 2 if and only if π 1 π 2 = π 2. Proof If π 1 π 2, then π 1 = {x 0,..., x p } {y 0,..., y q } = π 2. Thus, π 1 π 2 = π 2, and we have π 1 π 2 = π 2. Conversely, suppose π 1 π 2 = π 2. By definition, every point of π 1 is also a point of π 1 π 2 = π 2. So, π 1 π 2.

14 Defining the Riemann Integral We abuse notation somewhat by using the notation σ π to denote that the Evaluation set σ is chosen from the subintervals determined by the partition π. Definition We say f B[a, b] is Riemann Integrable on [a, b] if there exists a real number, I, such that for every ɛ > 0 there is a partition, π 0 Π[a, b] such that S(f, π, σ) I < ɛ for any refinement, π, of π 0 and any evaluation set, σ π. We denote this value, I, by I RI (f ; a, b)

15 Defining the Riemann Integral We denote the set of Riemann integrable functions on [a, b] by RI [a, b]. Also, it is readily seen that the number RI (f ; a, b) in the definition above, when it exists, is unique. So we can speak of Riemann Integral of a function, f. We also have the following conventions. 1 RI (f ; a, b) = RI (f ; b, a) 2 RI (f ; a, a) = 0 3 f is called the integrand. Theorem RI [a, b] is a vector space over R and the mapping I R : RI [a, b] R defined by I R (f ) = RI (f ; a, b) is a linear mapping.

16 Defining the Riemann Integral Proof Let f 1, f 2 RI [a, b], and let α, β R. For any π Π[a, b] and σ π, we have S(αf 1 + βf 2, π, σ) = π (αf 1 + βf 2 )(s j ) x j = α π f 1 (s j ) x j + β π f 2 (s j ) x j = αs(f 1, π, σ) + βs(f 2, π, σ). Since f 1 is Riemann integrable, given ɛ > 0, there is a real number I 1 = RI (f 1, a, b) and a partition π 1 Π[a, b] such that S(f 1, π, σ) I 1 < ɛ 2( α +1) ( ) for all refinements π of π 1 and all σ π.

17 Defining the Riemann Integral Proof Likewise, since f 2 is Riemann integrable, there is a real number I 2 = RE(f 2 ; a, b) and a partition π 2 Π[a, b] such that S(f 2, π, σ) I 2 < ɛ 2( β +1) ( ) for all refinements π of π 2 and all σ π. Let π 0 = π 1 π 2. Then π 0 is a refinement of both π 1 and π 2. So, for any refinement, π, of π 0, and any σ π, we have Equation and Equation are valid. Hence, S(f 1, π, σ) I 1 < S(f 2, π, σ) I 2 < ɛ 2( α +1) ɛ 2( β +1).

18 Defining the Riemann Integral Proof Thus, for any refinement π of π 0 and any σ π, it follows that S(αf 1 + βf 2, π, σ) (αi 1 + βi 2 ) = αs(f 1, π, σ) + βs(f 2, π, σ) αi 1 βi 2 α S(f 1, π, σ) I 1 + β S(f 2, π, σ) I 2 ɛ < α 2( α +1) + β ɛ 2( β +1) < ɛ. This shows that αf 1 + βf 2 is Riemann integrable and that the value of the integral RI (αf 1 + βf 2 ; a, b) is given by αri (f 1 ; a, b) + βri (f 2 ; a, b). It then follows immediately that I R is a linear mapping.

19 Fundamental Integral Estimates Theorem Let f RI [a, b]. Let m = inf a x b f (x) and let M = sup a x b f (x). Then m(b a) RI (f ; a, b) M(b a). Proof If π Π[a, b], then for all σ π, we see that m x j π π f (s j ) x j M x j. π

20 Fundamental Integral Estimates Proof But π x j = b a, so m(b a) π f (s j ) x j M(b a), or m(b a) S(f, π, σ) M(b a), for any partition π and any σ π. Now, let ɛ > 0 be given. Then there exist π 0 Π[a, b] such that for any refinement, π of π 0 and any σ π, RI (f ; a, b) ɛ < S(f, π, σ) < RI (f ; a, b) + ɛ. Hence, for any such refinement, π, and any σ π, we have m(b a) S(f, π, σ) < RI (f ; a, b) + ɛ

21 Fundamental Integral Estimates Proof and M(b a) S(f, π, σ) > RI (f ; a, b) ɛ. Since ɛ > 0 is arbitrary, it follows that m(b a) RI (f ; a, b) M(b a). Theorem The Riemann integral is order preserving. That is, if f, f 1, f 2 RI [a, b], then (i) (ii) f 0 RI (f ; a, b) 0; f 1 f 2 RI (f 1 ; a, b) RI (f 2 ; a, b).

22 Fundamental Integral Estimates Proof If f 0 on [a, b], then inf x f (x) = m 0. Hence, by our fundamental estimates results for integration, we have b This proves the first assertion. a f (x)dx m(b a) 0. To prove (ii), let f = f 2 f 1. Then f 0, and the second result follows from the first.

23 Fundamental Integral Estimates Homework 10 For the given function f, interval [a, b] and choice of n, you ll calculate the corresponding uniform partition Riemann sum using the functions RiemannSum in file RiemannSum.m and RiemannUniformSum in file RiemannUniformSum.m. You can download these functions as files from the class web site. Save them in your personal class directory. Create a new word document in single space with matlab fragments in bold font. The document starts with your name, MATH 4540, Section, HW number and the date.

24 Fundamental Integral Estimates Homework 10 Continued Create a new word document for this homework. Do the document in single space. Do matlab fragments in bold font. The document starts with your name, MATH 4540, Section Number, Date and Homework number. For each value of n, do a save as and save the figure with a filename like HW#Problem#a[ ].png where [ ] is where you put the number of the graph. Something like HW10a.png, HW#Problem#b.png etc. Insert this picture into the doc resizing as needed to make it look good. Explain in the doc what the picture shows.

25 Fundamental Integral Estimates Homework 10 Continued Something like this: Jim Peterson MATH 4540, Section Number today s date and HW Number, Problem 1: Let f (t) = sin(5t) on the interval [ 1, 4] and generate the uniform Riemann sum approximations for n = 10, 20, 40 and 80. % add e x p l a n a t i o n h e r e >> f x ) s i n ( 5 x ) ; % add e x p l a n a t i o n h e r e >> RS = RiemannUniformSum ( f, 1,4,10) % add e x p l a n a t i o n h e r e >> RS = RiemannUniformSum ( f, 1,4,20) % add e x p l a n a t i o n h e r e >> RS = RiemannUniformSum ( f, 1,4,40) % add e x p l a n a t i o n h e r e >> RS = RiemannUniformSum ( f, 1,4,80)

26 Fundamental Integral Estimates Homework 10 Continued Three are MatLab uniform partition problems like discussed above and the others are theory based Let f (t) = t 2 2t + 3 on the interval [ 2, 3] with n = 8, 16, 32 and Let f (t) = sin(2t) on the interval [ 1, 5] with n = 10, 40, 60 and Let f (t) = t 2 + 8t + 5 on the interval [ 2, 3] with n = 4, 12, 30 and Prove that the relation is a partial ordering of Π[a, b].

Integration by Parts Logarithms and More Riemann Sums!

Integration by Parts Logarithms and More Riemann Sums! Integration by Parts Logarithms and More Riemann Sums! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 16, 2013 Outline 1 IbyP with

More information

Lecture 5b: Starting Matlab

Lecture 5b: Starting Matlab Lecture 5b: Starting Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 7, 2013 Outline 1 Resources 2 Starting Matlab 3 Homework

More information

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Riemann Integration. James K. Peterson. February 2, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline 1 Riemann Sums 2 Riemann Sums In MatLab 3 Graphing

More information

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums

Riemann Integration. Outline. James K. Peterson. February 2, Riemann Sums. Riemann Sums In MatLab. Graphing Riemann Sums Riemann Integration James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 2, 2017 Outline Riemann Sums Riemann Sums In MatLab Graphing

More information

An Introduction to Matlab

An Introduction to Matlab An Introduction to Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 25, 2013 Outline Starting Matlab Matlab Vectors and Functions

More information

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab

Riemann Sums. Outline. James K. Peterson. September 15, Riemann Sums. Riemann Sums In MatLab Riemann Sums James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 15, 2013 Outline Riemann Sums Riemann Sums In MatLab Abstract This

More information

The Existence of the Riemann Integral

The Existence of the Riemann Integral The Existence of the Riemann Integral James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 18, 2018 Outline The Darboux Integral Upper

More information

Mathematical Induction Again

Mathematical Induction Again Mathematical Induction Again James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 12, 2017 Outline Mathematical Induction Simple POMI Examples

More information

Mathematical Induction Again

Mathematical Induction Again Mathematical Induction Again James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 2, 207 Outline Mathematical Induction 2 Simple POMI Examples

More information

Integration and Differentiation Limit Interchange Theorems

Integration and Differentiation Limit Interchange Theorems Integration and Differentiation Limit Interchange Theorems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 11, 2018 Outline 1 A More

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 203 Outline

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline 1 Example Let (x n ) be the sequence

More information

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories

Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories Linear Systems of ODE: Nullclines, Eigenvector lines and trajectories James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 2013 Outline

More information

Upper and Lower Bounds

Upper and Lower Bounds James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University August 30, 2017 Outline 1 2 s 3 Basic Results 4 Homework Let S be a set of real numbers. We

More information

Uniform Convergence Examples

Uniform Convergence Examples Uniform Convergence Examples James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 13, 2017 Outline More Uniform Convergence Examples Example

More information

Proofs Not Based On POMI

Proofs Not Based On POMI s Not Based On POMI James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 1, 018 Outline Non POMI Based s Some Contradiction s Triangle

More information

Solving systems of ODEs with Matlab

Solving systems of ODEs with Matlab Solving systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 20, 2013 Outline 1 Systems of ODEs 2 Setting Up

More information

Proofs Not Based On POMI

Proofs Not Based On POMI s Not Based On POMI James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 12, 2018 Outline 1 Non POMI Based s 2 Some Contradiction s 3

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline 1 Domains of Continuous Functions 2 The

More information

Dirchlet s Function and Limit and Continuity Arguments

Dirchlet s Function and Limit and Continuity Arguments Dirchlet s Function and Limit and Continuity Arguments James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 23, 2018 Outline 1 Dirichlet

More information

MAT137 - Term 2, Week 2

MAT137 - Term 2, Week 2 MAT137 - Term 2, Week 2 This lecture will assume you have watched all of the videos on the definition of the integral (but will remind you about some things). Today we re talking about: More on the definition

More information

Project One: C Bump functions

Project One: C Bump functions Project One: C Bump functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline 1 2 The Project Let s recall what the

More information

Integration and Differentiation Limit Interchange Theorems

Integration and Differentiation Limit Interchange Theorems Integration and Differentiation Limit Interchange Theorems James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 11, 2018 Outline A More General

More information

Consequences of Continuity

Consequences of Continuity Consequences of Continuity James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 4, 2017 Outline Domains of Continuous Functions The Intermediate

More information

MAT137 - Term 2, Week 4

MAT137 - Term 2, Week 4 MAT137 - Term 2, Week 4 Reminders: Your Problem Set 6 is due tomorrow at 3pm. Test 3 is next Friday, February 3, at 4pm. See the course website for details. Today we will: Talk more about substitution.

More information

Antiderivatives! Outline. James K. Peterson. January 28, Antiderivatives. Simple Fractional Power Antiderivatives

Antiderivatives! Outline. James K. Peterson. January 28, Antiderivatives. Simple Fractional Power Antiderivatives Antiderivatives! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline Antiderivatives Simple Fractional Power Antiderivatives

More information

Mathematical Induction

Mathematical Induction Mathematical Induction James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 12, 2017 Outline Introduction to the Class Mathematical Induction

More information

Antiderivatives! James K. Peterson. January 28, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Antiderivatives! James K. Peterson. January 28, Department of Biological Sciences and Department of Mathematical Sciences Clemson University ! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline 1 2 Simple Fractional Power Abstract This lecture is going to talk

More information

FIRST YEAR CALCULUS W W L CHEN

FIRST YEAR CALCULUS W W L CHEN FIRST YER CLCULUS W W L CHEN c W W L Chen, 994, 28. This chapter is available free to all individuals, on the understanding that it is not to be used for financial gain, and may be downloaded and/or photocopied,

More information

Hölder s and Minkowski s Inequality

Hölder s and Minkowski s Inequality Hölder s and Minkowski s Inequality James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 1, 218 Outline Conjugate Exponents Hölder s

More information

Chapter 5 - Integration

Chapter 5 - Integration Chapter 5 - Integration 5.1 Approximating the Area under a Curve 5.2 Definite Integrals 5.3 Fundamental Theorem of Calculus 5.4 Working with Integrals 5.5 Substitution Rule for Integrals 1 Q. Is the area

More information

Practice Exam 2 (Solutions)

Practice Exam 2 (Solutions) Math 5, Fall 7 Practice Exam (Solutions). Using the points f(x), f(x h) and f(x + h) we want to derive an approximation f (x) a f(x) + a f(x h) + a f(x + h). (a) Write the linear system that you must solve

More information

Riemann Integrals and the Fundamental Theorem of Calculus

Riemann Integrals and the Fundamental Theorem of Calculus Riemnn Integrls nd the Fundmentl Theorem of Clculus Jmes K. Peterson Deprtment of Biologicl Sciences nd Deprtment of Mthemticl Sciences Clemson University September 16, 2013 Outline Grphing Riemnn Sums

More information

MATH 1271 Monday, 21 November 2018

MATH 1271 Monday, 21 November 2018 MATH 1271 Monday, 21 November 218 Today: Section 5.4 - Indefinite Integrals and the Theorem Homework: 5-17 odd, 21-45 odd, 51-63 odd, 67, 71 1/13 Def Total displacement is the integral of the velocity

More information

Extreme Values and Positive/ Negative Definite Matrix Conditions

Extreme Values and Positive/ Negative Definite Matrix Conditions Extreme Values and Positive/ Negative Definite Matrix Conditions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 016 Outline 1

More information

Day 2 Notes: Riemann Sums In calculus, the result of f ( x)

Day 2 Notes: Riemann Sums In calculus, the result of f ( x) AP Calculus Unit 6 Basic Integration & Applications Day 2 Notes: Riemann Sums In calculus, the result of f ( x) dx is a function that represents the anti-derivative of the function f(x). This is also sometimes

More information

General Power Series

General Power Series General Power Series James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 29, 2018 Outline Power Series Consequences With all these preliminaries

More information

Cable Convergence. James K. Peterson. May 7, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Cable Convergence. James K. Peterson. May 7, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Cable Convergence James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University May 7, 2018 Outline 1 Fourier Series Convergence Redux 2 Fourier Series

More information

Dirchlet s Function and Limit and Continuity Arguments

Dirchlet s Function and Limit and Continuity Arguments Dirchlet s Function and Limit and Continuity Arguments James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 2, 2018 Outline Dirichlet

More information

Math 564 Homework 1. Solutions.

Math 564 Homework 1. Solutions. Math 564 Homework 1. Solutions. Problem 1. Prove Proposition 0.2.2. A guide to this problem: start with the open set S = (a, b), for example. First assume that a >, and show that the number a has the properties

More information

Elementary Matrices. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics

Elementary Matrices. MATH 322, Linear Algebra I. J. Robert Buchanan. Spring Department of Mathematics Elementary Matrices MATH 322, Linear Algebra I J. Robert Buchanan Department of Mathematics Spring 2015 Outline Today s discussion will focus on: elementary matrices and their properties, using elementary

More information

Differentiating Series of Functions

Differentiating Series of Functions Differentiating Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 30, 017 Outline 1 Differentiating Series Differentiating

More information

Convergence of Sequences

Convergence of Sequences Convergence of Sequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 12, 2018 Outline Convergence of Sequences Definition Let

More information

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Taylor Polynomials. James K. Peterson. Department of Biological Sciences and Department of Mathematical Sciences Clemson University James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 24, 2013 Outline 1 First Order Approximation s Second Order Approximations 2 Approximation

More information

The Method of Undetermined Coefficients.

The Method of Undetermined Coefficients. The Method of Undetermined Coefficients. James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University May 24, 2017 Outline 1 Annihilators 2 Finding The

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 Geometric Series

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April 9, 2018 Outline 1 Extremal Values 2

More information

The First Derivative and Second Derivative Test

The First Derivative and Second Derivative Test The First Derivative and Second Derivative Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 8, 2017 Outline Extremal Values The

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2017 Outline Geometric Series The

More information

6.2 Deeper Properties of Continuous Functions

6.2 Deeper Properties of Continuous Functions 6.2. DEEPER PROPERTIES OF CONTINUOUS FUNCTIONS 69 6.2 Deeper Properties of Continuous Functions 6.2. Intermediate Value Theorem and Consequences When one studies a function, one is usually interested in

More information

Convergence of Sequences

Convergence of Sequences James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 2 Homework Definition Let (a n ) n k be a sequence of real numbers.

More information

Relationship Between Integration and Differentiation

Relationship Between Integration and Differentiation Relationship Between Integration and Differentiation Fundamental Theorem of Calculus Philippe B. Laval KSU Today Philippe B. Laval (KSU) FTC Today 1 / 16 Introduction In the previous sections we defined

More information

Math 111 lecture for Friday, Week 10

Math 111 lecture for Friday, Week 10 Math lecture for Friday, Week Finding antiderivatives mean reversing the operation of taking derivatives. Today we ll consider reversing the chain rule and the product rule. Substitution technique. Recall

More information

Newton s Cooling Model in Matlab and the Cooling Project!

Newton s Cooling Model in Matlab and the Cooling Project! Newton s Cooling Model in Matlab and the Cooling Project! James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 10, 2014 Outline Your Newton

More information

Fourier Sin and Cos Series and Least Squares Convergence

Fourier Sin and Cos Series and Least Squares Convergence Fourier and east Squares Convergence James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University May 7, 28 Outline et s look at the original Fourier sin

More information

Numerical Integration

Numerical Integration Chapter 1 Numerical Integration In this chapter we examine a few basic numerical techniques to approximate a definite integral. You may recall some of this from Calculus I where we discussed the left,

More information

MA 137 Calculus 1 with Life Science Applications. (Section 6.1)

MA 137 Calculus 1 with Life Science Applications. (Section 6.1) MA 137 Calculus 1 with Life Science Applications (Section 6.1) Alberto Corso alberto.corso@uky.edu Department of Mathematics University of Kentucky December 2, 2015 1/17 Sigma (Σ) Notation In approximating

More information

The Limit Inferior and Limit Superior of a Sequence

The Limit Inferior and Limit Superior of a Sequence The Limit Inferior and Limit Superior of a Sequence James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 13, 2018 Outline The Limit Inferior

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Matrices and Vectors

Matrices and Vectors Matrices and Vectors James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 11, 2013 Outline 1 Matrices and Vectors 2 Vector Details 3 Matrix

More information

QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve

QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve C C Moxley Samford University Brock School of Business Substitution Rule The following rules arise from the chain rule

More information

Convergence of Fourier Series

Convergence of Fourier Series MATH 454: Analysis Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University April, 8 MATH 454: Analysis Two Outline The Cos Family MATH 454: Analysis

More information

5.5 Deeper Properties of Continuous Functions

5.5 Deeper Properties of Continuous Functions 5.5. DEEPER PROPERTIES OF CONTINUOUS FUNCTIONS 195 5.5 Deeper Properties of Continuous Functions 5.5.1 Intermediate Value Theorem and Consequences When one studies a function, one is usually interested

More information

Derivatives and the Product Rule

Derivatives and the Product Rule Derivatives and the Product Rule James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University January 28, 2014 Outline 1 Differentiability 2 Simple Derivatives

More information

Bolzano Weierstrass Theorems I

Bolzano Weierstrass Theorems I Bolzano Weierstrass Theorems I James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 8, 2017 Outline The Bolzano Weierstrass Theorem Extensions

More information

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions

Complex Numbers. Outline. James K. Peterson. September 19, Complex Numbers. Complex Number Calculations. Complex Functions Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline Complex Numbers Complex Number Calculations Complex

More information

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Complex Numbers. James K. Peterson. September 19, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Complex Numbers James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 19, 2013 Outline 1 Complex Numbers 2 Complex Number Calculations

More information

Regression and Covariance

Regression and Covariance Regression and Covariance James K. Peterson Department of Biological ciences and Department of Mathematical ciences Clemson University April 16, 2014 Outline A Review of Regression Regression and Covariance

More information

Solutions to Homework 1

Solutions to Homework 1 Solutions to Homework 1 1. Let f(x) = x 2, a = 1, b = 2, and let x = a = 1, x 1 = 1.1, x 2 = 1.2, x 3 = 1.4, x 4 = b = 2. Let P = (x,..., x 4 ), so that P is a partition of the interval [1, 2]. List the

More information

Uniform Convergence and Series of Functions

Uniform Convergence and Series of Functions Uniform Convergence and Series of Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 7, 017 Outline Uniform Convergence Tests

More information

INTEGRATION: AREAS AND RIEMANN SUMS MR. VELAZQUEZ AP CALCULUS

INTEGRATION: AREAS AND RIEMANN SUMS MR. VELAZQUEZ AP CALCULUS INTEGRATION: AREAS AND RIEMANN SUMS MR. VELAZQUEZ AP CALCULUS APPROXIMATING AREA For today s lesson, we will be using different approaches to the area problem. The area problem is to definite integrals

More information

Getting Started With The Predator - Prey Model: Nullclines

Getting Started With The Predator - Prey Model: Nullclines Getting Started With The Predator - Prey Model: Nullclines James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 28, 2013 Outline The Predator

More information

Lower semicontinuous and Convex Functions

Lower semicontinuous and Convex Functions Lower semicontinuous and Convex Functions James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 6, 2017 Outline Lower Semicontinuous Functions

More information

Math Calculus I

Math Calculus I Math 165 - Calculus I Christian Roettger 382 Carver Hall Mathematics Department Iowa State University www.iastate.edu/~roettger November 13, 2011 4.1 Introduction to Area Sigma Notation 4.2 The Definite

More information

Mathematical Methods for Physics and Engineering

Mathematical Methods for Physics and Engineering Mathematical Methods for Physics and Engineering Lecture notes for PDEs Sergei V. Shabanov Department of Mathematics, University of Florida, Gainesville, FL 32611 USA CHAPTER 1 The integration theory

More information

Hölder s and Minkowski s Inequality

Hölder s and Minkowski s Inequality Hölder s and Minkowski s Inequality James K. Peterson Deartment of Biological Sciences and Deartment of Mathematical Sciences Clemson University Setember 10, 2018 Outline 1 Conjugate Exonents 2 Hölder

More information

Integration. Darboux Sums. Philippe B. Laval. Today KSU. Philippe B. Laval (KSU) Darboux Sums Today 1 / 13

Integration. Darboux Sums. Philippe B. Laval. Today KSU. Philippe B. Laval (KSU) Darboux Sums Today 1 / 13 Integration Darboux Sums Philippe B. Laval KSU Today Philippe B. Laval (KSU) Darboux Sums Today 1 / 13 Introduction The modern approach to integration is due to Cauchy. He was the first to construct a

More information

F (x) = P [X x[. DF1 F is nondecreasing. DF2 F is right-continuous

F (x) = P [X x[. DF1 F is nondecreasing. DF2 F is right-continuous 7: /4/ TOPIC Distribution functions their inverses This section develops properties of probability distribution functions their inverses Two main topics are the so-called probability integral transformation

More information

MA2501 Numerical Methods Spring 2015

MA2501 Numerical Methods Spring 2015 Norwegian University of Science and Technology Department of Mathematics MA5 Numerical Methods Spring 5 Solutions to exercise set 9 Find approximate values of the following integrals using the adaptive

More information

Defining Exponential Functions and Exponential Derivatives and Integrals

Defining Exponential Functions and Exponential Derivatives and Integrals Defining Exponential Functions and Exponential Derivatives and Integrals James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University February 19, 2014

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

Chapter 1: Preliminaries and Error Analysis

Chapter 1: Preliminaries and Error Analysis Chapter 1: Error Analysis Peter W. White white@tarleton.edu Department of Tarleton State University Summer 2015 / Numerical Analysis Overview We All Remember Calculus Derivatives: limit definition, sum

More information

LEC1: Instance-based classifiers

LEC1: Instance-based classifiers LEC1: Instance-based classifiers Dr. Guangliang Chen February 2, 2016 Outline Having data ready knn kmeans Summary Downloading data Save all the scripts (from course webpage) and raw files (from LeCun

More information

FINAL REVIEW FOR MATH The limit. a n. This definition is useful is when evaluating the limits; for instance, to show

FINAL REVIEW FOR MATH The limit. a n. This definition is useful is when evaluating the limits; for instance, to show FINAL REVIEW FOR MATH 500 SHUANGLIN SHAO. The it Define a n = A: For any ε > 0, there exists N N such that for any n N, a n A < ε. This definition is useful is when evaluating the its; for instance, to

More information

Distance and Velocity

Distance and Velocity Distance and Velocity - Unit #8 : Goals: The Integral Determine how to calculate the area described by a function. Define the definite integral. Explore the relationship between the definite integral and

More information

Chapter 1: Integral Calculus. Chapter 1: Integral Calculus. Chapter 1: Integral Calculus. Chapter 1: Integral Calculus

Chapter 1: Integral Calculus. Chapter 1: Integral Calculus. Chapter 1: Integral Calculus. Chapter 1: Integral Calculus Chapter 1: Integral Calculus Chapter 1: Integral Calculus Chapter 1: Integral Calculus B 600m, obviously. Chapter 1: Integral Calculus B 600m, obviously. C 600m, obviously. Is this a trick question? Chapter

More information

Solving Linear Systems of ODEs with Matlab

Solving Linear Systems of ODEs with Matlab Solving Linear Systems of ODEs with Matlab James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University October 27, 2013 Outline Linear Systems Numerically

More information

Elementary Analysis Math 140D Fall 2007

Elementary Analysis Math 140D Fall 2007 Elementary Analysis Math 140D Fall 2007 Bernard Russo Contents 1 Friday September 28, 2007 1 1.1 Course information............................ 1 1.2 Outline of the course........................... 1

More information

Spring 2015, Math 111 Lab 9: The Definite Integral as the Are. the Area under a Curve

Spring 2015, Math 111 Lab 9: The Definite Integral as the Are. the Area under a Curve Spring 2015, Math 111 Lab 9: The Definite Integral as the Area under a Curve William and Mary April 14, 2015 Historical Outline Intuition Learning Objectives Today, we will be looking at applications of

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

Analysis Part 1. 1 Chapter Q1(q) 1.2 Q1(r) Book: Measure and Integral by Wheeden and Zygmund

Analysis Part 1. 1 Chapter Q1(q) 1.2 Q1(r) Book: Measure and Integral by Wheeden and Zygmund Analysis Part 1 www.mathtuition88.com Book: Measure and Integral by Wheeden and Zygmund 1 Chapter 1 1.1 Q1(q) Let {T x k } be a sequence of points of T E. Since E is compact, {x k } has a subsequence {x

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

MATLAB Ordinary Differential Equation (ODE) solver for a simple example 1. Introduction

MATLAB Ordinary Differential Equation (ODE) solver for a simple example 1. Introduction MATLAB Ordinary Differential Equation (ODE) solver for a simple example 1. Introduction Differential equations are a convenient way to express mathematically a change of a dependent variable (e.g. concentration

More information

ERRATA AND SUGGESTION SHEETS Advanced Calculus, Second Edition

ERRATA AND SUGGESTION SHEETS Advanced Calculus, Second Edition ERRATA AND SUGGESTION SHEETS Advanced Calculus, Second Edition Prof. Patrick Fitzpatrick February 6, 2013 Page 11, line 38: b 2 < r should be b 2 < c Page 13, line 1: for... number a and b, write... numbers

More information

Lecture 7.3: Ring homomorphisms

Lecture 7.3: Ring homomorphisms Lecture 7.3: Ring homomorphisms Matthew Macauley Department of Mathematical Sciences Clemson University http://www.math.clemson.edu/~macaule/ Math 4120, Modern Algebra M. Macauley (Clemson) Lecture 7.3:

More information

1 Definition of the Riemann integral

1 Definition of the Riemann integral MAT337H1, Introduction to Real Analysis: notes on Riemann integration 1 Definition of the Riemann integral Definition 1.1. Let [a, b] R be a closed interval. A partition P of [a, b] is a finite set of

More information

Math 5520 Homework 2 Solutions

Math 5520 Homework 2 Solutions Math 552 Homework 2 Solutions March, 26. Consider the function fx) = 2x ) 3 if x, 3x ) 2 if < x 2. Determine for which k there holds f H k, 2). Find D α f for α k. Solution. We show that k = 2. The formulas

More information

M2P1 Analysis II (2005) Dr M Ruzhansky List of definitions, statements and examples. Chapter 1: Limits and continuity.

M2P1 Analysis II (2005) Dr M Ruzhansky List of definitions, statements and examples. Chapter 1: Limits and continuity. M2P1 Analysis II (2005) Dr M Ruzhansky List of definitions, statements and examples. Chapter 1: Limits and continuity. This chapter is mostly the revision of Chapter 6 of M1P1. First we consider functions

More information

Austin Mohr Math 704 Homework 6

Austin Mohr Math 704 Homework 6 Austin Mohr Math 704 Homework 6 Problem 1 Integrability of f on R does not necessarily imply the convergence of f(x) to 0 as x. a. There exists a positive continuous function f on R so that f is integrable

More information

Machine Learning 9/2/2015. What is machine learning. Advertise a customer s favorite products. Search the web to find pictures of dogs

Machine Learning 9/2/2015. What is machine learning. Advertise a customer s favorite products. Search the web to find pictures of dogs 9//5 What is machine learning Machine Learning CISC 58 Dr Daniel Leeds Finding patterns in data Adapting program behavior Advertise a customer s favorite products Search the web to find pictures of dogs

More information