for each of the prime factors take the index plus 1 and times then togetherAlso got this Q: Considering 315000 = 2^3 x 3^2 x 5^4 x 7, find the number of positive divisors of 315000
Why?for each of the prime factors take the index plus 1 and times then together
so 4x3x5x2=120
Because all divisors of a number are essentially combinations of their prime factorsWhy?
basically if those are the prime factors, you can include any of them in a divisor raised to any integer power, maximum being the index of the prime factors, but also including ^0.Why?
is it not possible to have triangle 1 be made up of {6,1,2} and triangle 2 made up of {3,4,5} ?Choose all 6 vertices without assigning them to a specific triangle. Done in ways.
Now you want to assign these points to the 2 triangles without overlapping the areas. Thus the vertices must be assigned in cyclic order. i.e. going around the vertices in order of where they lie on the circle, assign the first 3 vertices to the first triangle and the last 3 to the second triangle.
This is done in 3 ways.
So answer is
Rushed this so hopefully I haven't miscounted the amount of ways to assign the vertices.
Treat 2 E's as one unit. You can arrange them together in 1 way.
or thisTreat 2 E's as one unit. You can arrange them together in 1 way.
Arrange everything else first: ways.
You have 11 gaps to insert EE and E into, which means there are ways to insert them in.
Therefore arrangements with two E's together and one apart= .
divide by total number of arrangements and you should get it.
That was counted in my solution.is it not possible to have triangle 1 be made up of {6,1,2} and triangle 2 made up of {3,4,5} ?
Nice Very cleanChoose all 6 vertices without assigning them to a specific triangle. Done in ways.
Now you want to assign these points to the 2 triangles without overlapping the areas. Thus the vertices must be assigned in cyclic order. i.e. going around the vertices in order of where they lie on the circle, assign the first 3 vertices to the first triangle and the last 3 to the second triangle.
This is done in 3 ways.
So answer is
Rushed this so hopefully I haven't miscounted the amount of ways to assign the vertices.
That is the same outcome as triangle 1 made up of {3,4,5} and triangle 2 made up of {6,1,2}.is it not possible to have triangle 1 be made up of {6,1,2} and triangle 2 made up of {3,4,5} ?
yeah nvm this was not what i was confused about, i just made a stupid mistake in my solutionThat is the same outcome as triangle 1 made up of {3,4,5} and triangle 2 made up of {6,1,2}.
i assume it wants the same. soI have another Q that I feel doesn't deserve a new thread:
"There are two distinct round tables, each with five seats. In how many ways may a group of ten people be seated?"
How would you set the "reference point" for each table? With one table you just use a random person but idk here
That's probably the answer they want, but whoever thought up these two table questions has no idea.i assume it wants the same. so
10C5*4!*4!
10C5 chooses 5 for the first table, 4!*4! arranges 5 on each table.