Results 1 to 2 of 2

Thread: Missing step?

  1. #1

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Missing step?

    Take a look at this:



    How did the change in the limits (1 to n-1 => 1 to n) over the summation change (1/(i+1)) to ((1/i)-1)?

    In other words, how did they get from step 2 to 3?

  2. #2
    Frenzied Member zaza's Avatar
    Join Date
    Apr 2001
    Location
    Borneo Rainforest Habits: Scratching
    Posts
    1,486

    Re: Missing step?

    Hi mendhak,

    It is because the -1 in step 3 is not part of the sum. For clarity it should be written: -1 + sum(1->n)[1/i].

    Ways to tell:

    1) You can test this fairly easily by bunging some numbers in.

    2) The first sum is clearly 1/2 + 1/3 + ... + 1/n. The second is [1 + 1/2 + ... + 1/n] -1

    3) If you want to prove it mathematically, do a substitution in the second sum of i = z+1. You then have sum(0->n-1)[1/{z+1}] -1
    Evaluate the first term separately and you get:
    1 + sum(1->n-1)[1/{z+1}] - 1 = sum(1->n-1)[1/{z+1}], which is what you had in the first place.


    zaza

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width