BDSunDevil
Each factor of 210 is inscribed on its own plastic ball, and all of the balls are placed in a jar. If a ball is randomly selected from the jar, what is the probability that the ball is inscribed with a multiple of 42?
A. 1/16
B. 5/42
C. 1/8
D. 3/16
E. 1/4
Please post the fastest method with time.
210=2*3*5*7, so the # of factors 210 has is (1+1)(1+1)(1+1)(1+1)=16 (see below);
42=2*3*7, so out of 16 factors only two are multiples of 42: 42 and 210, itself;
So, the probability is 2/16=1/8.
Answer: C.
Finding the Number of Factors of an IntegerFirst make prime factorization of an integer \(n=a^p*b^q*c^r\), where \(a\), \(b\), and \(c\) are prime factors of \(n\) and \(p\), \(q\), and \(r\) are their powers.
The number of factors of \(n\) will be expressed by the formula \((p+1)(q+1)(r+1)\).
NOTE: this will include 1 and n itself.
Example: Finding the number of all factors of 450: \(450=2^1*3^2*5^2\)
Total number of factors of 450 including 1 and 450 itself is \((1+1)*(2+1)*(2+1)=2*3*3=18\) factors.
For more on these issues check Number Theory chapter of Math Book:
math-number-theory-88376.htmlHope it helps.
As it said multiples of 42, I had not considered 42 itself.