Summing Positive Integers with 2^r3^s

  • Thread starter Thread starter sachinism
  • Start date Start date
  • Tags Tags
    Integers Positive
AI Thread Summary
Every positive integer can be expressed as a sum of numbers in the form 2^r3^s, where r and s are nonnegative integers, and no summand divides another. The discussion highlights the use of induction to establish this property, noting the importance of ensuring that no summand divides another. A proposed method involves showing that if integers less than n can be represented in this form, then n can also be represented. However, some participants point out limitations in this approach, particularly for certain integers. Recursion is suggested as a more effective strategy for tackling the problem, especially for integers not divisible by 2 or 3.
sachinism
Messages
66
Reaction score
0
Show that every positive integer is a sum of one or more numbers of the form 2^r3^s, where r and s are nonnegative integers and no summand divides another.

not my doubt

just found it interesting so posted here :smile:
 
Mathematics news on Phys.org
Using induction (1 = 20 30; assuming that k can be written in such a way, then so can k + 1) is the easy part.
You only need to exercise some care with the part that "no summand divides another."

So assuming that all k < n can be written as requested, suppose that you get two terms 2r 3s + 2r + r' 3s + s' and show that they can be written as 2a 3b + 2a' 3b' for appropriate a, b, a' and b'.
 
nice one man , exactly what i had in mind

congo
 
CompuChip said:
So assuming that all k < n can be written as requested, suppose that you get two terms 2r 3s + 2r + r' 3s + s' and show that they can be written as 2a 3b + 2a' 3b' for appropriate a, b, a' and b'.
Doesn't work. 1=2030 and 2=2030+1. How do you get from 2=2030+1=1+1 (illegal) to 2=2130 via this? This approach only works for a small number of elements k: 4 and 6, but not 2,3,4, or 7.
 
Recursion will work here, however. Just not in the simple way that CompuChip mentioned.

I don't know if this is homework, so providing an answer is not appropriate. Some hints are:
  • Recursion is a good idea, with an obvious base case of 1=2030.
  • Game over if n is divisible by 2 or 3 (why?)
That leaves the cases where n is not divisible by either 2 or by 3. I'll leave attacking these as an exercise to the OP.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
Thread 'Imaginary Pythagorus'
I posted this in the Lame Math thread, but it's got me thinking. Is there any validity to this? Or is it really just a mathematical trick? Naively, I see that i2 + plus 12 does equal zero2. But does this have a meaning? I know one can treat the imaginary number line as just another axis like the reals, but does that mean this does represent a triangle in the complex plane with a hypotenuse of length zero? Ibix offered a rendering of the diagram using what I assume is matrix* notation...
Back
Top