Results 1 to 8 of 8

Thread: few problems...

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715

    few problems...

    I have a few problems that I need help with

    Code:
    [#9]
    
    solve the system of equations
    2x + (2/3)y = -8
    1/2x - (1/3)y = 1
    Code:
    [#11]
    
    Solve a system of equations to find the two numbers described.
    The sum of two numbers is 17 and their difference is 29.
    Code:
    [#12]
    
    The sum of a number and twice a greater number is 8. The sum of the greater number and twice the lesser number is -6.
    Code:
    [#16]
    
    A boat travels 60 miles downstream in the same time it takes to go 36 miles upstream. The speed of the boat in still water is 15 mph greater than the speed of the current. Find the speed of the current.
    Code:
    [#36]
    
    The geometric mean of a number and 3 is 9. Find the number: use  g = squareroot(ab)
    Code:
    [#50]
    
    Al's flower garden measures 25 feet by 35 feet. He has enough crushed stone to cover 325 square feet. If he uses the stone to build a path around his garden, what is the maximum possible width of the path?
    thanks in advance,

    Dimava
    NXSupport - Your one-stop source for computer help

  2. #2
    Ex-Super Mod'rater Electroman's Avatar
    Join Date
    Sep 2000
    Location
    Newcastle, England
    Posts
    4,349
    #9 add them together and it'll become clear
    When your thread has been resolved please edit the original post in the thread ()
    and amend "-[RESOLVED]-" to the end of the title and change the icon to , Thank you.

    When posting Code use the [VBCode]Code Here[/VBCode] tags to be able to use the code highlighting.

  3. #3
    Ex-Super Mod'rater Electroman's Avatar
    Join Date
    Sep 2000
    Location
    Newcastle, England
    Posts
    4,349
    #11:
    Code:
    a + b = 17
    a - b = 29
    #12:
    Code:
    a + 2b = 7
    2a + b = -6
    Thats all i'm doing, sounds like someones homework??
    When your thread has been resolved please edit the original post in the thread ()
    and amend "-[RESOLVED]-" to the end of the title and change the icon to , Thank you.

    When posting Code use the [VBCode]Code Here[/VBCode] tags to be able to use the code highlighting.

  4. #4
    Fanatic Member sql_lall's Avatar
    Join Date
    Jul 2002
    Location
    Up Above (i.e. AUS)
    Posts
    571

    Talking hmm...

    yes, does seem like homework
    anyway, more hints:
    #16)
    speed of current = x
    speed of boat in still water = x+15
    => speed upstream = (x+15)-x = 15
    => speed downstream = (x+15)+x = 2x+15

    #30)
    Geometric mean = sqrt(a*b) = 9
    b=3. find a (come on, its trivial)

    #50)
    Let W = width
    split the path into 8 section:
    four corners of W x W, and 4 other rectangles.
    Find the area of these reactangles, add them up, solve quadratic equation.
    sql_lall

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    thanks for the replies..


    for #50 I did the quadratic and I got X=-12.5 & X=-17.5, i'm not sure how to find the area with that.
    NXSupport - Your one-stop source for computer help

  6. #6
    Fanatic Member alkatran's Avatar
    Join Date
    Apr 2002
    Location
    Canada
    Posts
    860
    2x + (2/3)y = -8
    1/2x - (1/3)y = 1

    first things first, make the equations = each other:

    isolate X (or Y)
    2x = -8 - (2/3)y
    1/2x = 1 + (1/3)y

    now make them equal
    2x = -8 - (2/3)y
    2x = 4 + (4/3)y

    so now since both = 2x we know that
    -8 - (2/3)y = 4 + (4/3)y

    now we isolate Y and solve
    -8-4 = (4/3)y+(2/3)y
    -12 = 2y
    y = -6

    then we use Y to find X
    2x + (2/3)y = -8
    2x + (2/3)-6 = -8
    2x = -8 + 4
    2x = -4
    x = -2
    Don't pay attention to this signature, it's contradictory.

  7. #7
    Fanatic Member sql_lall's Avatar
    Join Date
    Jul 2002
    Location
    Up Above (i.e. AUS)
    Posts
    571

    Talking ok

    ok, here's #50 in a bit more detail:
    W=width of path
    => Area = 4W2 + 2W(25-2W) +2W(35-2W)
    (4 'corners' + the 4 remaining rectangles)

    =120W - 4W2 =325
    => 4W2 - 120W + 325 = 0
    => [120 +/- 20sqrt(22)]/8
    and you can get the answers from this
    sql_lall

  8. #8
    Ex-Super Mod'rater Electroman's Avatar
    Join Date
    Sep 2000
    Location
    Newcastle, England
    Posts
    4,349
    Hehe I did the first one wrong you want to double the first one then do the first one minus the second, thats if you haven't already got the answer
    When your thread has been resolved please edit the original post in the thread ()
    and amend "-[RESOLVED]-" to the end of the title and change the icon to , Thank you.

    When posting Code use the [VBCode]Code Here[/VBCode] tags to be able to use the code highlighting.

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