Results 1 to 5 of 5

Thread: Geometry

  1. #1

    Thread Starter
    Frenzied Member Microbasic's Avatar
    Join Date
    Mar 2001
    Posts
    1,402

    Geometry

    Let's say you have a square whose sides are 8 units long. You also have a circle that is congruent to the square on all four sides. We have ANOTHER circle congruent to the circle at one point and to the square at two points. What is the radius of the smaller circle?


    Code:
    +------------+
    |  /      \  |
    | /        \ |
    |/          \|
    |            |
    |\          /|
    | \        / |
    |()\      /  |
    +------------+
    We need to find the radius of circle ().


    MicroBasic
    Dragon Shadow Trainer

    There is no good or evil in the world...only programmers and fools .

  2. #2
    sql_lall
    Guest

    Talking I think...

    Radius of big circle = 4
    Distance centre to vertex = 4*sqrt(2)

    let radius of smaller circle be R
    => 4*sqrt(2) = 4 + R + R*sqrt(2)
    => 4*(sqrt(2)-1) = R*(sqrt2+1)
    => 4 *(sqrt(2)-1)/(sqrt(2)+1) = R

    => R = 0.68629... (I think, but i only used a calc. with no bodmas, so it is unreliable ) It may be wrong, so you probably should check.

  3. #3
    Hyperactive Member DavidHooper's Avatar
    Join Date
    Apr 2001
    Posts
    357
    Verified.
    The exact figure is 4 (sqrt(2) -1)^2.
    There are 10 types of people in the world - those that understand binary, and those that don't.

  4. #4
    sql_lall
    Guest

    Talking WOW!

    Cool, i'd never thought before, but:
    (sqrt(2) - 1)/(sqrt(2) + 1) = (sqrt(2) - 1)^2

    i.e. (sqrt(2) - 1)^-1 = (sqrt(2) + 1)

  5. #5
    Hyperactive Member DavidHooper's Avatar
    Join Date
    Apr 2001
    Posts
    357
    Hmm, a useful case of rationalising the denominator. Worth remembering.
    There are 10 types of people in the world - those that understand binary, and those that don't.

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