Category: Prime Numbers

  • Testing for Primality – Improved

    Improved version of Testing for primality This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters (define (smallest-divisor n) (find-divisor n 2)) (define (find-divisor…

  • Testing for Primality

    Test a number for primality. This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters (define (square n) (* n n)) (define (smallest-divisor n)…