Hussain15
If N = 2^5 × 3^4 × 5^2, then
a) Find the total even factors of N.
b) Find the total odd factors of N.
c) Find total prime factors of N.
d) Find total composite factors of n.
e) Find total factors of N which are multiples of 4.
f) Find total factors of N which are multiples of 6.
g) Find total factors of N which are multiples of 8.
h) Find total factors of N which are multiples of 12.
i) Find total factors of N which are multiples of 30.
j) Find total factors of N which will end with at least one trailing zero.
k) Find total factors of N which are perfect squares.
Well, is this within the scope of GMAT?
go get number of factors of a number is available in OG, so these combinations are also quite possible.
here i propose a very unique way to handle these issues in efficient way:
first write all the factors in following way:
\(2^5 * 3^4 * 5^2\)= \(( 2^0 * 2^1 * 2^2 * 2^3 * 2^4 * 2^5 )( 3^0 * 3^1 * 3^2 * 3^3 * 3^4 )( 5^0 * 5^1 * 5^2 )\)
now let's start one by one:
1. number of even factors in above equation will be : count all 2's(except 0 power) * all 3's( along with 0 power)* all 5(along with 0 power)*
\(= 5*5*3 = 75\)
2. number of odd factors: odd factors should not contain 2's.
so number will be count all 2's(only 0 power) * all 3's( along with 0 power)* all 5(along with 0 power)*
\(= 1*5*3 = 15\)
3. prime factors no need to count it's obvious : 2,3,5 i.e. number of prime factors =3
4. total composite factors , count all 2's(along with 0 power) * all 3's( along with 0 power)* all 5(along with 0 power)*
\(= 6*5*3 = 90\)
5.total number of factors which are multiple of 4's
count = count all 2's(with more than or equal to power 2) * all 3's( along with 0 power)* all 5(along with 0 power)*
\(= 4*5*3 = 60\)
6. for number of factors 6:
count = count all 2's(excluding 0 power ) * all 3's( excluding 0 power)* all 5(along with 0 power)*
\(= 5*4*3 = 60\)
similarly other counting for other can be done..
your comments are most welcome..
please, consider giving kudos if the post is useful thank you..
i was struggling how to get factors of given number. i will try with this representation gooood post