Numbers up to 1000 divisible by 2 or 3 and no other prime
$begingroup$
My task requires to find all numbers from $1-1000$ such that they are divisible by $2$ or $3$ and no other primes. I know that $2$ divides even numbers and I can use the formula $left lfloor{frac{1000}{2}}right rfloor $ and the numbers divisible by three $left lfloor{frac{1000}{3}}right rfloor $. Also we rule out the numbers that are divisible by both, so by $6$ $left lfloor{frac{1000}{6}}right rfloor $. In total we get that there are $500+333-166=667$ numbers divisible by $2$ or $3$. However I also need to make sure that I $textit{only}$ count numbers divisible by either of these $2$. Is there a quick way to do it?
number-theory elementary-number-theory floor-function inclusion-exclusion
$endgroup$
add a comment |
$begingroup$
My task requires to find all numbers from $1-1000$ such that they are divisible by $2$ or $3$ and no other primes. I know that $2$ divides even numbers and I can use the formula $left lfloor{frac{1000}{2}}right rfloor $ and the numbers divisible by three $left lfloor{frac{1000}{3}}right rfloor $. Also we rule out the numbers that are divisible by both, so by $6$ $left lfloor{frac{1000}{6}}right rfloor $. In total we get that there are $500+333-166=667$ numbers divisible by $2$ or $3$. However I also need to make sure that I $textit{only}$ count numbers divisible by either of these $2$. Is there a quick way to do it?
number-theory elementary-number-theory floor-function inclusion-exclusion
$endgroup$
1
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34
add a comment |
$begingroup$
My task requires to find all numbers from $1-1000$ such that they are divisible by $2$ or $3$ and no other primes. I know that $2$ divides even numbers and I can use the formula $left lfloor{frac{1000}{2}}right rfloor $ and the numbers divisible by three $left lfloor{frac{1000}{3}}right rfloor $. Also we rule out the numbers that are divisible by both, so by $6$ $left lfloor{frac{1000}{6}}right rfloor $. In total we get that there are $500+333-166=667$ numbers divisible by $2$ or $3$. However I also need to make sure that I $textit{only}$ count numbers divisible by either of these $2$. Is there a quick way to do it?
number-theory elementary-number-theory floor-function inclusion-exclusion
$endgroup$
My task requires to find all numbers from $1-1000$ such that they are divisible by $2$ or $3$ and no other primes. I know that $2$ divides even numbers and I can use the formula $left lfloor{frac{1000}{2}}right rfloor $ and the numbers divisible by three $left lfloor{frac{1000}{3}}right rfloor $. Also we rule out the numbers that are divisible by both, so by $6$ $left lfloor{frac{1000}{6}}right rfloor $. In total we get that there are $500+333-166=667$ numbers divisible by $2$ or $3$. However I also need to make sure that I $textit{only}$ count numbers divisible by either of these $2$. Is there a quick way to do it?
number-theory elementary-number-theory floor-function inclusion-exclusion
number-theory elementary-number-theory floor-function inclusion-exclusion
edited Mar 1 '18 at 14:42
mandella
asked Mar 1 '18 at 14:26
mandellamandella
787521
787521
1
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34
add a comment |
1
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34
1
1
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34
add a comment |
4 Answers
4
active
oldest
votes
$begingroup$
Such a number should be in the form of $2^m3^n$ where $m$ and $n$ are non-negative integers such that $m$ and $n$ are not both zero.
If $n=0$, $mge1$ and $2^mle1000$. So $1le mle 9$.
If $n=1$, $2^mlefrac{1000}{3}$. So $0le mle 8$.
If $n=2$, $2^mlefrac{1000}{9}$. So $0le mle 6$.
If $n=3$, $2^mlefrac{1000}{27}$. So $0le mle 5$.
If $n=4$, $2^mlefrac{1000}{81}$. So $0le mle 3$.
If $n=5$, $2^mlefrac{1000}{243}$. So $0le mle 2$.
If $n=6$, $2^mlefrac{1000}{729}$. So $m= 0$.
If $n=7$, $2^mlefrac{1000}{2187}$, which is impossible.
Number of possibilities is $9+9+7+6+4+3+1=39$.
$endgroup$
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
|
show 5 more comments
$begingroup$
You want numbers of the form $2^a3^b$ where $a,b geq 0$ and not both are equal to $0$. Trivial check gives that $aleq9, bleq6$. You can do case-by-case work:
$1)$ $a=0$. You get $6$ possibilities for $6$ since $bneq0$ in this case
$2)$ $a=1$. You get $3^bleq500$, hence $6$ solutions
$3)$ $a=2Longrightarrow6$ solutions
$4)$ $a=3Longrightarrow5$ solutions
$5)$ $a=4Longrightarrow4$ solutions
$6)$ $a=5Longrightarrow4$ solutions
$7)$ $a=6Longrightarrow3$ solutions
$8)$ $a=7Longrightarrow2$ solutions
$9)$ $a=8Longrightarrow2$ solutions
$10)$ $a=9Longrightarrow1$ solution
Sum all those solutions and you are good to go! The answer is 39
$endgroup$
add a comment |
$begingroup$
did you notice that the numbers which are divisible by 2 or 3 but not other prime are just all powers of 2 (below 1000), all powers of 3 (below 1000) and any product of them (below 1000)? and they are very few of them... $2^9$ is the last power of 2 below 1000, $3^6$ is the last power of 3 below 1000, and the biggest combination of them is $2^3times 3^4$.
$endgroup$
add a comment |
$begingroup$
Consider:
Step 1:
$$ S_0 = {1,2,3,4} $$
$$ A_0 = 2S_0 = {2,4,6,8} $$
$$ B_0 = 3S_0 = {3,6,9,12} $$
Step 2:
$$ S_1 = S_0 cup A_0 cup B_0 = {1,2,3,4,6,8,9,12} $$
$$ A_1 = 2S_1 = {2,4,6,8,12,16,18,24} $$
$$ B_1 = 3S_1 = {3,6,9,12,18,24,27,36} $$
Step 3:
$$ S_2 = S_1 cup A_1 cup B_1 = {1,2,3,4,6,8,9,12,16,18,24,27,36} $$
$$ A_2 = 2S_2 = {2,4,6,8,12,16,18,24,32,36,48,54,72} $$
$$ B_2 = 3S_2 = {3,6,9,12,18,24,27,36,48,54,72,81,108} $$
Step 4:
$$ S_3 = S_2 cup A_2 cup B_2 = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,72,81,108} $$
And soo on...
$$ S = {1} cup 2S cup 3S $$
Other Algorithm:
$$ A_0 = {1,2,4,8,16,32,64,128,256,512,...} $$
$$ A_1 = 3A_0 = {3,6,12,24,48,96,192,384,768,...} $$
$$ A_2 = 3A_1 = {9,18,36,72,144,288,576,...} $$
$$ A_3 = 3A_2 = {27,54,108,216,432,864,...} $$
$$ A_4 = 3A_3 = {81,162,324,648,...} $$
$$ A_5 = 3A_4 = {243,486,972,...} $$
$$ A_6 = 3A_5 = {729,...} $$
Then:
$$ S = A_0 cup A_1 cup A_2 cup A_3 cup A_4 cup A_5 cup A_6 cup {...} $$
$$ S = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,64,72,81,96,108,128,144,162,192,...} $$
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2672258%2fnumbers-up-to-1000-divisible-by-2-or-3-and-no-other-prime%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Such a number should be in the form of $2^m3^n$ where $m$ and $n$ are non-negative integers such that $m$ and $n$ are not both zero.
If $n=0$, $mge1$ and $2^mle1000$. So $1le mle 9$.
If $n=1$, $2^mlefrac{1000}{3}$. So $0le mle 8$.
If $n=2$, $2^mlefrac{1000}{9}$. So $0le mle 6$.
If $n=3$, $2^mlefrac{1000}{27}$. So $0le mle 5$.
If $n=4$, $2^mlefrac{1000}{81}$. So $0le mle 3$.
If $n=5$, $2^mlefrac{1000}{243}$. So $0le mle 2$.
If $n=6$, $2^mlefrac{1000}{729}$. So $m= 0$.
If $n=7$, $2^mlefrac{1000}{2187}$, which is impossible.
Number of possibilities is $9+9+7+6+4+3+1=39$.
$endgroup$
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
|
show 5 more comments
$begingroup$
Such a number should be in the form of $2^m3^n$ where $m$ and $n$ are non-negative integers such that $m$ and $n$ are not both zero.
If $n=0$, $mge1$ and $2^mle1000$. So $1le mle 9$.
If $n=1$, $2^mlefrac{1000}{3}$. So $0le mle 8$.
If $n=2$, $2^mlefrac{1000}{9}$. So $0le mle 6$.
If $n=3$, $2^mlefrac{1000}{27}$. So $0le mle 5$.
If $n=4$, $2^mlefrac{1000}{81}$. So $0le mle 3$.
If $n=5$, $2^mlefrac{1000}{243}$. So $0le mle 2$.
If $n=6$, $2^mlefrac{1000}{729}$. So $m= 0$.
If $n=7$, $2^mlefrac{1000}{2187}$, which is impossible.
Number of possibilities is $9+9+7+6+4+3+1=39$.
$endgroup$
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
|
show 5 more comments
$begingroup$
Such a number should be in the form of $2^m3^n$ where $m$ and $n$ are non-negative integers such that $m$ and $n$ are not both zero.
If $n=0$, $mge1$ and $2^mle1000$. So $1le mle 9$.
If $n=1$, $2^mlefrac{1000}{3}$. So $0le mle 8$.
If $n=2$, $2^mlefrac{1000}{9}$. So $0le mle 6$.
If $n=3$, $2^mlefrac{1000}{27}$. So $0le mle 5$.
If $n=4$, $2^mlefrac{1000}{81}$. So $0le mle 3$.
If $n=5$, $2^mlefrac{1000}{243}$. So $0le mle 2$.
If $n=6$, $2^mlefrac{1000}{729}$. So $m= 0$.
If $n=7$, $2^mlefrac{1000}{2187}$, which is impossible.
Number of possibilities is $9+9+7+6+4+3+1=39$.
$endgroup$
Such a number should be in the form of $2^m3^n$ where $m$ and $n$ are non-negative integers such that $m$ and $n$ are not both zero.
If $n=0$, $mge1$ and $2^mle1000$. So $1le mle 9$.
If $n=1$, $2^mlefrac{1000}{3}$. So $0le mle 8$.
If $n=2$, $2^mlefrac{1000}{9}$. So $0le mle 6$.
If $n=3$, $2^mlefrac{1000}{27}$. So $0le mle 5$.
If $n=4$, $2^mlefrac{1000}{81}$. So $0le mle 3$.
If $n=5$, $2^mlefrac{1000}{243}$. So $0le mle 2$.
If $n=6$, $2^mlefrac{1000}{729}$. So $m= 0$.
If $n=7$, $2^mlefrac{1000}{2187}$, which is impossible.
Number of possibilities is $9+9+7+6+4+3+1=39$.
answered Mar 1 '18 at 14:41
CY AriesCY Aries
16.8k11743
16.8k11743
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
|
show 5 more comments
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
1
1
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
$begingroup$
@mandella Yes. You can first fix $k$ (or $m$ or $n$). With a fixed $k$, say $k=2$, then $2^m3^nle 40$. The problem reduces to the case of only $2$ and $3$ as prime factors.
$endgroup$
– CY Aries
Mar 1 '18 at 14:57
1
1
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
$begingroup$
For the original problem, the numbers are $2$, $3$, $4$, $6$, $8$, $9$, $12$, $16$, $18$, $24$, $27$, $32$, $36$, $48$, $54$, $64$, $72$, $81$, $96$, $108$, $128$, $144$, $162$, $192$, $216$, $243$, $256$, $288$, $324$, $384$, $432$, $486$, $512$, $576$, $648$, $729$, $768$, $864$, $972$.
$endgroup$
– CY Aries
Mar 1 '18 at 14:59
1
1
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
$begingroup$
For the new problem, the numbers are $2$, $3$, $4$, $5$, $6$, $8$, $9$, $10$, $12$, $15$, $16$, $18$, $20$, $24$, $25$, $27$, $30$, $32$, $36$, $40$, $45$, $48$, $50$, $54$, $60$, $64$, $72$, $75$, $80$, $81$, $90$, $96$, $100$, $108$, $120$, $125$, $128$, $135$, $144$, $150$, $160$, $162$, $180$, $192$, $200$, $216$, $225$, $240$, $243$, $250$, $256$, $270$, $288$, $300$, $320$, $324$, $360$, $375$, $384$, $400$, $405$, $432$, $450$, $480$, $486$, $500$, $512$, $540$, $576$, $600$, $625$, $640$, $648$, $675$, $720$, $729$, $750$, $768$, $800$, $810$, $864$, $900$, $960$, $972$, $1000$
$endgroup$
– CY Aries
Mar 1 '18 at 15:01
1
1
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
$begingroup$
$m$ and $n$ cannot be both zero ($2^03^0=1$ is neither divisible by $2$ nor $3$). But one of them can be zero. For example, both $2^33^0=8$ and $2^03^4=81$ are solutions.
$endgroup$
– CY Aries
Mar 1 '18 at 15:38
1
1
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
$begingroup$
If we want to find "numbers divisible by $2$ or $3$ and no other prime", then we should not include $1$ as $1$ is not divisible by $2$ and is also not divisible by $3$. If you want to find "numbers which are not divisible by any prime other than $2$ and $3$, then $1$ should be included.
$endgroup$
– CY Aries
Mar 4 '18 at 13:35
|
show 5 more comments
$begingroup$
You want numbers of the form $2^a3^b$ where $a,b geq 0$ and not both are equal to $0$. Trivial check gives that $aleq9, bleq6$. You can do case-by-case work:
$1)$ $a=0$. You get $6$ possibilities for $6$ since $bneq0$ in this case
$2)$ $a=1$. You get $3^bleq500$, hence $6$ solutions
$3)$ $a=2Longrightarrow6$ solutions
$4)$ $a=3Longrightarrow5$ solutions
$5)$ $a=4Longrightarrow4$ solutions
$6)$ $a=5Longrightarrow4$ solutions
$7)$ $a=6Longrightarrow3$ solutions
$8)$ $a=7Longrightarrow2$ solutions
$9)$ $a=8Longrightarrow2$ solutions
$10)$ $a=9Longrightarrow1$ solution
Sum all those solutions and you are good to go! The answer is 39
$endgroup$
add a comment |
$begingroup$
You want numbers of the form $2^a3^b$ where $a,b geq 0$ and not both are equal to $0$. Trivial check gives that $aleq9, bleq6$. You can do case-by-case work:
$1)$ $a=0$. You get $6$ possibilities for $6$ since $bneq0$ in this case
$2)$ $a=1$. You get $3^bleq500$, hence $6$ solutions
$3)$ $a=2Longrightarrow6$ solutions
$4)$ $a=3Longrightarrow5$ solutions
$5)$ $a=4Longrightarrow4$ solutions
$6)$ $a=5Longrightarrow4$ solutions
$7)$ $a=6Longrightarrow3$ solutions
$8)$ $a=7Longrightarrow2$ solutions
$9)$ $a=8Longrightarrow2$ solutions
$10)$ $a=9Longrightarrow1$ solution
Sum all those solutions and you are good to go! The answer is 39
$endgroup$
add a comment |
$begingroup$
You want numbers of the form $2^a3^b$ where $a,b geq 0$ and not both are equal to $0$. Trivial check gives that $aleq9, bleq6$. You can do case-by-case work:
$1)$ $a=0$. You get $6$ possibilities for $6$ since $bneq0$ in this case
$2)$ $a=1$. You get $3^bleq500$, hence $6$ solutions
$3)$ $a=2Longrightarrow6$ solutions
$4)$ $a=3Longrightarrow5$ solutions
$5)$ $a=4Longrightarrow4$ solutions
$6)$ $a=5Longrightarrow4$ solutions
$7)$ $a=6Longrightarrow3$ solutions
$8)$ $a=7Longrightarrow2$ solutions
$9)$ $a=8Longrightarrow2$ solutions
$10)$ $a=9Longrightarrow1$ solution
Sum all those solutions and you are good to go! The answer is 39
$endgroup$
You want numbers of the form $2^a3^b$ where $a,b geq 0$ and not both are equal to $0$. Trivial check gives that $aleq9, bleq6$. You can do case-by-case work:
$1)$ $a=0$. You get $6$ possibilities for $6$ since $bneq0$ in this case
$2)$ $a=1$. You get $3^bleq500$, hence $6$ solutions
$3)$ $a=2Longrightarrow6$ solutions
$4)$ $a=3Longrightarrow5$ solutions
$5)$ $a=4Longrightarrow4$ solutions
$6)$ $a=5Longrightarrow4$ solutions
$7)$ $a=6Longrightarrow3$ solutions
$8)$ $a=7Longrightarrow2$ solutions
$9)$ $a=8Longrightarrow2$ solutions
$10)$ $a=9Longrightarrow1$ solution
Sum all those solutions and you are good to go! The answer is 39
answered Mar 1 '18 at 14:41
asdfasdf
3,696519
3,696519
add a comment |
add a comment |
$begingroup$
did you notice that the numbers which are divisible by 2 or 3 but not other prime are just all powers of 2 (below 1000), all powers of 3 (below 1000) and any product of them (below 1000)? and they are very few of them... $2^9$ is the last power of 2 below 1000, $3^6$ is the last power of 3 below 1000, and the biggest combination of them is $2^3times 3^4$.
$endgroup$
add a comment |
$begingroup$
did you notice that the numbers which are divisible by 2 or 3 but not other prime are just all powers of 2 (below 1000), all powers of 3 (below 1000) and any product of them (below 1000)? and they are very few of them... $2^9$ is the last power of 2 below 1000, $3^6$ is the last power of 3 below 1000, and the biggest combination of them is $2^3times 3^4$.
$endgroup$
add a comment |
$begingroup$
did you notice that the numbers which are divisible by 2 or 3 but not other prime are just all powers of 2 (below 1000), all powers of 3 (below 1000) and any product of them (below 1000)? and they are very few of them... $2^9$ is the last power of 2 below 1000, $3^6$ is the last power of 3 below 1000, and the biggest combination of them is $2^3times 3^4$.
$endgroup$
did you notice that the numbers which are divisible by 2 or 3 but not other prime are just all powers of 2 (below 1000), all powers of 3 (below 1000) and any product of them (below 1000)? and they are very few of them... $2^9$ is the last power of 2 below 1000, $3^6$ is the last power of 3 below 1000, and the biggest combination of them is $2^3times 3^4$.
edited Mar 1 '18 at 14:48
answered Mar 1 '18 at 14:46
Luis GCLuis GC
14210
14210
add a comment |
add a comment |
$begingroup$
Consider:
Step 1:
$$ S_0 = {1,2,3,4} $$
$$ A_0 = 2S_0 = {2,4,6,8} $$
$$ B_0 = 3S_0 = {3,6,9,12} $$
Step 2:
$$ S_1 = S_0 cup A_0 cup B_0 = {1,2,3,4,6,8,9,12} $$
$$ A_1 = 2S_1 = {2,4,6,8,12,16,18,24} $$
$$ B_1 = 3S_1 = {3,6,9,12,18,24,27,36} $$
Step 3:
$$ S_2 = S_1 cup A_1 cup B_1 = {1,2,3,4,6,8,9,12,16,18,24,27,36} $$
$$ A_2 = 2S_2 = {2,4,6,8,12,16,18,24,32,36,48,54,72} $$
$$ B_2 = 3S_2 = {3,6,9,12,18,24,27,36,48,54,72,81,108} $$
Step 4:
$$ S_3 = S_2 cup A_2 cup B_2 = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,72,81,108} $$
And soo on...
$$ S = {1} cup 2S cup 3S $$
Other Algorithm:
$$ A_0 = {1,2,4,8,16,32,64,128,256,512,...} $$
$$ A_1 = 3A_0 = {3,6,12,24,48,96,192,384,768,...} $$
$$ A_2 = 3A_1 = {9,18,36,72,144,288,576,...} $$
$$ A_3 = 3A_2 = {27,54,108,216,432,864,...} $$
$$ A_4 = 3A_3 = {81,162,324,648,...} $$
$$ A_5 = 3A_4 = {243,486,972,...} $$
$$ A_6 = 3A_5 = {729,...} $$
Then:
$$ S = A_0 cup A_1 cup A_2 cup A_3 cup A_4 cup A_5 cup A_6 cup {...} $$
$$ S = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,64,72,81,96,108,128,144,162,192,...} $$
$endgroup$
add a comment |
$begingroup$
Consider:
Step 1:
$$ S_0 = {1,2,3,4} $$
$$ A_0 = 2S_0 = {2,4,6,8} $$
$$ B_0 = 3S_0 = {3,6,9,12} $$
Step 2:
$$ S_1 = S_0 cup A_0 cup B_0 = {1,2,3,4,6,8,9,12} $$
$$ A_1 = 2S_1 = {2,4,6,8,12,16,18,24} $$
$$ B_1 = 3S_1 = {3,6,9,12,18,24,27,36} $$
Step 3:
$$ S_2 = S_1 cup A_1 cup B_1 = {1,2,3,4,6,8,9,12,16,18,24,27,36} $$
$$ A_2 = 2S_2 = {2,4,6,8,12,16,18,24,32,36,48,54,72} $$
$$ B_2 = 3S_2 = {3,6,9,12,18,24,27,36,48,54,72,81,108} $$
Step 4:
$$ S_3 = S_2 cup A_2 cup B_2 = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,72,81,108} $$
And soo on...
$$ S = {1} cup 2S cup 3S $$
Other Algorithm:
$$ A_0 = {1,2,4,8,16,32,64,128,256,512,...} $$
$$ A_1 = 3A_0 = {3,6,12,24,48,96,192,384,768,...} $$
$$ A_2 = 3A_1 = {9,18,36,72,144,288,576,...} $$
$$ A_3 = 3A_2 = {27,54,108,216,432,864,...} $$
$$ A_4 = 3A_3 = {81,162,324,648,...} $$
$$ A_5 = 3A_4 = {243,486,972,...} $$
$$ A_6 = 3A_5 = {729,...} $$
Then:
$$ S = A_0 cup A_1 cup A_2 cup A_3 cup A_4 cup A_5 cup A_6 cup {...} $$
$$ S = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,64,72,81,96,108,128,144,162,192,...} $$
$endgroup$
add a comment |
$begingroup$
Consider:
Step 1:
$$ S_0 = {1,2,3,4} $$
$$ A_0 = 2S_0 = {2,4,6,8} $$
$$ B_0 = 3S_0 = {3,6,9,12} $$
Step 2:
$$ S_1 = S_0 cup A_0 cup B_0 = {1,2,3,4,6,8,9,12} $$
$$ A_1 = 2S_1 = {2,4,6,8,12,16,18,24} $$
$$ B_1 = 3S_1 = {3,6,9,12,18,24,27,36} $$
Step 3:
$$ S_2 = S_1 cup A_1 cup B_1 = {1,2,3,4,6,8,9,12,16,18,24,27,36} $$
$$ A_2 = 2S_2 = {2,4,6,8,12,16,18,24,32,36,48,54,72} $$
$$ B_2 = 3S_2 = {3,6,9,12,18,24,27,36,48,54,72,81,108} $$
Step 4:
$$ S_3 = S_2 cup A_2 cup B_2 = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,72,81,108} $$
And soo on...
$$ S = {1} cup 2S cup 3S $$
Other Algorithm:
$$ A_0 = {1,2,4,8,16,32,64,128,256,512,...} $$
$$ A_1 = 3A_0 = {3,6,12,24,48,96,192,384,768,...} $$
$$ A_2 = 3A_1 = {9,18,36,72,144,288,576,...} $$
$$ A_3 = 3A_2 = {27,54,108,216,432,864,...} $$
$$ A_4 = 3A_3 = {81,162,324,648,...} $$
$$ A_5 = 3A_4 = {243,486,972,...} $$
$$ A_6 = 3A_5 = {729,...} $$
Then:
$$ S = A_0 cup A_1 cup A_2 cup A_3 cup A_4 cup A_5 cup A_6 cup {...} $$
$$ S = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,64,72,81,96,108,128,144,162,192,...} $$
$endgroup$
Consider:
Step 1:
$$ S_0 = {1,2,3,4} $$
$$ A_0 = 2S_0 = {2,4,6,8} $$
$$ B_0 = 3S_0 = {3,6,9,12} $$
Step 2:
$$ S_1 = S_0 cup A_0 cup B_0 = {1,2,3,4,6,8,9,12} $$
$$ A_1 = 2S_1 = {2,4,6,8,12,16,18,24} $$
$$ B_1 = 3S_1 = {3,6,9,12,18,24,27,36} $$
Step 3:
$$ S_2 = S_1 cup A_1 cup B_1 = {1,2,3,4,6,8,9,12,16,18,24,27,36} $$
$$ A_2 = 2S_2 = {2,4,6,8,12,16,18,24,32,36,48,54,72} $$
$$ B_2 = 3S_2 = {3,6,9,12,18,24,27,36,48,54,72,81,108} $$
Step 4:
$$ S_3 = S_2 cup A_2 cup B_2 = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,72,81,108} $$
And soo on...
$$ S = {1} cup 2S cup 3S $$
Other Algorithm:
$$ A_0 = {1,2,4,8,16,32,64,128,256,512,...} $$
$$ A_1 = 3A_0 = {3,6,12,24,48,96,192,384,768,...} $$
$$ A_2 = 3A_1 = {9,18,36,72,144,288,576,...} $$
$$ A_3 = 3A_2 = {27,54,108,216,432,864,...} $$
$$ A_4 = 3A_3 = {81,162,324,648,...} $$
$$ A_5 = 3A_4 = {243,486,972,...} $$
$$ A_6 = 3A_5 = {729,...} $$
Then:
$$ S = A_0 cup A_1 cup A_2 cup A_3 cup A_4 cup A_5 cup A_6 cup {...} $$
$$ S = {1,2,3,4,6,8,9,12,16,18,24,27,32,36,48,54,64,72,81,96,108,128,144,162,192,...} $$
answered Jan 23 at 15:42
Angel MorenoAngel Moreno
39715
39715
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2672258%2fnumbers-up-to-1000-divisible-by-2-or-3-and-no-other-prime%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
@DietrichBurde important is "no other prime"
$endgroup$
– Yurii Savchuk
Mar 1 '18 at 14:33
$begingroup$
@DietrichBurde yes I already solved that part.
$endgroup$
– mandella
Mar 1 '18 at 14:34