Results 1 to 4 of 4

Thread: Omg, another math question undoable by the not-so-geniune-moi!

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2006
    Posts
    9

    Cool Omg, another math question undoable by the not-so-geniune-moi!

    What is with this ?!

    Q1
    1 = 1 = 2^1-1
    1 + 2 = 3 = 2^2-1
    1 + 2 +2^2 = 7 = 2^3-1

    Assuming that the pattern continues indefinitely, find the sum of:
    1 + 2 + 2^2 + 2^3+....+ 2^19 + 2^20.

    Q2
    A and B are two cyclits who intend to travel the same journey. A leaves at 12 noon and averages 20km/h and B leaves 45minutes later and average 25km/h. How far does B have to travel to catch up to A.

  2. #2
    Frenzied Member
    Join Date
    Jun 2006
    Posts
    1,098

    Re: Omg, another math question undoable by the not-so-geniune-moi!

    Q1 can be written as:
    2^0 = 1 = 2^1 - 1
    2^0 + 2^1 = 3 = 2^2 - 1
    2^0 + 2^1 + 2^2 = 7 = 2^3 - 1

    Following this pattern, we have
    2^0 + 2^1 + ... + 2^(n-1) + 2^n = 2^(n+1) - 1

    So the sum for n = 20 is 2^21 - 1, or 2,097,151

    Q2:
    DistanceA = 20 * t / 60
    DistanceB = 25 * (t - 45) / 60
    Where t is the number of minutes past noon.

    B catches up to A when DistanceB = DistanceA. Solve for t, then substitute to find the distance.

  3. #3
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Omg, another math question undoable by the not-so-geniune-moi!

    Don't know anything about Q1, but Q2 is quite easy.

    Given that train A left at noon and traveled 45 minutes before train B left, it had a 15K head start -- 20kph for 45 minutes gives us 5k every 15 minutes for a total 5k in 45 minutes. .... Instead of using Noon as 0 time, use 12:45 as the 0 time. Now think of it in this terms: Train A and Train B set out at the same time, with Train A 15k down the line traveling at 20kph, and Train B traveling at 25kph. This means that Train B will gain 5k on Train A every hour, therefore it will take 3 hours to make up the 15k difference. Since Train B traveled 25kph for three hours, the answer is 75k.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  4. #4
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Omg, another math question undoable by the not-so-geniune-moi!

    for the first one, Logophobic is right about the pattern, but to find the sum of the series, try the Geometric Progression.

    the GP looks like 2^0, 2^1, 2^2, 2^3 and so on.
    here the first term is 2^0 or 1 and the Common Ratio is 2.

    so the sum of the first nth terms of GP is: [a*(1 - rn)] / (1 - r)

    where a =first term, and
    .........r = common ratio.

    so according to your question, sum till 20th term will be:
    Code:
    2^0*(1 - 2^21) >>21 because the first term starts from 0, so 0 to 20 = 21
    --------------
    1 - 2
    Show Appreciation. Rate Posts.

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