Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

The base is length a, so if you divide it into n equal slices, each slice will be  a/n  wide.

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

Slicing up a Parabola

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.

Return to main text








Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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)
             
      6

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

When you multiply out the polynomial you get


   Atotal  =  (a3/n3)

 2n3 - 3n2 + n
              
      6
Now multiply through by the  a3/n3:


   Atotal  =

  a3
      -
   3
  a3
       +
   2n
  a3
     
  6n2

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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/3
which is the actual area of the shaded region that we started with.

Return to main text










Intermediate Answers to Exercise 10.1-2


© 2000 by Karl Hahn
KCT logo

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 + 1
Notice 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
Now factor the constant multipliers from each summation:

     n
   3  k2  -  3
    k=1
 n
  k  +
k=1
  n
   1  =  n3
 k=1
Starting with the easiest summation, the sum from 1 to n of 1 added to itself is pretty easy. That's equal to n.

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   +   1
                                                            
  2S  =  n+1  +  n+1  +  n+1  +  ...  +  n+1  +  n+1  +  n+1
Clearly twice the sum is n+1 added to itself n times. So

    n
     k  =
   k=1
  n(n+1)
        
     2
So substituting for the two sums that we know, our equation becomes:

     n
   3  k2  -  3
    k=1
 n(n+1)
         +  n  =  n3
    2
Now move all the stuff that we have resolved so far over to the right and divide by 3

    n
     k2  =
   k=1
  n3
      +
   3
  n(n+1)
          -
     2
  n
   
  3
This gives the sum of the square integers from 1 to n. But we wanted the sum from zero to n-1. So we have to add zero squared and subtract n2. Of course zero squared is zero, so we ignore that. Here is the result:

   n-1
     k2  =
   k=0
  n3
      +
   3
  n(n+1)
          -
     2
  n
     -
  3

  n2

Now multiply out the n(n+1), and put everything over a common denominator:

   n-1
     k2  =
   k=0
  2n3 + 3n2 + 3n - 2n - 6n2
                             =
             6
  2n3 - 3n2 + n
                 =
        6
  n(2n2 - 3n + 1)
                 
         6
All that remains for you to do to finish this is to factor the quadratic on the right.

Return to Main Text


You can email me by clicking this button:

  Use your own emailer     Use form