Skip to main content

如何计算Factors

learn.whatIsHeading

Factors (or divisors) of a number n are all integers that divide n exactly with no remainder. Prime factorization expresses n as a product of prime numbers — unique for every integer greater than 1 (Fundamental Theorem of Arithmetic).

分步指南

  1. 1Trial division: test divisibility by 2, then odd numbers up to √n
  2. 2If divisible, it's a factor — add both divisor and quotient
  3. 3Prime factorization: keep dividing by the smallest prime factor
  4. 4Number of factors = product of (exponent + 1) for each prime factor

例题解析

输入
Factors of 36
结果
1, 2, 3, 4, 6, 9, 12, 18, 36
36 = 2² × 3² → (2+1)(2+1) = 9 factors
输入
Prime factorization of 360
结果
2³ × 3² × 5
360 = 8 × 9 × 5

准备好计算了吗?尝试免费的 Factors 计算器

自己尝试一下 →

设置

隐私条款关于© 2026 PrimeCalcPro