Find the number of ordered triplets of integers such that the L.C.M of ? My approach:
Since we are talking about the lease common multiple we can safely assume that all are of the form where are non negative integers.Now we have that ,so at least one of and same with ,now there are three ways of choosing that one,and after that is done the two left can be ) hence choices,so the answer should be ,but it isnt,can somebody point out the mistake please.
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Siddhartha is correct; your method involves some double-counting. I looked at this case by case: let j be the number of elements of (a,b,c) that equal 3 and k be the number of elements of (d,e,f) that equal 3, with both j and k ranging from 1 to 3. There are then 3∗3=9 case pairs (j,k) to analyze.
For example, for (j,k)=(1,1) we can choose one of (a,b,c) in 3 ways, one of (d,e,f) in 3 ways, and the remaining four powers can each be any of 0,1 or 2. This results in a total of 36=729 ordered triples (x,y,z).
With N(j,k) being the number of ordered triples (x,y,z) resulting from particular values of (j,k), I find that
N(1,1)=36,N(1,2)=N(2,1)=35,N(2,2)=34,N(1,3)=N(3,1)=33,N(2,3)=N(3,2)=32,N(3,3)=1.
These values sum to a total of 1369 ordered triples (x,y,z).
Log in to reply
A simpler solution is the square of the number of ways to choose (a,b,c) from (0,1,2,3) minus the number of ways to choose (a,b,c) from (0,1,2). This is (43−33)2=(37)2=1369
Log in to reply
well can u please explain the logic behind your answer? i mean how did you get that expression
Log in to reply
(a,b,c) can take values from (0,1,2,3). This is 43.
Max(a,b,c) = 3. Therefore each ofNow, we subtract cases where none of (a,b,c) are 3.
This is equivalent to the cases where values of (a,b,c) is from 0,1,2. This is 33.
Therefore the required value is 43−33.We square this since max(d,e,f) =3 also has 43−33 cases
Log in to reply
Ohk thanx a lot for helping me!
You're double counting many cases. For example, you count the case (3,3,0) two times.
Log in to reply
Thanx for pointing out my mistake.
Since we are taking LCM so we can assume x = 2^a 3^d, y = 2^b 3^e, z = 2^c 3^f, where a, b, c, d, e, f, g are non negative integers. As per question max {a, b, c} = 3 and max {d, e, f} = 3. Number of ways in which max {a, b, c} = 3 is 4^3 – 3^3 = 37. Similarly, number of cases for max {d, e, f} = 3 is 37. Hence numbers of required ordered triplets = 37 × 37 = 1369.