Consulting

Results 1 to 3 of 3

Thread: Formula to calculate how many circles fit in a larger circle

  1. #1
    VBAX Contributor
    Joined
    Mar 2009
    Location
    Porto, Portugal
    Posts
    180
    Location

    Formula to calculate how many circles fit in a larger circle

    Hi
    To calculate this, I'm using a simple formula that divides the area of the larger circle by the area of the smaller.
    For example, if I want to know how many Ø63 circles fit in a Ø250 circle, I do this:
    =INT((125^2*PI())/((32.5^2*PI()) to result = 14

    But I think this is a wrong approach.

    May someone clarify me about this, please?

    Thank you very much

    ioncila
    Last edited by ioncila; 09-22-2014 at 01:37 PM.

  2. #2
    Moderator VBAX Sage SamT's Avatar
    Joined
    Oct 2006
    Location
    Near Columbia
    Posts
    7,814
    Location
    you can get a closer "ballpark" figure by squaring off the smaller circle (D^2)
    =INT((125^2*PI())/((2*32.5)^2))
    I expect the student to do their homework and find all the errrors I leeve in.


    Please take the time to read the Forum FAQ

  3. #3
    VBAX Contributor
    Joined
    Mar 2009
    Location
    Porto, Portugal
    Posts
    180
    Location
    I have edited my last post because formula was not correct. But I guess you understood

    Quote Originally Posted by SamT View Post
    you can get a closer "ballpark" figure by squaring off the smaller circle (D^2)
    =INT((125^2*PI())/((2*32.5)^2))
    I have tried that before but not the way you are showing
    With a little help of geometry drawings I verified that you are right.

    Thank you very much
    It was a great help

Posting Permissions

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