notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

PrimeNumber.md (261B)


      1 # Prime Number
      2 
      3 U 2.4
      4 
      5 **Definition:** A prime number is a number greater than 1 such that its only divisors are itself and 1. 
      6 
      7 A common way to prove the primality of a number is to show all numbers less than its square root do not divide it (a | b == False).