Is there a way to reverse factorials?

59.6k Views Asked by At

Is there any way I can 'undo' the factorial operation? JUst like you can do squares and square roots, can you do factorials and factorial roots (for lack of a better term)?

Here is an example: 5! = 120. Is there a way I can work out the number that must be factorialed (??) to give the answer 120?

1

There are 1 best solutions below

2
On

You can just divide the "answer" by consecutive positive integers, and when the result is 1, the last number you divided by is the number that the "answer" is factorial of. For example: 120 / 2 = 60, 60 / 3 = 20, 20 / 4 = 5, 5 / 5 = 1, so the number that 120 is the factorial of is 5.