Soontir C'boath wrote:Ok, I'm studying for an exam coming up soon but I am looking at a question right now that doesn't follow what I read.
The problem reads:
Express the area under the curve y = x^5 from 0 to 2 as a limit.
That's what I did and I figure it to be the limit as n->infinity (2/n) Sigma i^5
The proper anti-derivative would be x^6 / 6 from 0 to 2.
Except instead of (2/n) the book's answer has it with an exponet of six making it (64/n^6).
Isn't it just (b-a)/n? Does it have to do with perhaps antideriving(which i have no idea, just throwing a guess) x^5?
Integration is the limit of a Reimann sum as n->infinity. A Reimann sum is the summation from x_i to x_f of f(x_i) * delta-x. In other words, the result of the function's value at x_i multiplied by your step size, which gives you the area of a rectangle of height f(x_i) and width delta-x.
To express the area under a curve, you have to let the number of these rectangles go to infinity to get infinite precision. So your step size is going to get as close to zero as possible. So the Reimann sum will look something like this
limit(n->infinity) Sum(i=0, i=n) f(x_i) * delta-x
limit(n->infinity) Sum(i=0, i=n) (x_i)^5 * delta-x
limit(n->infinity) Sum(i=0, i=2) (x_i)^5 * ((2 - 0) / n)
limit(n->infinity) Sum(i=0, i=2) (2 * (x_i)^5) / n
That should get you started. Now just take that limit as n->infinity, and you should have your answer.