Numbers such that they equal the product of their own digits












13














For the sake of simplicity, I've been only looking in base $10$ numbers, though I've wondered how this might work in other bases - easier to stick with the familiar, though, since this is purely recreational. Analogous formulations hold in other bases, and are easily constructed (at least for bases $b$ which are integers greater than or equal to $2$).



Insofar as context is concerned, there isn't much other than this was something I was thinking over last night, and I couldn't find any discussions about this online.





Formulation of the Question:



For argument's sake, let us consider our number to be $n$, which can be represented by the following forms:



$$n = ...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k in mathbb{Z}} d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$, with its leading and trailing zeroes ignored. (For example, $000012$ is just treated as $12$ and $12.3500000...$ is just treated as $12.35$.) The former consequence means that the first nonzero digit is some number we label $d_f$ with index $f$. So, equivalently, the above forms are given by



$$n = d_f...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k = f}^infty d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$ and $d_f neq 0$.



Let us now define a "product of digits," or "digital product," function $dp(n)$ by



$$dp(n) = prod_{k leq f} d_k = text{"the product of n's digits in base 10"}$$



Then the question is as follows:




Is there any "nontrivial" number (at least in base $10$) whose digital product is the number itself, i.e. any natural $n geq 10$ such that
$$dp(n) = n$$




I say trivial because, for single-digit numbers, it is clear that $dp(n) = n$. I'm more interested in "nontrivial results," provided they exist.





Some Thoughts and Investigations:



Ideally, it would be possible to prove $dp(n) neq n$ for all $n$ of concern, or at least prove there exists some such number(s) that equal their digital product, but I don't think that would be (at the very minimum) an easy task. So I've instead bounced around other ideas and such in my head:




  • There's the one outlined at the end of the previous section, which somewhat motivates me asking this question. That being that, for any single-digit number in any base, $dp(n) = n$.


  • Obviously, too, any number containing any $0$'s satisfies $dp(n) = 0$.


  • Any number between $9^m$ and $10^m$ for a given natural number $m$ will not satisfy $dp(n) = n$, since the maximum digital product for $m$ digits would be $9^m$.


  • Any permutation of the digits of $n$ doesn't change the digital product. Any number with $1$'s in it can also have them safely added or removed without changing the digital product. That is, for example, $2, 21, 121, 121111111$ and any permutations of their digits, all have the same digital product.


  • $n$ must be a whole number. Nuances regarding negatives are not something I want to deal with, so for simplicity this problem is essentially reduced to contending with $n in mathbb{N}$. This is because the nonnegative integers are closed under multiplication, and thus $dp(n) in mathbb{N} cup {0}$ for all real $n$. (Well, maybe some irrational numbers would have $dp(n) "=" infty$? That's a question all on its own honestly, but since being irrational would mean having a fractional part, and the fractional part of all digital products is zero, it would still mean $dp(n) neq n$.)


  • It seems obvious that if $dp(n)$ has less digits than $n$ (or more, but more on that later), then obviously $dp(n) neq n$. But this begs a certain question: what would be the minimum value for which $n$ and $dp(n)$ would, if not be equal, at least have the same amount of digits? (This question would be motivated by computer searches and could be useful in cutting down computational time further alongside previous observations.)


  • Of course, this question could also be framed in another way, though my mathematical background is less certain where this comes from. Namely, consider repeated application of the digital product function, i.e. $dp(n), dp(dp(n)), dp(dp(dp(n))),...$. The alternative framing of this question in that light would be that, is there any number with two or more digits such that under iteration the function eventually cycles (getting stuck in a loop) without reaching single digit numbers?


  • On research into a related topic, sum-product numbers, it was discussed on MSE that $dp(n) leq n$. (Our investigation is concerned with where they're equal.) So in that sense, on repeat iteration, the digital product is decreases monotonically (albeit not strictly monotonically). That is,



$$ text{one of 0-9} ... leq dp^{i+1}(n) leq dp^i(n) leq dp^{i-1}(n) leq ... dp^2(n) leq dp(n) leq n$$





A Crude Brute Force Search:



I have made a relatively crude MATLAB script that (as posted) checks numbers from $10$ to $10^{10}$ for $dp(n) = n$. (Crude in that it doesn't really incorporate any of the observations above, just checks all of them. I'm really, really terrible with programming.)



Currently, it's checked all those up to $5 times 10^{9}$ and none (that have more than one digit) have met that condition. This suggests that, if such an $n$ does exist, it will be relatively large, though given how slowly $dp(n)$ obviously grows over time it probably doesn't exist (though proving that eludes me - this is a bit above my head).



I doubt I can check many more numbers, however. I'm running this script on my laptop which is quite out of date and is just a really poor machine overall. The script itself could probably be refined as well.





So My Questions To You:




  • Either by brute force or some other means, can you find a (nontrivial) number such that $dp(n) = n$?


  • I'm currently at the point of conjecturing no such $n$ exists, but I have no clue how one might prove that. (Like, legitimately no clue. I have no idea where to begin for something like this.)


  • I noticed that the number of sum-product numbers is finite. Based on their definition, perhaps it might suggest likewise that the number of numbers such that $dp(n) = n$ is also finite?


  • Perhaps just any noteworthy thoughts/findings on the matter, or research into this that I overlooked?











share|cite|improve this question




















  • 4




    For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
    – Christopher Marley
    Dec 27 '18 at 6:21










  • Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
    – fleablood
    yesterday
















13














For the sake of simplicity, I've been only looking in base $10$ numbers, though I've wondered how this might work in other bases - easier to stick with the familiar, though, since this is purely recreational. Analogous formulations hold in other bases, and are easily constructed (at least for bases $b$ which are integers greater than or equal to $2$).



Insofar as context is concerned, there isn't much other than this was something I was thinking over last night, and I couldn't find any discussions about this online.





Formulation of the Question:



For argument's sake, let us consider our number to be $n$, which can be represented by the following forms:



$$n = ...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k in mathbb{Z}} d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$, with its leading and trailing zeroes ignored. (For example, $000012$ is just treated as $12$ and $12.3500000...$ is just treated as $12.35$.) The former consequence means that the first nonzero digit is some number we label $d_f$ with index $f$. So, equivalently, the above forms are given by



$$n = d_f...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k = f}^infty d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$ and $d_f neq 0$.



Let us now define a "product of digits," or "digital product," function $dp(n)$ by



$$dp(n) = prod_{k leq f} d_k = text{"the product of n's digits in base 10"}$$



Then the question is as follows:




Is there any "nontrivial" number (at least in base $10$) whose digital product is the number itself, i.e. any natural $n geq 10$ such that
$$dp(n) = n$$




I say trivial because, for single-digit numbers, it is clear that $dp(n) = n$. I'm more interested in "nontrivial results," provided they exist.





Some Thoughts and Investigations:



Ideally, it would be possible to prove $dp(n) neq n$ for all $n$ of concern, or at least prove there exists some such number(s) that equal their digital product, but I don't think that would be (at the very minimum) an easy task. So I've instead bounced around other ideas and such in my head:




  • There's the one outlined at the end of the previous section, which somewhat motivates me asking this question. That being that, for any single-digit number in any base, $dp(n) = n$.


  • Obviously, too, any number containing any $0$'s satisfies $dp(n) = 0$.


  • Any number between $9^m$ and $10^m$ for a given natural number $m$ will not satisfy $dp(n) = n$, since the maximum digital product for $m$ digits would be $9^m$.


  • Any permutation of the digits of $n$ doesn't change the digital product. Any number with $1$'s in it can also have them safely added or removed without changing the digital product. That is, for example, $2, 21, 121, 121111111$ and any permutations of their digits, all have the same digital product.


  • $n$ must be a whole number. Nuances regarding negatives are not something I want to deal with, so for simplicity this problem is essentially reduced to contending with $n in mathbb{N}$. This is because the nonnegative integers are closed under multiplication, and thus $dp(n) in mathbb{N} cup {0}$ for all real $n$. (Well, maybe some irrational numbers would have $dp(n) "=" infty$? That's a question all on its own honestly, but since being irrational would mean having a fractional part, and the fractional part of all digital products is zero, it would still mean $dp(n) neq n$.)


  • It seems obvious that if $dp(n)$ has less digits than $n$ (or more, but more on that later), then obviously $dp(n) neq n$. But this begs a certain question: what would be the minimum value for which $n$ and $dp(n)$ would, if not be equal, at least have the same amount of digits? (This question would be motivated by computer searches and could be useful in cutting down computational time further alongside previous observations.)


  • Of course, this question could also be framed in another way, though my mathematical background is less certain where this comes from. Namely, consider repeated application of the digital product function, i.e. $dp(n), dp(dp(n)), dp(dp(dp(n))),...$. The alternative framing of this question in that light would be that, is there any number with two or more digits such that under iteration the function eventually cycles (getting stuck in a loop) without reaching single digit numbers?


  • On research into a related topic, sum-product numbers, it was discussed on MSE that $dp(n) leq n$. (Our investigation is concerned with where they're equal.) So in that sense, on repeat iteration, the digital product is decreases monotonically (albeit not strictly monotonically). That is,



$$ text{one of 0-9} ... leq dp^{i+1}(n) leq dp^i(n) leq dp^{i-1}(n) leq ... dp^2(n) leq dp(n) leq n$$





A Crude Brute Force Search:



I have made a relatively crude MATLAB script that (as posted) checks numbers from $10$ to $10^{10}$ for $dp(n) = n$. (Crude in that it doesn't really incorporate any of the observations above, just checks all of them. I'm really, really terrible with programming.)



Currently, it's checked all those up to $5 times 10^{9}$ and none (that have more than one digit) have met that condition. This suggests that, if such an $n$ does exist, it will be relatively large, though given how slowly $dp(n)$ obviously grows over time it probably doesn't exist (though proving that eludes me - this is a bit above my head).



I doubt I can check many more numbers, however. I'm running this script on my laptop which is quite out of date and is just a really poor machine overall. The script itself could probably be refined as well.





So My Questions To You:




  • Either by brute force or some other means, can you find a (nontrivial) number such that $dp(n) = n$?


  • I'm currently at the point of conjecturing no such $n$ exists, but I have no clue how one might prove that. (Like, legitimately no clue. I have no idea where to begin for something like this.)


  • I noticed that the number of sum-product numbers is finite. Based on their definition, perhaps it might suggest likewise that the number of numbers such that $dp(n) = n$ is also finite?


  • Perhaps just any noteworthy thoughts/findings on the matter, or research into this that I overlooked?











share|cite|improve this question




















  • 4




    For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
    – Christopher Marley
    Dec 27 '18 at 6:21










  • Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
    – fleablood
    yesterday














13












13








13


1





For the sake of simplicity, I've been only looking in base $10$ numbers, though I've wondered how this might work in other bases - easier to stick with the familiar, though, since this is purely recreational. Analogous formulations hold in other bases, and are easily constructed (at least for bases $b$ which are integers greater than or equal to $2$).



Insofar as context is concerned, there isn't much other than this was something I was thinking over last night, and I couldn't find any discussions about this online.





Formulation of the Question:



For argument's sake, let us consider our number to be $n$, which can be represented by the following forms:



$$n = ...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k in mathbb{Z}} d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$, with its leading and trailing zeroes ignored. (For example, $000012$ is just treated as $12$ and $12.3500000...$ is just treated as $12.35$.) The former consequence means that the first nonzero digit is some number we label $d_f$ with index $f$. So, equivalently, the above forms are given by



$$n = d_f...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k = f}^infty d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$ and $d_f neq 0$.



Let us now define a "product of digits," or "digital product," function $dp(n)$ by



$$dp(n) = prod_{k leq f} d_k = text{"the product of n's digits in base 10"}$$



Then the question is as follows:




Is there any "nontrivial" number (at least in base $10$) whose digital product is the number itself, i.e. any natural $n geq 10$ such that
$$dp(n) = n$$




I say trivial because, for single-digit numbers, it is clear that $dp(n) = n$. I'm more interested in "nontrivial results," provided they exist.





Some Thoughts and Investigations:



Ideally, it would be possible to prove $dp(n) neq n$ for all $n$ of concern, or at least prove there exists some such number(s) that equal their digital product, but I don't think that would be (at the very minimum) an easy task. So I've instead bounced around other ideas and such in my head:




  • There's the one outlined at the end of the previous section, which somewhat motivates me asking this question. That being that, for any single-digit number in any base, $dp(n) = n$.


  • Obviously, too, any number containing any $0$'s satisfies $dp(n) = 0$.


  • Any number between $9^m$ and $10^m$ for a given natural number $m$ will not satisfy $dp(n) = n$, since the maximum digital product for $m$ digits would be $9^m$.


  • Any permutation of the digits of $n$ doesn't change the digital product. Any number with $1$'s in it can also have them safely added or removed without changing the digital product. That is, for example, $2, 21, 121, 121111111$ and any permutations of their digits, all have the same digital product.


  • $n$ must be a whole number. Nuances regarding negatives are not something I want to deal with, so for simplicity this problem is essentially reduced to contending with $n in mathbb{N}$. This is because the nonnegative integers are closed under multiplication, and thus $dp(n) in mathbb{N} cup {0}$ for all real $n$. (Well, maybe some irrational numbers would have $dp(n) "=" infty$? That's a question all on its own honestly, but since being irrational would mean having a fractional part, and the fractional part of all digital products is zero, it would still mean $dp(n) neq n$.)


  • It seems obvious that if $dp(n)$ has less digits than $n$ (or more, but more on that later), then obviously $dp(n) neq n$. But this begs a certain question: what would be the minimum value for which $n$ and $dp(n)$ would, if not be equal, at least have the same amount of digits? (This question would be motivated by computer searches and could be useful in cutting down computational time further alongside previous observations.)


  • Of course, this question could also be framed in another way, though my mathematical background is less certain where this comes from. Namely, consider repeated application of the digital product function, i.e. $dp(n), dp(dp(n)), dp(dp(dp(n))),...$. The alternative framing of this question in that light would be that, is there any number with two or more digits such that under iteration the function eventually cycles (getting stuck in a loop) without reaching single digit numbers?


  • On research into a related topic, sum-product numbers, it was discussed on MSE that $dp(n) leq n$. (Our investigation is concerned with where they're equal.) So in that sense, on repeat iteration, the digital product is decreases monotonically (albeit not strictly monotonically). That is,



$$ text{one of 0-9} ... leq dp^{i+1}(n) leq dp^i(n) leq dp^{i-1}(n) leq ... dp^2(n) leq dp(n) leq n$$





A Crude Brute Force Search:



I have made a relatively crude MATLAB script that (as posted) checks numbers from $10$ to $10^{10}$ for $dp(n) = n$. (Crude in that it doesn't really incorporate any of the observations above, just checks all of them. I'm really, really terrible with programming.)



Currently, it's checked all those up to $5 times 10^{9}$ and none (that have more than one digit) have met that condition. This suggests that, if such an $n$ does exist, it will be relatively large, though given how slowly $dp(n)$ obviously grows over time it probably doesn't exist (though proving that eludes me - this is a bit above my head).



I doubt I can check many more numbers, however. I'm running this script on my laptop which is quite out of date and is just a really poor machine overall. The script itself could probably be refined as well.





So My Questions To You:




  • Either by brute force or some other means, can you find a (nontrivial) number such that $dp(n) = n$?


  • I'm currently at the point of conjecturing no such $n$ exists, but I have no clue how one might prove that. (Like, legitimately no clue. I have no idea where to begin for something like this.)


  • I noticed that the number of sum-product numbers is finite. Based on their definition, perhaps it might suggest likewise that the number of numbers such that $dp(n) = n$ is also finite?


  • Perhaps just any noteworthy thoughts/findings on the matter, or research into this that I overlooked?











share|cite|improve this question















For the sake of simplicity, I've been only looking in base $10$ numbers, though I've wondered how this might work in other bases - easier to stick with the familiar, though, since this is purely recreational. Analogous formulations hold in other bases, and are easily constructed (at least for bases $b$ which are integers greater than or equal to $2$).



Insofar as context is concerned, there isn't much other than this was something I was thinking over last night, and I couldn't find any discussions about this online.





Formulation of the Question:



For argument's sake, let us consider our number to be $n$, which can be represented by the following forms:



$$n = ...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k in mathbb{Z}} d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$, with its leading and trailing zeroes ignored. (For example, $000012$ is just treated as $12$ and $12.3500000...$ is just treated as $12.35$.) The former consequence means that the first nonzero digit is some number we label $d_f$ with index $f$. So, equivalently, the above forms are given by



$$n = d_f...d_3d_2d_1d_0.d_{-1}d_{-2}d_{-3}... Leftrightarrow n = sum_{k = f}^infty d_k 10^k$$



where each $d_k in {0, 1, ..., 9 }$ and $d_f neq 0$.



Let us now define a "product of digits," or "digital product," function $dp(n)$ by



$$dp(n) = prod_{k leq f} d_k = text{"the product of n's digits in base 10"}$$



Then the question is as follows:




Is there any "nontrivial" number (at least in base $10$) whose digital product is the number itself, i.e. any natural $n geq 10$ such that
$$dp(n) = n$$




I say trivial because, for single-digit numbers, it is clear that $dp(n) = n$. I'm more interested in "nontrivial results," provided they exist.





Some Thoughts and Investigations:



Ideally, it would be possible to prove $dp(n) neq n$ for all $n$ of concern, or at least prove there exists some such number(s) that equal their digital product, but I don't think that would be (at the very minimum) an easy task. So I've instead bounced around other ideas and such in my head:




  • There's the one outlined at the end of the previous section, which somewhat motivates me asking this question. That being that, for any single-digit number in any base, $dp(n) = n$.


  • Obviously, too, any number containing any $0$'s satisfies $dp(n) = 0$.


  • Any number between $9^m$ and $10^m$ for a given natural number $m$ will not satisfy $dp(n) = n$, since the maximum digital product for $m$ digits would be $9^m$.


  • Any permutation of the digits of $n$ doesn't change the digital product. Any number with $1$'s in it can also have them safely added or removed without changing the digital product. That is, for example, $2, 21, 121, 121111111$ and any permutations of their digits, all have the same digital product.


  • $n$ must be a whole number. Nuances regarding negatives are not something I want to deal with, so for simplicity this problem is essentially reduced to contending with $n in mathbb{N}$. This is because the nonnegative integers are closed under multiplication, and thus $dp(n) in mathbb{N} cup {0}$ for all real $n$. (Well, maybe some irrational numbers would have $dp(n) "=" infty$? That's a question all on its own honestly, but since being irrational would mean having a fractional part, and the fractional part of all digital products is zero, it would still mean $dp(n) neq n$.)


  • It seems obvious that if $dp(n)$ has less digits than $n$ (or more, but more on that later), then obviously $dp(n) neq n$. But this begs a certain question: what would be the minimum value for which $n$ and $dp(n)$ would, if not be equal, at least have the same amount of digits? (This question would be motivated by computer searches and could be useful in cutting down computational time further alongside previous observations.)


  • Of course, this question could also be framed in another way, though my mathematical background is less certain where this comes from. Namely, consider repeated application of the digital product function, i.e. $dp(n), dp(dp(n)), dp(dp(dp(n))),...$. The alternative framing of this question in that light would be that, is there any number with two or more digits such that under iteration the function eventually cycles (getting stuck in a loop) without reaching single digit numbers?


  • On research into a related topic, sum-product numbers, it was discussed on MSE that $dp(n) leq n$. (Our investigation is concerned with where they're equal.) So in that sense, on repeat iteration, the digital product is decreases monotonically (albeit not strictly monotonically). That is,



$$ text{one of 0-9} ... leq dp^{i+1}(n) leq dp^i(n) leq dp^{i-1}(n) leq ... dp^2(n) leq dp(n) leq n$$





A Crude Brute Force Search:



I have made a relatively crude MATLAB script that (as posted) checks numbers from $10$ to $10^{10}$ for $dp(n) = n$. (Crude in that it doesn't really incorporate any of the observations above, just checks all of them. I'm really, really terrible with programming.)



Currently, it's checked all those up to $5 times 10^{9}$ and none (that have more than one digit) have met that condition. This suggests that, if such an $n$ does exist, it will be relatively large, though given how slowly $dp(n)$ obviously grows over time it probably doesn't exist (though proving that eludes me - this is a bit above my head).



I doubt I can check many more numbers, however. I'm running this script on my laptop which is quite out of date and is just a really poor machine overall. The script itself could probably be refined as well.





So My Questions To You:




  • Either by brute force or some other means, can you find a (nontrivial) number such that $dp(n) = n$?


  • I'm currently at the point of conjecturing no such $n$ exists, but I have no clue how one might prove that. (Like, legitimately no clue. I have no idea where to begin for something like this.)


  • I noticed that the number of sum-product numbers is finite. Based on their definition, perhaps it might suggest likewise that the number of numbers such that $dp(n) = n$ is also finite?


  • Perhaps just any noteworthy thoughts/findings on the matter, or research into this that I overlooked?








elementary-number-theory recreational-mathematics decimal-expansion






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited yesterday

























asked Dec 27 '18 at 5:36









Eevee Trainer

4,5221632




4,5221632








  • 4




    For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
    – Christopher Marley
    Dec 27 '18 at 6:21










  • Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
    – fleablood
    yesterday














  • 4




    For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
    – Christopher Marley
    Dec 27 '18 at 6:21










  • Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
    – fleablood
    yesterday








4




4




For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
– Christopher Marley
Dec 27 '18 at 6:21




For $n = 10a + b$, $acdot b < n$ because given $0<=a,b<=9$, Let $a$ be any number. For $n$, it is multiplied by 10. $b$ will never be greater than $9$ so $10a > bcdot a$, therefore $n > acdot b$. This may be applied to other bases and for higher place values, but this is just a bit of thinking to chew on. Good luck!
– Christopher Marley
Dec 27 '18 at 6:21












Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
– fleablood
yesterday




Why did you bother with negative powers of $10$? The product of integers is an integer so no non-integer need be considered.
– fleablood
yesterday










4 Answers
4






active

oldest

votes


















11














Your conjecture is true. If it isn't, let us suppose that there is a number $m>9$ of $n$ digits such that $dp(m)=m$. As you have checked and also proved by @ChristopherMarley in the comments, $n>2$.



Let's chop off the last digit of $m$ to get $m'$ of $n-1$ digits. Now, $m' leq m/10$ (since we're taking the floor of $m/10$) and $dp(m') geq m/9$(since the last digit is $9$ at most) $> m/10$.



Hence, $m' leq dp(m')$. Continuing this chopping off of last digit, we'll get a number $m_0$ of $2$ digits such that $m_0 leq dp(m_0)$ but we know that's not possible.



So, such an $m$ doesn't exist i.e. your conjecture is true that single digit numbers are the only numbers with $dp(m)=m$.






share|cite|improve this answer



















  • 2




    Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
    – Eevee Trainer
    Dec 27 '18 at 7:23






  • 1




    @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
    – SinTan1729
    Dec 27 '18 at 7:24



















5














As you've observed, it's not hard to see that there is no such number with more than one digit. Considering three-digit numbers, just for example, we see that for a number of the form abc to have the desired property, we would need $acdot bcdot c = 100a+10b+c$. The left side is at most $81a$ and the right side is at least $100a$, so they can't be equal. A similar argument works for any numerals of more than a single digit.



But this argument depends on the fact that no digit exceeds 9. If we are willing to relax the rules about base-10 numerals a bit, and allow digits larger than 9, we can find solutions. So for example when we count “seventy-seven, seventy-eight, seventy-nine” instead of continuing with eighty we are allowed to continue “seventy-ten, seventy-eleven, seventy-twelve…”, which we will write 7 7, 7 8, 7 9, 7 10, 7 11, 7 12



What does a number like “seventy-twelve” mean, anyway? Simple: Just as “seventy-nine” means seven tens and nine units, or $7·10+9 = 79$, “seventy-twelve” means seven tens and twelve units, or $7·10+12 = 82$. 7 12 is just another way to write 8 2. They represent the same number, similar to how $frac12$ and $frac48$ are also two different ways to write the same number. In the conventional decimal system there is only one way to write each number. But in this relaxed system, there may be several ways. For example, the number $121$ can be written as 1 2 1 or as 12 1 or as 11 11 or even as 9 21. (That last is nine tens and 21 units, or $9cdot 10 + 21$.)



Now there are some numbers that are equal to their digital product. For example, 6 12 (“sixty-twelve”) is another way to write $72$, and indeed $6cdot 12=72$!



Simple algebra ($10a+b = ab$, so we want $a = frac b{b-10}$) finds the two-digit examples:



begin{array}{rlr}
text{Relaxed numeral} & text{Silly name} & text{Conventional numeral} \
11 11 & text{(eleventy-eleven)} & 121\
6 12 & text{(sixty-twelve)} & 72 \
3 15 & text{(thirty-fifteen)} & 45 \
2 20 & text{(twenty-twenty)} & 40
end{array}



And of course there are solutions with more digits, such as 6 16 8 (six hundred sixteenty-eight) $= 768$.






share|cite|improve this answer























  • I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
    – iBug
    Dec 27 '18 at 14:21










  • True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
    – Eevee Trainer
    Dec 28 '18 at 0:05



















1














Note: $dp(N)$ is an integer. So if $dp(N) = N$ then $N$ is an integer.



If $N = sumlimits_{k=0}^n d_k10^k$ has more than one digit, i.e. $n ge 1$ and $N$ is such a number then



$d_0d_1.....d_{n-1}d_n =sumlimits_{k=0}^n d_k10^k > d_n 10^n$



$d_0d_1.....d_{n-1} > 10^n$



$9^n ge d_0d_1.....d_{n-1} > 10^n$






share|cite|improve this answer





























    0














    It is true and can be proven. Suppose we have a number W, with n digits, such that
    W = dn...d3d2d1. We want to show that W > dn*..*d3*d2*d1.



    (1) W >= dn*10^(n-1). They will be equal in the case where all digits, except dn, are 0.



    Next,

    (2) dn*10^(n-1) > dn*...*d3*d2*d1



    Divide boths side by dn gives:
    (3) 10^(n-1) > d(n-1)*...*d3*d2*d1



    On the left we have (n-1) 10s all multiplied together. On the right we have (n-1) digits multiplied together, all of which are less than 10. Therefore this is always true except when n=1, the single digit case.



    In the single digit case in (2), 10(n-1) = 1, so we are no longer multiplying by 10 which was the original problem. Likewise (3) is undefined.






    share|cite|improve this answer








    New contributor




    Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.














    • 1




      Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
      – José Carlos Santos
      Dec 27 '18 at 11:51











    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3053621%2fnumbers-such-that-they-equal-the-product-of-their-own-digits%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









    11














    Your conjecture is true. If it isn't, let us suppose that there is a number $m>9$ of $n$ digits such that $dp(m)=m$. As you have checked and also proved by @ChristopherMarley in the comments, $n>2$.



    Let's chop off the last digit of $m$ to get $m'$ of $n-1$ digits. Now, $m' leq m/10$ (since we're taking the floor of $m/10$) and $dp(m') geq m/9$(since the last digit is $9$ at most) $> m/10$.



    Hence, $m' leq dp(m')$. Continuing this chopping off of last digit, we'll get a number $m_0$ of $2$ digits such that $m_0 leq dp(m_0)$ but we know that's not possible.



    So, such an $m$ doesn't exist i.e. your conjecture is true that single digit numbers are the only numbers with $dp(m)=m$.






    share|cite|improve this answer



















    • 2




      Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
      – Eevee Trainer
      Dec 27 '18 at 7:23






    • 1




      @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
      – SinTan1729
      Dec 27 '18 at 7:24
















    11














    Your conjecture is true. If it isn't, let us suppose that there is a number $m>9$ of $n$ digits such that $dp(m)=m$. As you have checked and also proved by @ChristopherMarley in the comments, $n>2$.



    Let's chop off the last digit of $m$ to get $m'$ of $n-1$ digits. Now, $m' leq m/10$ (since we're taking the floor of $m/10$) and $dp(m') geq m/9$(since the last digit is $9$ at most) $> m/10$.



    Hence, $m' leq dp(m')$. Continuing this chopping off of last digit, we'll get a number $m_0$ of $2$ digits such that $m_0 leq dp(m_0)$ but we know that's not possible.



    So, such an $m$ doesn't exist i.e. your conjecture is true that single digit numbers are the only numbers with $dp(m)=m$.






    share|cite|improve this answer



















    • 2




      Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
      – Eevee Trainer
      Dec 27 '18 at 7:23






    • 1




      @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
      – SinTan1729
      Dec 27 '18 at 7:24














    11












    11








    11






    Your conjecture is true. If it isn't, let us suppose that there is a number $m>9$ of $n$ digits such that $dp(m)=m$. As you have checked and also proved by @ChristopherMarley in the comments, $n>2$.



    Let's chop off the last digit of $m$ to get $m'$ of $n-1$ digits. Now, $m' leq m/10$ (since we're taking the floor of $m/10$) and $dp(m') geq m/9$(since the last digit is $9$ at most) $> m/10$.



    Hence, $m' leq dp(m')$. Continuing this chopping off of last digit, we'll get a number $m_0$ of $2$ digits such that $m_0 leq dp(m_0)$ but we know that's not possible.



    So, such an $m$ doesn't exist i.e. your conjecture is true that single digit numbers are the only numbers with $dp(m)=m$.






    share|cite|improve this answer














    Your conjecture is true. If it isn't, let us suppose that there is a number $m>9$ of $n$ digits such that $dp(m)=m$. As you have checked and also proved by @ChristopherMarley in the comments, $n>2$.



    Let's chop off the last digit of $m$ to get $m'$ of $n-1$ digits. Now, $m' leq m/10$ (since we're taking the floor of $m/10$) and $dp(m') geq m/9$(since the last digit is $9$ at most) $> m/10$.



    Hence, $m' leq dp(m')$. Continuing this chopping off of last digit, we'll get a number $m_0$ of $2$ digits such that $m_0 leq dp(m_0)$ but we know that's not possible.



    So, such an $m$ doesn't exist i.e. your conjecture is true that single digit numbers are the only numbers with $dp(m)=m$.







    share|cite|improve this answer














    share|cite|improve this answer



    share|cite|improve this answer








    edited Dec 27 '18 at 7:19

























    answered Dec 27 '18 at 7:13









    SinTan1729

    2,679723




    2,679723








    • 2




      Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
      – Eevee Trainer
      Dec 27 '18 at 7:23






    • 1




      @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
      – SinTan1729
      Dec 27 '18 at 7:24














    • 2




      Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
      – Eevee Trainer
      Dec 27 '18 at 7:23






    • 1




      @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
      – SinTan1729
      Dec 27 '18 at 7:24








    2




    2




    Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
    – Eevee Trainer
    Dec 27 '18 at 7:23




    Wow, that was a wonderfully simple and elegant proof. I figured it'd be much more convoluted. I love it. ^_^b
    – Eevee Trainer
    Dec 27 '18 at 7:23




    1




    1




    @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
    – SinTan1729
    Dec 27 '18 at 7:24




    @EeveeTrainer I thought so too. I was trying to improve on your Matlab script when it struck me. Haha.
    – SinTan1729
    Dec 27 '18 at 7:24











    5














    As you've observed, it's not hard to see that there is no such number with more than one digit. Considering three-digit numbers, just for example, we see that for a number of the form abc to have the desired property, we would need $acdot bcdot c = 100a+10b+c$. The left side is at most $81a$ and the right side is at least $100a$, so they can't be equal. A similar argument works for any numerals of more than a single digit.



    But this argument depends on the fact that no digit exceeds 9. If we are willing to relax the rules about base-10 numerals a bit, and allow digits larger than 9, we can find solutions. So for example when we count “seventy-seven, seventy-eight, seventy-nine” instead of continuing with eighty we are allowed to continue “seventy-ten, seventy-eleven, seventy-twelve…”, which we will write 7 7, 7 8, 7 9, 7 10, 7 11, 7 12



    What does a number like “seventy-twelve” mean, anyway? Simple: Just as “seventy-nine” means seven tens and nine units, or $7·10+9 = 79$, “seventy-twelve” means seven tens and twelve units, or $7·10+12 = 82$. 7 12 is just another way to write 8 2. They represent the same number, similar to how $frac12$ and $frac48$ are also two different ways to write the same number. In the conventional decimal system there is only one way to write each number. But in this relaxed system, there may be several ways. For example, the number $121$ can be written as 1 2 1 or as 12 1 or as 11 11 or even as 9 21. (That last is nine tens and 21 units, or $9cdot 10 + 21$.)



    Now there are some numbers that are equal to their digital product. For example, 6 12 (“sixty-twelve”) is another way to write $72$, and indeed $6cdot 12=72$!



    Simple algebra ($10a+b = ab$, so we want $a = frac b{b-10}$) finds the two-digit examples:



    begin{array}{rlr}
    text{Relaxed numeral} & text{Silly name} & text{Conventional numeral} \
    11 11 & text{(eleventy-eleven)} & 121\
    6 12 & text{(sixty-twelve)} & 72 \
    3 15 & text{(thirty-fifteen)} & 45 \
    2 20 & text{(twenty-twenty)} & 40
    end{array}



    And of course there are solutions with more digits, such as 6 16 8 (six hundred sixteenty-eight) $= 768$.






    share|cite|improve this answer























    • I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
      – iBug
      Dec 27 '18 at 14:21










    • True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
      – Eevee Trainer
      Dec 28 '18 at 0:05
















    5














    As you've observed, it's not hard to see that there is no such number with more than one digit. Considering three-digit numbers, just for example, we see that for a number of the form abc to have the desired property, we would need $acdot bcdot c = 100a+10b+c$. The left side is at most $81a$ and the right side is at least $100a$, so they can't be equal. A similar argument works for any numerals of more than a single digit.



    But this argument depends on the fact that no digit exceeds 9. If we are willing to relax the rules about base-10 numerals a bit, and allow digits larger than 9, we can find solutions. So for example when we count “seventy-seven, seventy-eight, seventy-nine” instead of continuing with eighty we are allowed to continue “seventy-ten, seventy-eleven, seventy-twelve…”, which we will write 7 7, 7 8, 7 9, 7 10, 7 11, 7 12



    What does a number like “seventy-twelve” mean, anyway? Simple: Just as “seventy-nine” means seven tens and nine units, or $7·10+9 = 79$, “seventy-twelve” means seven tens and twelve units, or $7·10+12 = 82$. 7 12 is just another way to write 8 2. They represent the same number, similar to how $frac12$ and $frac48$ are also two different ways to write the same number. In the conventional decimal system there is only one way to write each number. But in this relaxed system, there may be several ways. For example, the number $121$ can be written as 1 2 1 or as 12 1 or as 11 11 or even as 9 21. (That last is nine tens and 21 units, or $9cdot 10 + 21$.)



    Now there are some numbers that are equal to their digital product. For example, 6 12 (“sixty-twelve”) is another way to write $72$, and indeed $6cdot 12=72$!



    Simple algebra ($10a+b = ab$, so we want $a = frac b{b-10}$) finds the two-digit examples:



    begin{array}{rlr}
    text{Relaxed numeral} & text{Silly name} & text{Conventional numeral} \
    11 11 & text{(eleventy-eleven)} & 121\
    6 12 & text{(sixty-twelve)} & 72 \
    3 15 & text{(thirty-fifteen)} & 45 \
    2 20 & text{(twenty-twenty)} & 40
    end{array}



    And of course there are solutions with more digits, such as 6 16 8 (six hundred sixteenty-eight) $= 768$.






    share|cite|improve this answer























    • I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
      – iBug
      Dec 27 '18 at 14:21










    • True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
      – Eevee Trainer
      Dec 28 '18 at 0:05














    5












    5








    5






    As you've observed, it's not hard to see that there is no such number with more than one digit. Considering three-digit numbers, just for example, we see that for a number of the form abc to have the desired property, we would need $acdot bcdot c = 100a+10b+c$. The left side is at most $81a$ and the right side is at least $100a$, so they can't be equal. A similar argument works for any numerals of more than a single digit.



    But this argument depends on the fact that no digit exceeds 9. If we are willing to relax the rules about base-10 numerals a bit, and allow digits larger than 9, we can find solutions. So for example when we count “seventy-seven, seventy-eight, seventy-nine” instead of continuing with eighty we are allowed to continue “seventy-ten, seventy-eleven, seventy-twelve…”, which we will write 7 7, 7 8, 7 9, 7 10, 7 11, 7 12



    What does a number like “seventy-twelve” mean, anyway? Simple: Just as “seventy-nine” means seven tens and nine units, or $7·10+9 = 79$, “seventy-twelve” means seven tens and twelve units, or $7·10+12 = 82$. 7 12 is just another way to write 8 2. They represent the same number, similar to how $frac12$ and $frac48$ are also two different ways to write the same number. In the conventional decimal system there is only one way to write each number. But in this relaxed system, there may be several ways. For example, the number $121$ can be written as 1 2 1 or as 12 1 or as 11 11 or even as 9 21. (That last is nine tens and 21 units, or $9cdot 10 + 21$.)



    Now there are some numbers that are equal to their digital product. For example, 6 12 (“sixty-twelve”) is another way to write $72$, and indeed $6cdot 12=72$!



    Simple algebra ($10a+b = ab$, so we want $a = frac b{b-10}$) finds the two-digit examples:



    begin{array}{rlr}
    text{Relaxed numeral} & text{Silly name} & text{Conventional numeral} \
    11 11 & text{(eleventy-eleven)} & 121\
    6 12 & text{(sixty-twelve)} & 72 \
    3 15 & text{(thirty-fifteen)} & 45 \
    2 20 & text{(twenty-twenty)} & 40
    end{array}



    And of course there are solutions with more digits, such as 6 16 8 (six hundred sixteenty-eight) $= 768$.






    share|cite|improve this answer














    As you've observed, it's not hard to see that there is no such number with more than one digit. Considering three-digit numbers, just for example, we see that for a number of the form abc to have the desired property, we would need $acdot bcdot c = 100a+10b+c$. The left side is at most $81a$ and the right side is at least $100a$, so they can't be equal. A similar argument works for any numerals of more than a single digit.



    But this argument depends on the fact that no digit exceeds 9. If we are willing to relax the rules about base-10 numerals a bit, and allow digits larger than 9, we can find solutions. So for example when we count “seventy-seven, seventy-eight, seventy-nine” instead of continuing with eighty we are allowed to continue “seventy-ten, seventy-eleven, seventy-twelve…”, which we will write 7 7, 7 8, 7 9, 7 10, 7 11, 7 12



    What does a number like “seventy-twelve” mean, anyway? Simple: Just as “seventy-nine” means seven tens and nine units, or $7·10+9 = 79$, “seventy-twelve” means seven tens and twelve units, or $7·10+12 = 82$. 7 12 is just another way to write 8 2. They represent the same number, similar to how $frac12$ and $frac48$ are also two different ways to write the same number. In the conventional decimal system there is only one way to write each number. But in this relaxed system, there may be several ways. For example, the number $121$ can be written as 1 2 1 or as 12 1 or as 11 11 or even as 9 21. (That last is nine tens and 21 units, or $9cdot 10 + 21$.)



    Now there are some numbers that are equal to their digital product. For example, 6 12 (“sixty-twelve”) is another way to write $72$, and indeed $6cdot 12=72$!



    Simple algebra ($10a+b = ab$, so we want $a = frac b{b-10}$) finds the two-digit examples:



    begin{array}{rlr}
    text{Relaxed numeral} & text{Silly name} & text{Conventional numeral} \
    11 11 & text{(eleventy-eleven)} & 121\
    6 12 & text{(sixty-twelve)} & 72 \
    3 15 & text{(thirty-fifteen)} & 45 \
    2 20 & text{(twenty-twenty)} & 40
    end{array}



    And of course there are solutions with more digits, such as 6 16 8 (six hundred sixteenty-eight) $= 768$.







    share|cite|improve this answer














    share|cite|improve this answer



    share|cite|improve this answer








    edited Dec 27 '18 at 8:11


























    community wiki





    2 revs
    MJD













    • I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
      – iBug
      Dec 27 '18 at 14:21










    • True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
      – Eevee Trainer
      Dec 28 '18 at 0:05


















    • I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
      – iBug
      Dec 27 '18 at 14:21










    • True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
      – Eevee Trainer
      Dec 28 '18 at 0:05
















    I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
    – iBug
    Dec 27 '18 at 14:21




    I'd consider this more an "exploit" because the digits in a number are not to exceed the base.
    – iBug
    Dec 27 '18 at 14:21












    True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
    – Eevee Trainer
    Dec 28 '18 at 0:05




    True, it's a bit of an exploit, but it's still pretty neat to think about how things would be if we loosened conventions, you know?
    – Eevee Trainer
    Dec 28 '18 at 0:05











    1














    Note: $dp(N)$ is an integer. So if $dp(N) = N$ then $N$ is an integer.



    If $N = sumlimits_{k=0}^n d_k10^k$ has more than one digit, i.e. $n ge 1$ and $N$ is such a number then



    $d_0d_1.....d_{n-1}d_n =sumlimits_{k=0}^n d_k10^k > d_n 10^n$



    $d_0d_1.....d_{n-1} > 10^n$



    $9^n ge d_0d_1.....d_{n-1} > 10^n$






    share|cite|improve this answer


























      1














      Note: $dp(N)$ is an integer. So if $dp(N) = N$ then $N$ is an integer.



      If $N = sumlimits_{k=0}^n d_k10^k$ has more than one digit, i.e. $n ge 1$ and $N$ is such a number then



      $d_0d_1.....d_{n-1}d_n =sumlimits_{k=0}^n d_k10^k > d_n 10^n$



      $d_0d_1.....d_{n-1} > 10^n$



      $9^n ge d_0d_1.....d_{n-1} > 10^n$






      share|cite|improve this answer
























        1












        1








        1






        Note: $dp(N)$ is an integer. So if $dp(N) = N$ then $N$ is an integer.



        If $N = sumlimits_{k=0}^n d_k10^k$ has more than one digit, i.e. $n ge 1$ and $N$ is such a number then



        $d_0d_1.....d_{n-1}d_n =sumlimits_{k=0}^n d_k10^k > d_n 10^n$



        $d_0d_1.....d_{n-1} > 10^n$



        $9^n ge d_0d_1.....d_{n-1} > 10^n$






        share|cite|improve this answer












        Note: $dp(N)$ is an integer. So if $dp(N) = N$ then $N$ is an integer.



        If $N = sumlimits_{k=0}^n d_k10^k$ has more than one digit, i.e. $n ge 1$ and $N$ is such a number then



        $d_0d_1.....d_{n-1}d_n =sumlimits_{k=0}^n d_k10^k > d_n 10^n$



        $d_0d_1.....d_{n-1} > 10^n$



        $9^n ge d_0d_1.....d_{n-1} > 10^n$







        share|cite|improve this answer












        share|cite|improve this answer



        share|cite|improve this answer










        answered yesterday









        fleablood

        68.2k22684




        68.2k22684























            0














            It is true and can be proven. Suppose we have a number W, with n digits, such that
            W = dn...d3d2d1. We want to show that W > dn*..*d3*d2*d1.



            (1) W >= dn*10^(n-1). They will be equal in the case where all digits, except dn, are 0.



            Next,

            (2) dn*10^(n-1) > dn*...*d3*d2*d1



            Divide boths side by dn gives:
            (3) 10^(n-1) > d(n-1)*...*d3*d2*d1



            On the left we have (n-1) 10s all multiplied together. On the right we have (n-1) digits multiplied together, all of which are less than 10. Therefore this is always true except when n=1, the single digit case.



            In the single digit case in (2), 10(n-1) = 1, so we are no longer multiplying by 10 which was the original problem. Likewise (3) is undefined.






            share|cite|improve this answer








            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.














            • 1




              Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
              – José Carlos Santos
              Dec 27 '18 at 11:51
















            0














            It is true and can be proven. Suppose we have a number W, with n digits, such that
            W = dn...d3d2d1. We want to show that W > dn*..*d3*d2*d1.



            (1) W >= dn*10^(n-1). They will be equal in the case where all digits, except dn, are 0.



            Next,

            (2) dn*10^(n-1) > dn*...*d3*d2*d1



            Divide boths side by dn gives:
            (3) 10^(n-1) > d(n-1)*...*d3*d2*d1



            On the left we have (n-1) 10s all multiplied together. On the right we have (n-1) digits multiplied together, all of which are less than 10. Therefore this is always true except when n=1, the single digit case.



            In the single digit case in (2), 10(n-1) = 1, so we are no longer multiplying by 10 which was the original problem. Likewise (3) is undefined.






            share|cite|improve this answer








            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.














            • 1




              Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
              – José Carlos Santos
              Dec 27 '18 at 11:51














            0












            0








            0






            It is true and can be proven. Suppose we have a number W, with n digits, such that
            W = dn...d3d2d1. We want to show that W > dn*..*d3*d2*d1.



            (1) W >= dn*10^(n-1). They will be equal in the case where all digits, except dn, are 0.



            Next,

            (2) dn*10^(n-1) > dn*...*d3*d2*d1



            Divide boths side by dn gives:
            (3) 10^(n-1) > d(n-1)*...*d3*d2*d1



            On the left we have (n-1) 10s all multiplied together. On the right we have (n-1) digits multiplied together, all of which are less than 10. Therefore this is always true except when n=1, the single digit case.



            In the single digit case in (2), 10(n-1) = 1, so we are no longer multiplying by 10 which was the original problem. Likewise (3) is undefined.






            share|cite|improve this answer








            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            It is true and can be proven. Suppose we have a number W, with n digits, such that
            W = dn...d3d2d1. We want to show that W > dn*..*d3*d2*d1.



            (1) W >= dn*10^(n-1). They will be equal in the case where all digits, except dn, are 0.



            Next,

            (2) dn*10^(n-1) > dn*...*d3*d2*d1



            Divide boths side by dn gives:
            (3) 10^(n-1) > d(n-1)*...*d3*d2*d1



            On the left we have (n-1) 10s all multiplied together. On the right we have (n-1) digits multiplied together, all of which are less than 10. Therefore this is always true except when n=1, the single digit case.



            In the single digit case in (2), 10(n-1) = 1, so we are no longer multiplying by 10 which was the original problem. Likewise (3) is undefined.







            share|cite|improve this answer








            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            share|cite|improve this answer



            share|cite|improve this answer






            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            answered Dec 27 '18 at 11:47









            Warren Ward

            11




            11




            New contributor




            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.





            New contributor





            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.






            Warren Ward is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.








            • 1




              Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
              – José Carlos Santos
              Dec 27 '18 at 11:51














            • 1




              Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
              – José Carlos Santos
              Dec 27 '18 at 11:51








            1




            1




            Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
            – José Carlos Santos
            Dec 27 '18 at 11:51




            Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
            – José Carlos Santos
            Dec 27 '18 at 11:51


















            draft saved

            draft discarded




















































            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3053621%2fnumbers-such-that-they-equal-the-product-of-their-own-digits%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局