SlideShare una empresa de Scribd logo
1 de 13
Descargar para leer sin conexión
Introduction to Integration
Integration is a way of adding slices to find the whole.
Integration can be used to find areas, volumes, central points and many useful
things. But it is easiest to start with finding the area under the curve of a
function like this:

What is the area under y = f(x) ?

Slices

We could calculate the function at a few points
and add up slices of width Δx like this (but the
answer won't be very accurate):

We can make Δx a lot smaller and add up many
small slices (answer is getting better):
And as the slices approach zero in width, the
answer approaches thetrue answer.
We now write dx to mean the Δx slices are
approaching zero in width.

That is a lot of adding up!
But we don't have to add them up, as there is a "shortcut". Because ...

... finding an Integral is the reverse of finding a Derivative.
(So you should really know about Derivatives before reading more!)
Like here:

Example: What is an integral of 2x?
We know that the derivative of x2 is 2x ...

... so an integral of 2x is x2
We will show you more examples later.
Notation
The symbol for "Integral" is a
stylish "S"
(for "Sum", the idea of summing
slices):

After the Integral Symbol we put the function we want to find the integral of
(called the Integrand),
and then finish with dx to mean the slices go in the x direction (and approach
zero in width).

And here is how we write the answer:

Plus C
We wrote the answer as x2 but why + C ?
It is the "Constant of Integration". It is there because of all the functions
whose derivative is 2x:
The derivative of a constant is zero, so when we reverse the operation (to find
the integral) there could have been a constant of any value.
So we wrap up the idea by just writing + C at the end.
Tap and Tank
Integration is like filling a tank from a tap.
The input (before integration) is the flow rate from the
tap.
Integrating the flow (adding up all the little bits of
water) gives us thevolume of water in the tank.

Imagine the flow starts at 0 and gradually increases (maybe a motor is slowly
opening the tap).

As the flow rate increases, the tank
fills up faster and faster.
With a flow rate of 2x, the tank fills
up at x2.
We have integrated the flow to get
the volume.
Example: (assuming the flow is in liters per minute) after 3 minutes
(x=3):


the flow rate has reached 2x = 2×3 = 6 liters/min,



and the voume has reached x2 = 32 = 9 liters.

We can do the reverse, too:
Imagine you don't know the flow
rate.
You only know the volume is
increasing by x2.
You can go in reverse (using the
derivative, which gives us the slope)
and find that the flow rate is 2x.
Example: at 2 minutes the slope of the volume is 4, meaning it is
increasing at 4 liters/minute, which is the flow rate. Likewise at 3 minutes
the slope will be 6, etc.

So Integral and Derivative are opposites.

We can write that down this way:

The integral of the flow rate 2x tells us the volume of water:

∫2x dx =
x2 + C

And the slope of the volume increase x2+C gives us back the
flow rate: 2x

And hey, we even get a nice
explanation of that "C" value ...
maybe the tank already had water in
it!

(x2 + C) =




The flow would still increase
the volume by the same
amount
And the increase in volume
can give us back the flow.

Which teaches us to always add "+
C".

Other functions
Well, we have played with y=2x enough now, so how do we integrate other
functions?
If you are lucky enough to find the function on the result side of a derivative,
then, using your knowledge that derivatives and integrals are opposites, you
have an answer (but remember to add C).

Example: what is

∫cos(x) dx ?

From the Rules of Derivatives table you see the derivative of sin(x) is cos(x) so:

∫cos(x) dx = sin(x) + C
But a lot of the "reversing" has already been done (see Rules of Integration).

Example: What is

∫x3 dx ?

On Rules of Integration there is a "Power Rule" that says:

∫xn dx = xn+1/(n+1) + C
We can use that rule with n=3:

∫x3 dx = x4 /4 + C
Knowing how to use those rules is the key to being good at
Integration.

Definite vs Indefinite Integrals
We have been doing Indefinite Integrals so far.
A Definite Integral has actual values to calculate between (they are put at the
bottom and top of the "S"):

Indefinite Integral

Definite Integral

(a)
There’s not really a whole lot to do here other than use the first two formulas from the
beginning of this section. Remember that when integrating powers (that aren’t -1 of
course) we just add one onto the exponent and then divide by the new exponent.
Be careful when integrating negative exponents. Remember to add one onto the
exponent. One of the more common mistakes that students make when integrating
negative exponents is to “add one” and end up with an exponent of “-7” instead of the
correct exponent of “-5”.
[Return to Problems]

(b)
This is here just to make sure we get the point about integrating negative exponents.

Integration by Substitution
"Integration by Substitution" (also called "u-substitution") is a method to find
an integral, but only when it can be set up in a special way.
The first and most vital step is to be able to write your integral in this form:

Note that you have g(x) and its derivative g'(x)
It might make more sense as is an example:

Here f=cos, and you have g=x2 and its derivative of 2x
This integral is good to go!
If your integral is set up like that, then you can do this substitution:

Then you can integrate f(u), and finish by putting g(x) back as a replacement
for u.
Like this:

Example:

∫cos(x2) 2x dx

We know (from above) that it is in the right form to do the substitution:

Now integrate:

∫cos(u) du = sin(u) + C
And finally put u=x back again:
2

sin(x2) + C
So

∫cos(x2) 2x dx = sin(x2) + C worked out really nicely! (Well, I knew it

would.)
This method only works on some integrals of course, and it may need
rearranging:

Example:

∫cos(x2) 6x dx

Oh no! It is 6x, not 2x. Our perfect setup is gone.
Never fear! Just rearrange the integral like this:
∫cos(x2) 6x dx = 3∫cos(x2) 2x dx
(We can pull constant multipliers outside the integration, see Rules of
Integration.)
Then proceed as before:

3∫cos(u) du = 3 sin(u) + C
Now put u=x2 back again:

3 sin(x2) + C
Done!
Now we are ready for a slightly harder example:

Example:

∫x/(x2+1) dx

Let me see ... the derivative of x2+1 is 2x ... so how about we rearrange it
like this:

∫x/(x2+1) dx = ½∫2x/(x2+1) dx
Then we have:

Then integrate:

½∫1/u du = ½ ln(u) + C
Now put u=x2+1 back again:

½ ln(x2+1) + C
And how about this one:

Example:

∫(x+1)3 dx

Let me see ... the derivative of x+1 is ... well it is simply 1.
So we can have this:

∫(x+1)3 dx = ∫(x+1)3 · 1 dx
Then we have:
Then integrate:

∫u3 du = (u4)/4 + C

Now put u=x+1 back again:

(x+1)4 /4 + C
So there you have it.

In Summary
If you can put an integral in this form:

Then you can make u=g(x) and integrate

∫f(u) du

And finish up by re-inserting g(x) where u is.

Integration by Parts
Integration by Parts is a special method of integration that is often useful when
two functions are multiplied together, but is also helpful in other ways.
You will see plenty of examples soon, but first let us see the rule:

∫u v dx = u∫v dx −∫u' (∫v dx) dx


u is the function u(x)



v is the function v(x)

As a diagram:

And let us get straight into an example:

Example: What is

∫x cos(x) dx ?

First choose u and v:


u=x



v = cos(x)
Differentiate u: u' = x' = 1
Integrate v:

∫v dx = ∫cos(x) dx = sin(x)

Now put it together:

Simplify and solve:

x sin(x) −

∫sin(x) dx

x sin(x) + cos(x) + C
So we followed these steps:


Choose u and v



Differentiate u: u'



Integrate v:



∫v dx
Put u, u' and ∫v dx here: u∫v dx −∫u' (∫v dx) dx



Simplify and solve

In English, to help you remember,

∫u v dx becomes:

(u integral v) minus integral of (derivative u, integral v)

Más contenido relacionado

La actualidad más candente

Differentiation
DifferentiationDifferentiation
Differentiation
timschmitz
 
Complex Numbers
Complex NumbersComplex Numbers
Complex Numbers
itutor
 
Applications of Integrations
Applications of IntegrationsApplications of Integrations
Applications of Integrations
itutor
 
Linear differential equation with constant coefficient
Linear differential equation with constant coefficientLinear differential equation with constant coefficient
Linear differential equation with constant coefficient
Sanjay Singh
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
itutor
 

La actualidad más candente (20)

Double & triple integral unit 5 paper 1 , B.Sc. 2 Mathematics
Double & triple integral unit 5 paper 1 , B.Sc. 2 MathematicsDouble & triple integral unit 5 paper 1 , B.Sc. 2 Mathematics
Double & triple integral unit 5 paper 1 , B.Sc. 2 Mathematics
 
Interpolation
InterpolationInterpolation
Interpolation
 
Differentiation
DifferentiationDifferentiation
Differentiation
 
Engineering mathematics 1
Engineering mathematics 1Engineering mathematics 1
Engineering mathematics 1
 
Integration in the complex plane
Integration in the complex planeIntegration in the complex plane
Integration in the complex plane
 
Complex Numbers
Complex NumbersComplex Numbers
Complex Numbers
 
Applications of Integrations
Applications of IntegrationsApplications of Integrations
Applications of Integrations
 
Linear differential equation with constant coefficient
Linear differential equation with constant coefficientLinear differential equation with constant coefficient
Linear differential equation with constant coefficient
 
Differential equations
Differential equationsDifferential equations
Differential equations
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
 
Integration
IntegrationIntegration
Integration
 
Exact Differential Equations
Exact Differential EquationsExact Differential Equations
Exact Differential Equations
 
Divergence,curl,gradient
Divergence,curl,gradientDivergence,curl,gradient
Divergence,curl,gradient
 
System Of Linear Equations
System Of Linear EquationsSystem Of Linear Equations
System Of Linear Equations
 
Calculus
CalculusCalculus
Calculus
 
Linear algebra notes 1
Linear algebra notes 1Linear algebra notes 1
Linear algebra notes 1
 
A presentation on differencial calculus
A presentation on differencial calculusA presentation on differencial calculus
A presentation on differencial calculus
 
Integration by parts
Integration by partsIntegration by parts
Integration by parts
 
Complex function
Complex functionComplex function
Complex function
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolation
 

Destacado

5 1 integral exponents
5 1 integral exponents5 1 integral exponents
5 1 integral exponents
hisema01
 
Algebra 6 Point 4
Algebra 6 Point 4Algebra 6 Point 4
Algebra 6 Point 4
herbison
 
Indefinite and Definite Integrals Using the Substitution Method
Indefinite and Definite Integrals Using the Substitution MethodIndefinite and Definite Integrals Using the Substitution Method
Indefinite and Definite Integrals Using the Substitution Method
Scott Bailey
 
7.3 rational exponents
7.3 rational exponents7.3 rational exponents
7.3 rational exponents
hisema01
 

Destacado (20)

Integration
IntegrationIntegration
Integration
 
Lesson 10 techniques of integration
Lesson 10 techniques of integrationLesson 10 techniques of integration
Lesson 10 techniques of integration
 
Lesson 27: Integration by Substitution (Section 041 handout)
Lesson 27: Integration by Substitution (Section 041 handout)Lesson 27: Integration by Substitution (Section 041 handout)
Lesson 27: Integration by Substitution (Section 041 handout)
 
5 1 integral exponents
5 1 integral exponents5 1 integral exponents
5 1 integral exponents
 
Algebra 6 Point 4
Algebra 6 Point 4Algebra 6 Point 4
Algebra 6 Point 4
 
Indefinite and Definite Integrals Using the Substitution Method
Indefinite and Definite Integrals Using the Substitution MethodIndefinite and Definite Integrals Using the Substitution Method
Indefinite and Definite Integrals Using the Substitution Method
 
Simplifying Rational Expression
Simplifying Rational ExpressionSimplifying Rational Expression
Simplifying Rational Expression
 
7.3 rational exponents
7.3 rational exponents7.3 rational exponents
7.3 rational exponents
 
Topic 6
Topic 6Topic 6
Topic 6
 
Core 3 The Chain Rule
Core 3 The Chain RuleCore 3 The Chain Rule
Core 3 The Chain Rule
 
Chain Rule
Chain RuleChain Rule
Chain Rule
 
History of pi
History of piHistory of pi
History of pi
 
Integration By Parts Tutorial & Example- Calculus 2
Integration By Parts Tutorial & Example- Calculus 2Integration By Parts Tutorial & Example- Calculus 2
Integration By Parts Tutorial & Example- Calculus 2
 
Chapter 4 Integration
Chapter 4  IntegrationChapter 4  Integration
Chapter 4 Integration
 
Integral Exponents
Integral ExponentsIntegral Exponents
Integral Exponents
 
Lesson 27: Integration by Substitution (slides)
Lesson 27: Integration by Substitution (slides)Lesson 27: Integration by Substitution (slides)
Lesson 27: Integration by Substitution (slides)
 
Lecture 8 derivative rules
Lecture 8   derivative rulesLecture 8   derivative rules
Lecture 8 derivative rules
 
Calculus in real life (Differentiation and integration )
Calculus in real life (Differentiation and integration )Calculus in real life (Differentiation and integration )
Calculus in real life (Differentiation and integration )
 
Higher Maths 121 Sets And Functions 1205778086374356 2
Higher Maths 121 Sets And Functions 1205778086374356 2Higher Maths 121 Sets And Functions 1205778086374356 2
Higher Maths 121 Sets And Functions 1205778086374356 2
 
CHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTIONCHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTION
 

Similar a Math lecture 10 (Introduction to Integration)

Calculus 08 techniques_of_integration
Calculus 08 techniques_of_integrationCalculus 08 techniques_of_integration
Calculus 08 techniques_of_integration
tutulk
 
Math lecture 7 (Arithmetic Sequence)
Math lecture 7 (Arithmetic Sequence)Math lecture 7 (Arithmetic Sequence)
Math lecture 7 (Arithmetic Sequence)
Osama Zahid
 
Based on the readings and content for this course.docxBased on.docx
Based on the readings and content for this course.docxBased on.docxBased on the readings and content for this course.docxBased on.docx
Based on the readings and content for this course.docxBased on.docx
ikirkton
 

Similar a Math lecture 10 (Introduction to Integration) (20)

Integration - Mathematics - UoZ
Integration - Mathematics - UoZ Integration - Mathematics - UoZ
Integration - Mathematics - UoZ
 
Calculus 08 techniques_of_integration
Calculus 08 techniques_of_integrationCalculus 08 techniques_of_integration
Calculus 08 techniques_of_integration
 
Formulas
FormulasFormulas
Formulas
 
Introduction to calculus
Introduction to calculusIntroduction to calculus
Introduction to calculus
 
13 1 basics_integration
13 1 basics_integration13 1 basics_integration
13 1 basics_integration
 
Integration
IntegrationIntegration
Integration
 
Understanding the "Chain Rule" for Derivatives by Deriving Your Own Version
Understanding the "Chain Rule" for Derivatives by Deriving Your Own VersionUnderstanding the "Chain Rule" for Derivatives by Deriving Your Own Version
Understanding the "Chain Rule" for Derivatives by Deriving Your Own Version
 
1543 integration in mathematics b
1543 integration in mathematics b1543 integration in mathematics b
1543 integration in mathematics b
 
Integration by parts to solve it clearly
Integration by parts  to solve it clearlyIntegration by parts  to solve it clearly
Integration by parts to solve it clearly
 
Slope Fields For Snowy Days
Slope Fields For Snowy DaysSlope Fields For Snowy Days
Slope Fields For Snowy Days
 
Integration by Parts & by Partial Fractions
Integration by Parts & by Partial FractionsIntegration by Parts & by Partial Fractions
Integration by Parts & by Partial Fractions
 
Integral calculus
Integral calculusIntegral calculus
Integral calculus
 
Integral calculus
Integral calculus Integral calculus
Integral calculus
 
Math lecture 7 (Arithmetic Sequence)
Math lecture 7 (Arithmetic Sequence)Math lecture 7 (Arithmetic Sequence)
Math lecture 7 (Arithmetic Sequence)
 
Binomial theorem
Binomial theoremBinomial theorem
Binomial theorem
 
Integration by parts
Integration by partsIntegration by parts
Integration by parts
 
125 5.3
125 5.3125 5.3
125 5.3
 
Techniques of Integration ppt.ppt
Techniques of Integration ppt.pptTechniques of Integration ppt.ppt
Techniques of Integration ppt.ppt
 
Advance algebra
Advance algebraAdvance algebra
Advance algebra
 
Based on the readings and content for this course.docxBased on.docx
Based on the readings and content for this course.docxBased on.docxBased on the readings and content for this course.docxBased on.docx
Based on the readings and content for this course.docxBased on.docx
 

Más de Osama Zahid (20)

Various Casting Techniques
Various Casting TechniquesVarious Casting Techniques
Various Casting Techniques
 
Basic rope work & restraining of animals
Basic rope work & restraining of animalsBasic rope work & restraining of animals
Basic rope work & restraining of animals
 
Restraining of Animals
Restraining of AnimalsRestraining of Animals
Restraining of Animals
 
Ticks (Soft and Hard)
Ticks (Soft and Hard)Ticks (Soft and Hard)
Ticks (Soft and Hard)
 
Cyclorrapha by shoaib
Cyclorrapha by shoaibCyclorrapha by shoaib
Cyclorrapha by shoaib
 
Ticks identification
Ticks identificationTicks identification
Ticks identification
 
Butterfly by asad aslam
Butterfly by asad aslamButterfly by asad aslam
Butterfly by asad aslam
 
Soft ticks
Soft ticksSoft ticks
Soft ticks
 
Ixodes (Hard Ticks)
Ixodes (Hard Ticks)Ixodes (Hard Ticks)
Ixodes (Hard Ticks)
 
Brachycera by maham
Brachycera by mahamBrachycera by maham
Brachycera by maham
 
Hyalomma (Ticks)
Hyalomma (Ticks)Hyalomma (Ticks)
Hyalomma (Ticks)
 
Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30Brachycera by 17 , 18 ,30
Brachycera by 17 , 18 ,30
 
Fleas by jalees mirza
Fleas by jalees mirzaFleas by jalees mirza
Fleas by jalees mirza
 
Flea lecture
Flea lectureFlea lecture
Flea lecture
 
Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)Amblyomma variegatum (Ticks)
Amblyomma variegatum (Ticks)
 
Bugs
BugsBugs
Bugs
 
Amblyomma (Ticks)
Amblyomma (Ticks)Amblyomma (Ticks)
Amblyomma (Ticks)
 
Drug Dosage Forms
Drug Dosage FormsDrug Dosage Forms
Drug Dosage Forms
 
Factors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small RuminantsFactors Affecting the Productivity of Small Ruminants
Factors Affecting the Productivity of Small Ruminants
 
Helminthology
HelminthologyHelminthology
Helminthology
 

Último

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Último (20)

Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 

Math lecture 10 (Introduction to Integration)

  • 1. Introduction to Integration Integration is a way of adding slices to find the whole. Integration can be used to find areas, volumes, central points and many useful things. But it is easiest to start with finding the area under the curve of a function like this: What is the area under y = f(x) ? Slices We could calculate the function at a few points and add up slices of width Δx like this (but the answer won't be very accurate): We can make Δx a lot smaller and add up many small slices (answer is getting better):
  • 2. And as the slices approach zero in width, the answer approaches thetrue answer. We now write dx to mean the Δx slices are approaching zero in width. That is a lot of adding up! But we don't have to add them up, as there is a "shortcut". Because ... ... finding an Integral is the reverse of finding a Derivative. (So you should really know about Derivatives before reading more!) Like here: Example: What is an integral of 2x? We know that the derivative of x2 is 2x ... ... so an integral of 2x is x2 We will show you more examples later.
  • 3. Notation The symbol for "Integral" is a stylish "S" (for "Sum", the idea of summing slices): After the Integral Symbol we put the function we want to find the integral of (called the Integrand), and then finish with dx to mean the slices go in the x direction (and approach zero in width). And here is how we write the answer: Plus C We wrote the answer as x2 but why + C ? It is the "Constant of Integration". It is there because of all the functions whose derivative is 2x: The derivative of a constant is zero, so when we reverse the operation (to find the integral) there could have been a constant of any value. So we wrap up the idea by just writing + C at the end.
  • 4. Tap and Tank Integration is like filling a tank from a tap. The input (before integration) is the flow rate from the tap. Integrating the flow (adding up all the little bits of water) gives us thevolume of water in the tank. Imagine the flow starts at 0 and gradually increases (maybe a motor is slowly opening the tap). As the flow rate increases, the tank fills up faster and faster. With a flow rate of 2x, the tank fills up at x2. We have integrated the flow to get the volume. Example: (assuming the flow is in liters per minute) after 3 minutes (x=3):  the flow rate has reached 2x = 2×3 = 6 liters/min,  and the voume has reached x2 = 32 = 9 liters. We can do the reverse, too:
  • 5. Imagine you don't know the flow rate. You only know the volume is increasing by x2. You can go in reverse (using the derivative, which gives us the slope) and find that the flow rate is 2x. Example: at 2 minutes the slope of the volume is 4, meaning it is increasing at 4 liters/minute, which is the flow rate. Likewise at 3 minutes the slope will be 6, etc. So Integral and Derivative are opposites. We can write that down this way: The integral of the flow rate 2x tells us the volume of water: ∫2x dx = x2 + C And the slope of the volume increase x2+C gives us back the flow rate: 2x And hey, we even get a nice explanation of that "C" value ... maybe the tank already had water in it! (x2 + C) =
  • 6.   The flow would still increase the volume by the same amount And the increase in volume can give us back the flow. Which teaches us to always add "+ C". Other functions Well, we have played with y=2x enough now, so how do we integrate other functions? If you are lucky enough to find the function on the result side of a derivative, then, using your knowledge that derivatives and integrals are opposites, you have an answer (but remember to add C). Example: what is ∫cos(x) dx ? From the Rules of Derivatives table you see the derivative of sin(x) is cos(x) so: ∫cos(x) dx = sin(x) + C But a lot of the "reversing" has already been done (see Rules of Integration). Example: What is ∫x3 dx ? On Rules of Integration there is a "Power Rule" that says: ∫xn dx = xn+1/(n+1) + C We can use that rule with n=3: ∫x3 dx = x4 /4 + C
  • 7. Knowing how to use those rules is the key to being good at Integration. Definite vs Indefinite Integrals We have been doing Indefinite Integrals so far. A Definite Integral has actual values to calculate between (they are put at the bottom and top of the "S"): Indefinite Integral Definite Integral (a) There’s not really a whole lot to do here other than use the first two formulas from the beginning of this section. Remember that when integrating powers (that aren’t -1 of course) we just add one onto the exponent and then divide by the new exponent.
  • 8. Be careful when integrating negative exponents. Remember to add one onto the exponent. One of the more common mistakes that students make when integrating negative exponents is to “add one” and end up with an exponent of “-7” instead of the correct exponent of “-5”. [Return to Problems] (b) This is here just to make sure we get the point about integrating negative exponents. Integration by Substitution "Integration by Substitution" (also called "u-substitution") is a method to find an integral, but only when it can be set up in a special way. The first and most vital step is to be able to write your integral in this form: Note that you have g(x) and its derivative g'(x) It might make more sense as is an example: Here f=cos, and you have g=x2 and its derivative of 2x This integral is good to go!
  • 9. If your integral is set up like that, then you can do this substitution: Then you can integrate f(u), and finish by putting g(x) back as a replacement for u. Like this: Example: ∫cos(x2) 2x dx We know (from above) that it is in the right form to do the substitution: Now integrate: ∫cos(u) du = sin(u) + C And finally put u=x back again: 2 sin(x2) + C So ∫cos(x2) 2x dx = sin(x2) + C worked out really nicely! (Well, I knew it would.) This method only works on some integrals of course, and it may need rearranging: Example: ∫cos(x2) 6x dx Oh no! It is 6x, not 2x. Our perfect setup is gone. Never fear! Just rearrange the integral like this:
  • 10. ∫cos(x2) 6x dx = 3∫cos(x2) 2x dx (We can pull constant multipliers outside the integration, see Rules of Integration.) Then proceed as before: 3∫cos(u) du = 3 sin(u) + C Now put u=x2 back again: 3 sin(x2) + C Done! Now we are ready for a slightly harder example: Example: ∫x/(x2+1) dx Let me see ... the derivative of x2+1 is 2x ... so how about we rearrange it like this: ∫x/(x2+1) dx = ½∫2x/(x2+1) dx Then we have: Then integrate: ½∫1/u du = ½ ln(u) + C Now put u=x2+1 back again: ½ ln(x2+1) + C And how about this one: Example: ∫(x+1)3 dx Let me see ... the derivative of x+1 is ... well it is simply 1. So we can have this: ∫(x+1)3 dx = ∫(x+1)3 · 1 dx Then we have:
  • 11. Then integrate: ∫u3 du = (u4)/4 + C Now put u=x+1 back again: (x+1)4 /4 + C So there you have it. In Summary If you can put an integral in this form: Then you can make u=g(x) and integrate ∫f(u) du And finish up by re-inserting g(x) where u is. Integration by Parts Integration by Parts is a special method of integration that is often useful when two functions are multiplied together, but is also helpful in other ways. You will see plenty of examples soon, but first let us see the rule: ∫u v dx = u∫v dx −∫u' (∫v dx) dx
  • 12.  u is the function u(x)  v is the function v(x) As a diagram: And let us get straight into an example: Example: What is ∫x cos(x) dx ? First choose u and v:  u=x  v = cos(x) Differentiate u: u' = x' = 1 Integrate v: ∫v dx = ∫cos(x) dx = sin(x) Now put it together: Simplify and solve: x sin(x) − ∫sin(x) dx x sin(x) + cos(x) + C
  • 13. So we followed these steps:  Choose u and v  Differentiate u: u'  Integrate v:  ∫v dx Put u, u' and ∫v dx here: u∫v dx −∫u' (∫v dx) dx  Simplify and solve In English, to help you remember, ∫u v dx becomes: (u integral v) minus integral of (derivative u, integral v)