answersLogoWhite

0


Best Answer

The value of 10 factorial (10!) is 3628800.

The positive integer factors of 3628800 are:

1 2 3 4 5 6 7 8 9 10 12 14 15 16 18 20 21 24 25 27 28 30 32 35 36 40 42 45 48 50 54 56 60 63 64 70 72 75 80 81 84 90 96 100 105 108 112 120 126 128 135 140 144 150 160 162 168 175 180 189 192 200 210 216 224 225 240 252 256 270 280 288 300 315 320 324 336 350 360 378 384 400 405 420 432 448 450 480 504 525 540 560 567 576 600 630 640 648 672 675 700 720 756 768 800 810 840 864 896 900 945 960 1008 1050 1080 1120 1134 1152 1200 1260 1280 1296 1344 1350 1400 1440 1512 1575 1600 1620 1680 1728 1792 1800 1890 1920 2016 2025 2100 2160 2240 2268 2304 2400 2520 2592 2688 2700 2800 2835 2880 3024 3150 3200 3240 3360 3456 3600 3780 3840 4032 4050 4200 4320 4480 4536 4725 4800 5040 5184 5376 5400 5600 5670 5760 6048 6300 6400 6480 6720 6912 7200 7560 8064 8100 8400 8640 8960 9072 9450 9600 10080 10368 10800 11200 11340 11520 12096 12600 12960 13440 14175 14400 15120 16128 16200 16800 17280 18144 18900 19200 20160 20736 21600 22400 22680 24192 25200 25920 26880 28350 28800 30240 32400 33600 34560 36288 37800 40320 43200 44800 45360 48384 50400 51840 56700 57600 60480 64800 67200 72576 75600 80640 86400 90720 100800 103680 113400 120960 129600 134400 145152 151200 172800 181440 201600 226800 241920 259200 302400 362880 403200 453600 518400 604800 725760 907200 1209600 1814400 3628800

This is a total of 270 factors.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many factors does the number 10 factorial have?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many zeros are possible factorial 10 to the power factorial 10?

Factorial 10 to the power factorial 10 will have 7257600 zeros.


Write a recursive procedure to compute the factorial of a number?

#include <iostream> using namespace std; int main() { int i, number=0, factorial=1; // User input must be an integer number between 1 and 10 while(number<1 number>10) { cout << "Enter integer number (1-10) = "; cin >> number; } // Calculate the factorial with a FOR loop for(i=1; i<=number; i++) { factorial = factorial*i; } // Output result cout << "Factorial = " << factorial << endl;


How many factors does the number 10?

Four factors.


How do you determine the number of factors a factorial of a number has?

Suppose you're talking about N factorial. For an example, we'll let N be 20.For each prime number p, repeatedly divide N by p, discarding the remainder. Add up the answers.20/2 = 10, 10/2 = 5, 5/2 = 2, 2/2 = 1. 10+5+2+1 = 18.20/3 = 6, 6/3 = 2. 6+2 = 8.20/5 = 420/7 = 220/11 = 120/13 = 120/17 = 120/19 = 1Now add 1 to each of these results: 19,9,5,3,2,2,2,2.Now multiply these numbers. 19x9x5x3x2x2x2x2 = 41040.This is how many factors the factorial has. 20! has 41040 factors. (This includes both 1 and the factorial itself. Subtract 1 if you're only counting the proper factors.)The proof is left as an exercise for the reader.


How many factors does the number 10 have?

The number 10 can be the product of 2 and 5, 1 and 10. This means that 10 has 4 factors. :]


What is 35 factorial?

35 factorial = 1.0333148 × 10^40.... THAT IS A REALLY BIG NUMBER. Sterling came up with a good way to approximate it.


The number 9 has three different factors the number 10 has how many different factors?

Four


What is 1000000000 factorial?

The only one thing bother me is: "Why do you need the factorial of such a big number?" I can only tell you that 1000000000! contains 1.57637137 × 10^8,565,705,531 symbols


What is 10 factorial?

10! = 3,628,800


What value is equivalent to the following symbol 10!6!?

10! and 6! means factorial of 10, and factorial of 6, respectively. You can calculate that on most scientific calculators - or you can multiply all numbers from 1 to 6 for the factorial of 6, and all numbers from 1 to 10 for the factorial of 10.


How many different ways can you arrange the letters in the word journalism?

There are 10 letters is the word JOURNALISM. Since they are all different, the number of ways you can arrange them is simply the number of permutations of 10 things taken 10 at a time, or 10 factorial, or 3,628,800.


What is a factorial loop?

An example in Java, to compute 10!: int factorial = 1; for(int i = 1; i < 11; i++) { factorial *= i; }