+ Reply to Thread
Results 1 to 9 of 9

Prime numbers macro

  1. #1
    Registered User
    Join Date
    10-13-2014
    Location
    Sao Paulo, Brazil
    MS-Off Ver
    2013
    Posts
    1

    Prime numbers macro

    Hi, I'm a beginner at VBA and I'm trying to make a macro that lists all the prime numbers from 3 to 97 (for example).

    I tried this but it didn't work well:

    ---------------------------------------------
    Please Login or Register  to view this content.
    ---------------------------------

    My idea was to run a "do while" command for each of the numbers in the interval [3,97],
    testing if it's divisible by any number from 2 up to itself minus 1. If it is, then it's not prime, and
    an indicator (k) should become greater than 0. If k keeps being 0, this means the number is prime, so
    it should be printed on the cells.

    Can anybody tell me what went wrong?
    Last edited by zbor; 10-13-2014 at 03:05 PM.

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Prime numbers macro

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE]Please [url=https://www.excelforum.com/login.php]Login or Register [/url] to view this content.[/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    I did it now for you but please keep in mind in future.
    Last edited by zbor; 10-13-2014 at 03:05 PM.
    Never use Merged Cells in Excel

  3. #3
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Prime numbers macro

    First...
    You don't need to go with loop till 96.

    97 is never divided by 96.. Or 95.. Or 94.. etc...
    Basically, it's enough to loop through n/2 (49 in this case).

    What is less intuitive is that it's enough for looping 'till SQRT(n) (SQRT(97) = 97^1/2 = 10).

    So we already optimized our code.

    Next thing is - if value is divided by ANY number - no need to fo further testing.
    You can go out of the loop right away.

    So let's take number 97 that's prime number.
    You did 96 iterations. I did 9.

    But if you take 96:
    You did 95 iterations. I did 1 (jump out of the loop since it's divided by 2)

    You can enter desired number:

    Please Login or Register  to view this content.

  4. #4
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Prime numbers macro

    But your approach will also work if you put k and i under loop.
    You need to "reset" them each time when you testing new number so EACH time you check rest of dividing by 2,3,4,.. etc

    Please Login or Register  to view this content.

  5. #5
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,391

    Re: Prime numbers macro

    Rather than a "trial division" algorithm like you are doing here, you might be interested in studying and implementing a Sieve of Eratosthenes type algorithm. Allegedly, this is a more efficient algorithm. http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Prime numbers macro

    Thx MrShorty.
    Surely, that's better approach.

    I was just refering to OP's solution explaing it and did some slightly modifications to make it faster.

  7. #7
    Valued Forum Contributor
    Join Date
    03-21-2013
    Location
    cyberia
    MS-Off Ver
    Excel 2007
    Posts
    457

    Re: Prime numbers macro

    ... studying and implementing a Sieve of Eratosthenes type algorithm. Allegedly, this is a more efficient algorithm. http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
    I like the "allegedly" bit.

    The referenced Wikipedia article gives what the writer claims is "An optimized implementation" of Eratosthenes' sieve.

    Just for interest, I tried translating that "optimized implementation" to VBA. The VBA code is given below. And yes, it does run quite fast.

    But contrary to what is claimed, it doesn't seem to be particularly optimal for at least a couple of reasons.
    1. The writer's Booleans are all initially set to be true. The default VBA Boolean is false, so an extra (but unnecessary) VBA loop is needed to set them as true. Unnecessary loops can be inefficient, and this is so in this case.
    2. A number of the non-primes are sieved out more than once. Arithmetical redundancy of that sort takes up calculation resources and time and isn't optimal.

    Probably the writer was well aware of these, but felt the need to keep his/her Wikipedia exposition as straightforward as reasonable.

    However, it's not that hard to give an alternate version of the code below to run about 30-40% faster. Maybe even faster again with a better code-writer than I.
    Please Login or Register  to view this content.
    Incidentally, using a division/remainder approach (rather than the step approach) to the Sieve of Erathosthenes is very inefficient.

  8. #8
    Forum Contributor
    Join Date
    03-31-2012
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    140

    Re: Prime numbers macro

    Quote Originally Posted by kalak View Post
    I like the "allegedly" bit.

    The referenced Wikipedia article gives what the writer claims is "An optimized implementation" of Eratosthenes' sieve.

    Just for interest, I tried translating that "optimized implementation" to VBA. The VBA code is given below. And yes, it does run quite fast.

    But contrary to what is claimed, it doesn't seem to be particularly optimal for at least a couple of reasons.
    1. The writer's Booleans are all initially set to be true. The default VBA Boolean is false, so an extra (but unnecessary) VBA loop is needed to set them as true. Unnecessary loops can be inefficient, and this is so in this case.
    2. A number of the non-primes are sieved out more than once. Arithmetical redundancy of that sort takes up calculation resources and time and isn't optimal.

    Probably the writer was well aware of these, but felt the need to keep his/her Wikipedia exposition as straightforward as reasonable.

    However, it's not that hard to give an alternate version of the code below to run about 30-40% faster. Maybe even faster again with a better code-writer than I.
    Please Login or Register  to view this content.
    Incidentally, using a division/remainder approach (rather than the step approach) to the Sieve of Erathosthenes is very inefficient.

    Amazing code! I only list prime by Bitwise Sieve method as following code.
    Please Login or Register  to view this content.

  9. #9
    Forum Contributor
    Join Date
    03-31-2012
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    140

    Re: Prime numbers macro

    I have referred to the above code for modifications as follows.
    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. macro to print prime numbers from 1 to 200
    By rarementality in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-02-2014, 02:53 AM
  2. How to get functions about prime numbers in Excel 2013?
    By Terminatrix in forum Excel General
    Replies: 1
    Last Post: 04-21-2014, 11:49 AM
  3. Highlight all prime numbers in column
    By bluecat2013 in forum Excel General
    Replies: 3
    Last Post: 02-21-2014, 01:19 PM
  4. Prime numbers
    By Gearcutter in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-08-2007, 09:03 AM
  5. [SOLVED] Prime Numbers
    By Flyone in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-02-2005, 10:25 PM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1