1. Divide by the smallest prime
Start with 2, then test larger possible divisors until the remaining quotient is prime.
Break a positive integer into prime factors, display exponent form and factor pairs, list all divisors, test primality, and calculate divisor count, divisor sum, Euler’s totient, radical, square-free status, GCF, and LCM.
Enter a whole number from 2 to 1,000,000,000,000. Add a second number to calculate GCF and LCM.
840 = 2³ × 3 × 5 × 7
The calculator repeatedly divides the number by the smallest available prime factor. It records each prime and exponent, then uses the factorization to derive divisor, totient, radical, GCF, and LCM results.
Start with 2, then test larger possible divisors until the remaining quotient is prime.
Repeated factors are written with exponents, such as 2 × 2 × 2 = 2³.
Exponents determine divisor count and sum, while distinct primes determine the radical and Euler’s totient.
If n = p₁^a₁ ··· pₖ^aₖ, then d(n) = (a₁+1)···(aₖ+1)
φ(n) = n × ∏(1 − 1/p) over distinct prime factors p
gcd(a,b) × lcm(a,b) = a × b
13 is prime because its only positive divisors are 1 and 13.
12 is composite because 12 = 2² × 3 and has six positive divisors.
30 = 2 × 3 × 5 is square-free, while 12 = 2² × 3 is not.
144 = 2⁴ × 3² is a perfect square because all exponents are even.
Important details about primes, factors, divisors, GCF, and LCM.
Prime factorization expresses a positive integer greater than 1 as a product of prime numbers.
Yes. The Fundamental Theorem of Arithmetic says every integer greater than 1 has a unique prime factorization, apart from the order of the factors.
No. A prime number has exactly two positive divisors, but 1 has only one positive divisor.
An exponent shows how many times a prime factor appears. For example, 72 = 2³ × 3².
Add 1 to every prime exponent and multiply the results. For 72 = 2³ × 3², the count is (3+1)(2+1) = 12.
Euler’s totient φ(n) counts the positive integers up to n that are relatively prime to n.
The GCF uses the smallest shared prime exponents. The LCM uses the largest prime exponents appearing in either number.
A square-free number has no prime factor repeated twice or more, so every exponent in its prime factorization is 1.