Mathematics · Algebra

Prime Factorization Calculator

Decompose a positive whole number into prime factors and show the division sequence.

Runs locally
Your numbers

Inputs and results stay in this browser. Change one value at a time to explore the relationship.

Your inputCalculatedPassed forward in chains
Largest prime factor5
Prime factors with multiplicity6
Distinct prime factors3

Calculation steps

  1. 360=2^3 × 3^2 × 5.
  2. Multiplying the prime factors returns 360.

Understand Prime factorization

One idea, three depths

Choose how deeply to explain Prime factorization

Prime factorization: Decompose a positive whole number into prime factors and show the division sequence.

Age 5Explain it to a 5-year-oldStart with a picture

Imagine using Prime factorization to answer this question: decompose a positive whole number into prime factors and show the division sequence? Enter Whole number n; the calculator shows Largest prime factor. For example: 360=2³×3²×5. The answer tells you Largest prime factor.

Age 15Explain it to a 15-year-oldConnect it to the formula

Repeatedly dividing by the smallest available prime produces a unique prime factorization apart from factor order. The rule is n=p₁^a₁p₂^a₂…pₖ^aₖ. Its input values are Whole number n, and the main result is Largest prime factor. For example: 360=2³×3²×5.

CollegeExplain it at college levelState the model precisely

This calculator evaluates the stated prime factorization relation over the valid integer domain stated below. The implemented relation is n=p₁^a₁p₂^a₂…pₖ^aₖ, evaluated from Whole number n to produce Largest prime factor. Repeatedly dividing by the smallest available prime produces a unique prime factorization apart from factor order. Prime factorization applies to whole numbers greater than one; one itself is not prime.

Inputs and valid domain

  • Whole number n must be an integer, at least 2, at most 999999999999.

Important boundary: Prime factorization applies to whole numbers greater than one; one itself is not prime.

The formula

n=p₁^a₁p₂^a₂…pₖ^aₖ

How the calculator works through it

It substitutes Whole number n into the formula and exposes every numerical step above. The main output is Largest prime factor, accompanied by Prime factors with multiplicity, Distinct prime factors.

Read the result correctly

The Largest prime factor is the direct answer to “decompose a positive whole number into prime factors and show the division sequence.” Read it with the units shown beside the inputs; a sign, angle, percentage or rate changes what the number means.

A worked check

360=2³×3²×5.

Where this model stops being reliable

Prime factorization applies to whole numbers greater than one; one itself is not prime.

Learn it by changing one value

Begin with the worked example, then change one value while keeping the others fixed. Compare the new result and calculation steps to identify which part of the formula changed.

Dictionary terms behind this calculator

Before studying the codeWhat you should know firstUse the calculator immediately, or check the foundations before reading the implementation.

These foundations help you understand why Prime factorization works. They never block the calculator, and “optional” means useful context rather than a hidden requirement.

Hard requirements

  • Reading formulas and substituting values

    Prime factorization uses n=p₁^a₁p₂^a₂…pₖ^aₖ. You need to recognise what each side represents before substituting the stated inputs or rearranging the relationship.

    Review this foundation about 4 min

Strong support

Optional enrichment

  • Powers and exponents

    Powers are not required for every Prime factorization calculation, but they make related algebraic forms and code easier to read.

    Review this foundation about 4 min
Learn the missing foundationsI already know these — show the code

Mathematics → algorithm → program

Implement this calculation in code

These are direct reference implementations of the calculator's principal relationship and first output. They run locally and include a small known-answer check where the language supports it.

Algorithm

  1. Start with divisor 2 and repeatedly divide n while the division has no remainder.
  2. Continue with odd candidate divisors while divisor squared is no greater than the remaining value.
  3. If the remaining value is greater than one, it is the largest prime factor.
Python
            def largest_prime_factor(n: int) -> int:
    if n < 2:
        raise ValueError("n must be at least 2")
    largest = 1
    divisor = 2
    while divisor * divisor <= n:
        while n % divisor == 0:
            largest = divisor
            n //= divisor
        divisor = 3 if divisor == 2 else divisor + 2
    return max(largest, n)

assert largest_prime_factor(360) == 5
          
Current calculator valuesUpdates when you change an input above.
              
            
C
            #include <assert.h>
#include <stdint.h>

uint64_t largest_prime_factor(uint64_t n) {
    uint64_t largest = 1;
    for (uint64_t divisor = 2; divisor <= n / divisor;
         divisor = divisor == 2 ? 3 : divisor + 2) {
        while (n % divisor == 0) {
            largest = divisor;
            n /= divisor;
        }
    }
    return n > largest ? n : largest;
}

int main(void) { assert(largest_prime_factor(360) == 5); }
          
Current calculator valuesUpdates when you change an input above.
              
            
C++
            #include <cassert>
#include <cstdint>
#include <algorithm>

std::uint64_t largest_prime_factor(std::uint64_t n) {
    std::uint64_t largest = 1;
    for (std::uint64_t divisor = 2; divisor <= n / divisor;
         divisor = divisor == 2 ? 3 : divisor + 2) {
        while (n % divisor == 0) {
            largest = divisor;
            n /= divisor;
        }
    }
    return std::max(largest, n);
}

int main() { assert(largest_prime_factor(360) == 5); }
          
Current calculator valuesUpdates when you change an input above.
              
            
Linux x86-64 assembly

x86-64 NASM · System V ABI · Linux · integer arguments in rdi, rsi and rdx

            ; uint64_t largest_prime_factor(uint64_t n)
global largest_prime_factor
section .text
largest_prime_factor:
    mov r8, rdi             ; remaining n
    mov r9, 1               ; largest factor
    mov rcx, 2              ; candidate divisor
.candidate:
    mov rax, r8
    xor edx, edx
    div rcx
    cmp rcx, rax            ; divisor > remaining/divisor?
    ja .finish
.divide:
    mov rax, r8
    xor edx, edx
    div rcx
    test rdx, rdx
    jnz .next
    mov r8, rax
    mov r9, rcx
    jmp .divide
.next:
    cmp rcx, 2
    jne .odd
    mov rcx, 3
    jmp .candidate
.odd:
    add rcx, 2
    jmp .candidate
.finish:
    mov rax, r9
    cmp r8, rax
    cmova rax, r8
    ret
          
Current calculator valuesUpdates when you change an input above.
              
            
MATLAB
            function result = largest_prime_factor(n)
    remaining = abs(round(n)); result = 1; divisor = 2;
    while divisor * divisor <= remaining
        while mod(remaining, divisor) == 0
            result = divisor; remaining = remaining / divisor;
        end
        if divisor == 2, divisor = 3; else, divisor = divisor + 2; end
    end
    result = max(result, remaining);
end
          
Current calculator valuesUpdates when you change an input above.
              
            
Wolfram Language
            ClearAll[mwCalculate];
mwCalculate[n_Integer] /; Abs[n] >= 2 := Max[First /@ FactorInteger[Abs[n]]];
          
Current calculator valuesUpdates when you change an input above.
              
            

Continue in mathematical software

The downloaded file includes your current inputs and first calculated result. It is created locally.

Floating-point answers can differ slightly by language, compiler and processor. Compare within a suitable tolerance rather than assuming every decimal representation will be identical.

Supporting sourcesAcademic referencesPrimary standards, textbooks and complete citations

Standards, reading and academic references

Use the calculator as the worked interaction, then consult the primary standards and academic textbooks listed below. MW SysArc links to the original sources; the explanation on this page is original and does not reproduce them.

Algebra and Trigonometry 2e

Read the related free OpenStax mathematics chapters
Cite this book
APA 7
Abramson, J. (2021). Algebra and trigonometry 2e. OpenStax. https://openstax.org/books/algebra-and-trigonometry-2e/pages/1-introduction-to-prerequisites
MLA 9
Abramson, Jay. Algebra and Trigonometry 2e. OpenStax, 2021, https://openstax.org/books/algebra-and-trigonometry-2e/pages/1-introduction-to-prerequisites.
Chicago author-date
Abramson, Jay. 2021. Algebra and Trigonometry 2e. Houston, TX: OpenStax. https://openstax.org/books/algebra-and-trigonometry-2e/pages/1-introduction-to-prerequisites.

OpenStax entries are free to read online. Follow the licence shown on each linked source before redistributing or adapting its content.

Reuse the page responsiblyCite this pageAPA, MLA, Chicago, Harvard, BibTeX and RIS

These formats cite this calculator page itself. They are separate from the academic references above, which support the mathematical method and terminology.

APA 7

MW SysArc. (2026, July 21). Prime Factorization Calculator. MW SysArc Tools. https://math.mwsysarc.com/algebra/prime-factorization-calculator

MLA 9

MW SysArc. “Prime Factorization Calculator.” MW SysArc Tools, 21 July 2026, https://math.mwsysarc.com/algebra/prime-factorization-calculator. Accessed 31 Aug. 2026.

Chicago 17

MW SysArc. “Prime Factorization Calculator.” MW SysArc Tools. Published July 21, 2026. Accessed August 31, 2026. https://math.mwsysarc.com/algebra/prime-factorization-calculator.

Harvard

MW SysArc (2026) ‘Prime Factorization Calculator’, MW SysArc Tools. Published 21 July 2026. Available at: https://math.mwsysarc.com/algebra/prime-factorization-calculator (Accessed: 31 August 2026).

BibTeX and RIS records

BibTeX

@misc{mwsysarc_prime_factorization_2026,
  author = {{MW SysArc}},
  title = {Prime Factorization Calculator},
  howpublished = {MW SysArc Tools},
  year = {2026},
  url = {https://math.mwsysarc.com/algebra/prime-factorization-calculator},
  note = {Published July 21, 2026; accessed August 31, 2026}
}

RIS

TY  - ELEC
AU  - MW SysArc
TI  - Prime Factorization Calculator
T2  - MW SysArc Tools
PY  - 2026
DA  - 2026-07-21
Y2  - 2026-08-31
UR  - https://math.mwsysarc.com/algebra/prime-factorization-calculator
N1  - Published July 21, 2026
ER  -

Clear answers

Frequently asked questions

What does the Prime factorization do?

Decompose a positive whole number into prime factors and show the division sequence.

How does the Prime factorization work?

The calculator applies n=p₁^a₁p₂^a₂…pₖ^aₖ. Repeatedly dividing by the smallest available prime produces a unique prime factorization apart from factor order.

What can I learn from the Prime factorization?

It connects the mathematical rule to your chosen numbers and shows each calculation step. Change one input at a time to see how the result responds.

Does MW SysArc receive or store what I enter?

No. The calculation runs locally in your browser. MW SysArc does not receive or store your calculation inputs.

How should I use the result?

Use the steps to understand the method, then verify important school or professional work using the notation and rounding rules required in your setting.

Last reviewed . Calculations tested .

MW SysArc Certified