Permutation Generator
Generate every ordered arrangement of your items — full permutations, or pick a smaller k for partial arrangements.
Advertisement
How to use Permutation Generator
- Enter your items one per line.
- Leave k blank to use every item, or set a smaller number for partial permutations.
- Pick how items inside one permutation should be joined.
- Click Generate.
What is Permutation Generator?
Given a list of items (one per line), this tool returns every distinct ordering. Set k smaller than the list length to get partial permutations P(n, k). Because permutations explode factorially, the output is capped at 10,000 entries — a warning appears when the cap kicks in so you know there are more arrangements possible.
Advertisement
FAQ
- Why is the output capped?
- Permutation counts grow factorially — even ten items produce 3.6 million orderings. The 10,000 cap keeps the browser responsive.
- Does it dedupe identical items?
- No. Items are treated as distinct by position, even if their text matches, so repeated entries produce repeated permutations.