Integral Calculus

Integral Calculus

May 31, 2020 | calculus, math

tags
Math

These are the two ways we commonly think about definite integrals: they describe an accumulation of a quantity, so the entire definite integral gives us the net change in that quantity.1

Why Integral Calculus #

Figure represents 2 graphs of y = cos(x). Let’s say we would like to calculate the area of

x_1 x\_1

. We could calculate the area by aproximation, for example, Graph B is filled with the area we would like to calculate, so we could divide this area by equal sections of Δxn\Delta x_n from a to b rectangles, then we could calculate the area of these rectangles by f(xi)Δxnf(x_i) * \Delta x_n where ff is the area of each of the rectangles. We do this for each rectangle then sum them up: i=1nf(xi)Δxn\sum_{i=1}^n f(x_i) * \Delta x_n. This will give us an approximation of our area, we could have a better approximation by having our Δxn\Delta x_n smaller, but this implies that our n becomes bigger and bigger. The smaller Δxn\Delta x_n gets, the more n approaches infinity.

We could use lim inf\liminf of n as n approaches ∞ or Δxn\Delta x_n as it gets very small.

set multiplot layout 1, 2 title "f(x) = -x ** 2 + 4"

set terminal pngcairo enhanced color size 350,262 font "Verdana,10" persist
set linetype 1 lc rgb '#A3001E'
set style fill transparent solid 0.35 noborder

f(x) = -x ** 2 + 4

set title "A"
plot f(x) with lines linestyle 1

set title "B"
set style fill transparent solid 0.50 noborder
plot f(x) fs solid 0.3 lc rgb '#A3001E'

unset multiplot

The idea of getting better and better approximations is the what constitutes Integral Calculus.


No notes link to this note