Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The base is length a, so if you divide it into n equal slices, each slice will be a/n wide.
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The figure on the right will help you visualize how we are slicing the area under the parabola. Here we are cutting it into four slices -- that is n = 4 (note that the leftmost slice has height of zero). The first slice has its left-hand edge at x = 0. The second at x = a/n. The third at x = 2a/n. That pattern continues. So the left-hand edge of the kth slice is at x = (k-1)a/n.
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
Recall that f(x) = x2. And the result from step 2 is that the left-hand edge of the kth rectangle is at x = (k-1)a/n. So just substitute the x into the f(x) with that expression to get the height of the kth rectangle, hk:
hk = f((k-1)a/n) = (k-1)2a2/n2
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The width of every slice is a/n. The height of the kth slice is (k-1)2a2/n2. So the area, Ak, of the kth slice is width times height, which is:
Ak = (k-1)2a3/n3
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
Just put the expression you got in step 4 into a summation for k equal 1 to n.
Atotal = |
n
∑ Ak =
k=1
|
n
∑ (k-1)2a3/n3
k=1
|
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The factor that is constant with respect to k is a3/n3. When you factor it out you get
n
Atotal = (a3/n3) ∑ (k-1)2
k=1
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The summation from step 6 is just the sum of the squares of the integers from zero to n-1. We have a formula for that. When you apply it you get
Atotal = (a3/n3) |
n(n-1)(2n-1) |
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
When you multiply out the polynomial you get
Atotal = (a3/n3) |
2n3 - 3n2 + n |
Atotal = |
a3 |
a3 |
a3 |
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
The terms with n in them all have the n in the denominator. So as n gets very big, these terms become closer and closer to zero, hence they become insignificant. All that remains is the term with no n in it. So in the limit you have
Atotal = a3/3which is the actual area of the shaded region that we started with.
Intermediate Answers to Exercise 10.1-2© 2000 by Karl Hahn |
|
How to find the sum of the squares of the integers from zero to n-1: First observe what the difference of two consecutive cubes is:
n3 - (n - 1)3 = n3 - (n3 - 3n2 + 3n - 1) = 3n2 - 3n + 1Notice that we had to apply the binomial formula to unravel that.
Now observe that
n3 = (13 - 03) + (23 - 13) + (33 - 23) + ...
... + ((n-1)3 - (n-2)3) + (n3 - (n-1)3)
which works simply because everything cancels except the n3.
But isn't that just the same as saying
n
n3 = ∑ k3 - (k-1)3
k=1
Now, turning the equation around and substituting the difference expression we got
using the binomial formula, we have:
n
∑ 3k2 - 3k + 1 = n3
k=1
Try this with a few small values of n to convince yourself
that it works.
The expression in the summation is itself a sum of three things. So we separate it into three summations:
n
∑ 3k2 -
k=1
|
n
∑ 3k +
k=1
|
n
∑ 1 = n3
k=1
|
n
3 ∑ k2 - 3
k=1
|
n
∑ k +
k=1
|
n
∑ 1 = n3
k=1
|
The sum the integers from 1 to n we can do the same we did in the main text for adding integers from zero to n-1 (by writing the sum forward and backward):
S = 1 + 2 + 3 + ... + n-2 + n-1 + n S = n + n-1 + n-2 + ... + 3 + 2 + 1Clearly twice the sum is n+1 added to itself n times. So2S = n+1 + n+1 + n+1 + ... + n+1 + n+1 + n+1
n
∑ k =
k=1
|
n(n+1) |
n
3 ∑ k2 - 3
k=1
|
n(n+1) |
n
∑ k2 =
k=1
|
n3 |
n(n+1) |
n |
n-1
∑ k2 =
k=0
|
n3 |
n(n+1) |
n |
n2 |
n-1
∑ k2 =
k=0
|
2n3 + 3n2 + 3n - 2n - 6n2 |
2n3 - 3n2 + n |
n(2n2 - 3n + 1) |
You can email me by clicking this button: