Using the digits 1 to 6, how many 3 digit numbers can be formed that are divisible by 3?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I can't seem to wrap my head around this problem.How do I make sure that the digit 0 and digits from 7 to 9 are not included ? Provided- Repetition of digits is allowed.
permutations
add a comment |Â
up vote
1
down vote
favorite
I can't seem to wrap my head around this problem.How do I make sure that the digit 0 and digits from 7 to 9 are not included ? Provided- Repetition of digits is allowed.
permutations
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I can't seem to wrap my head around this problem.How do I make sure that the digit 0 and digits from 7 to 9 are not included ? Provided- Repetition of digits is allowed.
permutations
I can't seem to wrap my head around this problem.How do I make sure that the digit 0 and digits from 7 to 9 are not included ? Provided- Repetition of digits is allowed.
permutations
asked Aug 12 at 6:17
Master Maxx
263
263
add a comment |Â
add a comment |Â
4 Answers
4
active
oldest
votes
up vote
2
down vote
To be a multiple of $3$, the sum of the three digits must be a multiple of $3$.
After choosing the first two digits freely, that specifies a congruence class
modulo $3$ for the last digit, and there are two possibilities within that range.
For instance, starting with $52$, the final digit must be $2$ or $5$, etc.
add a comment |Â
up vote
1
down vote
When fixing two of the digits i.e. hundreds and tens, we get exactly two numbers from $1-6$ which placed at ones digit will make the number divisible by $3$. You can prove this by observing that there are exactly $3$ numbers of the form $3n,3n+1,3n+2$ in $1-6$.
You are free to chose first two digits then you can have your last digit in two numbers.
So the number of numbers $=$ $6times6times2=72$
add a comment |Â
up vote
0
down vote
The trick is to note that for numbers that are divisible by 3, the sum of the digits in that number are also divisible by 3.
Start then by considering the three digit numbers that contain a 6. Since this is divisible by 3 already, the sum of the remaining two numbers must also be divisible by 3. The remaining 2 numbers can thus be (5,1), (5,4), (4,2), (6,6), (6,3), (3,3), (2,1) and so on.
Once you have the possible combinations of three digit numbers that add to 3, you then simply need to calculate the number of ways this three digit combination can be arranged.
add a comment |Â
up vote
0
down vote
Let be $A = 0, 1, 2 $ least residue system modulo 3.
Let be
$$
B_1 = (a, b, c) in Atimes Atimes A : a + b + c = 3
$$
$B_1$ has $frac5!3!2! - 3 = 7$ elements, then $2^3 cdot 7 = 56$ numbers with digits $1dots6$ such that the sun of these digits modulo 3 is 3.
At last,
$$
B_2 = (a, b, c) in Atimes Atimes A : a + b + c = 6 text or a + b + c = 0
$$
$B_2 = (0, 0, 0), (2, 2, 2) $, then, $16$ numbers with this property.
Hence, They are $72$ numbers.
add a comment |Â
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
To be a multiple of $3$, the sum of the three digits must be a multiple of $3$.
After choosing the first two digits freely, that specifies a congruence class
modulo $3$ for the last digit, and there are two possibilities within that range.
For instance, starting with $52$, the final digit must be $2$ or $5$, etc.
add a comment |Â
up vote
2
down vote
To be a multiple of $3$, the sum of the three digits must be a multiple of $3$.
After choosing the first two digits freely, that specifies a congruence class
modulo $3$ for the last digit, and there are two possibilities within that range.
For instance, starting with $52$, the final digit must be $2$ or $5$, etc.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
To be a multiple of $3$, the sum of the three digits must be a multiple of $3$.
After choosing the first two digits freely, that specifies a congruence class
modulo $3$ for the last digit, and there are two possibilities within that range.
For instance, starting with $52$, the final digit must be $2$ or $5$, etc.
To be a multiple of $3$, the sum of the three digits must be a multiple of $3$.
After choosing the first two digits freely, that specifies a congruence class
modulo $3$ for the last digit, and there are two possibilities within that range.
For instance, starting with $52$, the final digit must be $2$ or $5$, etc.
answered Aug 12 at 6:26
Lord Shark the Unknown
86.7k952112
86.7k952112
add a comment |Â
add a comment |Â
up vote
1
down vote
When fixing two of the digits i.e. hundreds and tens, we get exactly two numbers from $1-6$ which placed at ones digit will make the number divisible by $3$. You can prove this by observing that there are exactly $3$ numbers of the form $3n,3n+1,3n+2$ in $1-6$.
You are free to chose first two digits then you can have your last digit in two numbers.
So the number of numbers $=$ $6times6times2=72$
add a comment |Â
up vote
1
down vote
When fixing two of the digits i.e. hundreds and tens, we get exactly two numbers from $1-6$ which placed at ones digit will make the number divisible by $3$. You can prove this by observing that there are exactly $3$ numbers of the form $3n,3n+1,3n+2$ in $1-6$.
You are free to chose first two digits then you can have your last digit in two numbers.
So the number of numbers $=$ $6times6times2=72$
add a comment |Â
up vote
1
down vote
up vote
1
down vote
When fixing two of the digits i.e. hundreds and tens, we get exactly two numbers from $1-6$ which placed at ones digit will make the number divisible by $3$. You can prove this by observing that there are exactly $3$ numbers of the form $3n,3n+1,3n+2$ in $1-6$.
You are free to chose first two digits then you can have your last digit in two numbers.
So the number of numbers $=$ $6times6times2=72$
When fixing two of the digits i.e. hundreds and tens, we get exactly two numbers from $1-6$ which placed at ones digit will make the number divisible by $3$. You can prove this by observing that there are exactly $3$ numbers of the form $3n,3n+1,3n+2$ in $1-6$.
You are free to chose first two digits then you can have your last digit in two numbers.
So the number of numbers $=$ $6times6times2=72$
answered Aug 12 at 6:39
Love Invariants
79715
79715
add a comment |Â
add a comment |Â
up vote
0
down vote
The trick is to note that for numbers that are divisible by 3, the sum of the digits in that number are also divisible by 3.
Start then by considering the three digit numbers that contain a 6. Since this is divisible by 3 already, the sum of the remaining two numbers must also be divisible by 3. The remaining 2 numbers can thus be (5,1), (5,4), (4,2), (6,6), (6,3), (3,3), (2,1) and so on.
Once you have the possible combinations of three digit numbers that add to 3, you then simply need to calculate the number of ways this three digit combination can be arranged.
add a comment |Â
up vote
0
down vote
The trick is to note that for numbers that are divisible by 3, the sum of the digits in that number are also divisible by 3.
Start then by considering the three digit numbers that contain a 6. Since this is divisible by 3 already, the sum of the remaining two numbers must also be divisible by 3. The remaining 2 numbers can thus be (5,1), (5,4), (4,2), (6,6), (6,3), (3,3), (2,1) and so on.
Once you have the possible combinations of three digit numbers that add to 3, you then simply need to calculate the number of ways this three digit combination can be arranged.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The trick is to note that for numbers that are divisible by 3, the sum of the digits in that number are also divisible by 3.
Start then by considering the three digit numbers that contain a 6. Since this is divisible by 3 already, the sum of the remaining two numbers must also be divisible by 3. The remaining 2 numbers can thus be (5,1), (5,4), (4,2), (6,6), (6,3), (3,3), (2,1) and so on.
Once you have the possible combinations of three digit numbers that add to 3, you then simply need to calculate the number of ways this three digit combination can be arranged.
The trick is to note that for numbers that are divisible by 3, the sum of the digits in that number are also divisible by 3.
Start then by considering the three digit numbers that contain a 6. Since this is divisible by 3 already, the sum of the remaining two numbers must also be divisible by 3. The remaining 2 numbers can thus be (5,1), (5,4), (4,2), (6,6), (6,3), (3,3), (2,1) and so on.
Once you have the possible combinations of three digit numbers that add to 3, you then simply need to calculate the number of ways this three digit combination can be arranged.
answered Aug 12 at 6:29
Kenshin
1,00221228
1,00221228
add a comment |Â
add a comment |Â
up vote
0
down vote
Let be $A = 0, 1, 2 $ least residue system modulo 3.
Let be
$$
B_1 = (a, b, c) in Atimes Atimes A : a + b + c = 3
$$
$B_1$ has $frac5!3!2! - 3 = 7$ elements, then $2^3 cdot 7 = 56$ numbers with digits $1dots6$ such that the sun of these digits modulo 3 is 3.
At last,
$$
B_2 = (a, b, c) in Atimes Atimes A : a + b + c = 6 text or a + b + c = 0
$$
$B_2 = (0, 0, 0), (2, 2, 2) $, then, $16$ numbers with this property.
Hence, They are $72$ numbers.
add a comment |Â
up vote
0
down vote
Let be $A = 0, 1, 2 $ least residue system modulo 3.
Let be
$$
B_1 = (a, b, c) in Atimes Atimes A : a + b + c = 3
$$
$B_1$ has $frac5!3!2! - 3 = 7$ elements, then $2^3 cdot 7 = 56$ numbers with digits $1dots6$ such that the sun of these digits modulo 3 is 3.
At last,
$$
B_2 = (a, b, c) in Atimes Atimes A : a + b + c = 6 text or a + b + c = 0
$$
$B_2 = (0, 0, 0), (2, 2, 2) $, then, $16$ numbers with this property.
Hence, They are $72$ numbers.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Let be $A = 0, 1, 2 $ least residue system modulo 3.
Let be
$$
B_1 = (a, b, c) in Atimes Atimes A : a + b + c = 3
$$
$B_1$ has $frac5!3!2! - 3 = 7$ elements, then $2^3 cdot 7 = 56$ numbers with digits $1dots6$ such that the sun of these digits modulo 3 is 3.
At last,
$$
B_2 = (a, b, c) in Atimes Atimes A : a + b + c = 6 text or a + b + c = 0
$$
$B_2 = (0, 0, 0), (2, 2, 2) $, then, $16$ numbers with this property.
Hence, They are $72$ numbers.
Let be $A = 0, 1, 2 $ least residue system modulo 3.
Let be
$$
B_1 = (a, b, c) in Atimes Atimes A : a + b + c = 3
$$
$B_1$ has $frac5!3!2! - 3 = 7$ elements, then $2^3 cdot 7 = 56$ numbers with digits $1dots6$ such that the sun of these digits modulo 3 is 3.
At last,
$$
B_2 = (a, b, c) in Atimes Atimes A : a + b + c = 6 text or a + b + c = 0
$$
$B_2 = (0, 0, 0), (2, 2, 2) $, then, $16$ numbers with this property.
Hence, They are $72$ numbers.
answered Aug 12 at 8:25
GinoCHJ
794
794
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2880030%2fusing-the-digits-1-to-6-how-many-3-digit-numbers-can-be-formed-that-are-divisib%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password