Recursive definition and induction

  • Context: MHB 
  • Thread starter Thread starter CStudent
  • Start date Start date
  • Tags Tags
    Definition Induction
Click For Summary
SUMMARY

The recursive series defined by the formula $a_n = a_{n-1} + a_{n-3}$ with base cases $a_1 = 1$, $a_2 = 2$, and $a_3 = 3$ generates a sequence where every natural number can be expressed as a sum of distinct elements from this series. The initial terms calculated are $a_4 = 4$, $a_5 = 6$, and $a_6 = 9$. Understanding recursion is crucial for proving this property, as it involves recognizing patterns and establishing a method to represent natural numbers through combinations of the series elements.

PREREQUISITES
  • Understanding of recursive sequences and their definitions
  • Basic knowledge of mathematical induction
  • Familiarity with algorithms for generating sequences
  • Concept of sums of distinct integers
NEXT STEPS
  • Study mathematical induction techniques to prove properties of sequences
  • Explore algorithms for generating sums of distinct elements from sequences
  • Investigate the properties of recursive sequences in number theory
  • Learn about the limitations of certain algorithms, particularly in relation to powers of integers
USEFUL FOR

Mathematicians, computer scientists, and students studying recursion, number theory, or algorithm design will benefit from this discussion.

CStudent
Messages
14
Reaction score
0
Hey.

The series $a_n$ is defined by a recursive formula $a_n = a_{n-1} + a_{n-3}$ and its base case is $a_1 = 1 \ a_2 = 2 \ a_3 = 3$.
Prove that every natural number can be written as a sum (of one or more) of different elements of the series $a_n$.

Now, I know that is correct intuitively but I don't know how to prove that.
Generally, I have some problem of understanding the concept of recursion.

Thanks.
 
Physics news on Phys.org
CStudent said:
Hey.

The series $a_n$ is defined by a recursive formula $a_n = a_{n-1} + a_{n-3}$ and its base case is $a_1 = 1 \ a_2 = 2 \ a_3 = 3$.
Prove that every natural number can be written as a sum (of one or more) of different elements of the series $a_n$.

Now, I know that is correct intuitively but I don't know how to prove that.
Generally, I have some problem of understanding the concept of recursion.
Since you're unclear on the concept of recursion, it would be a good idea to calculate a few terms of the sequence. (Note that what you have here is a sequence of numbers. A series is the sum of numbers in some sequence.)

From the given info we have:
##a_1 = 1##
##a_2 = 2##
##a_3 = 3##
Using the recursion formula, we get:
##a_4 = a_3 + a_1 = 3 + 1 = 4##
##a_5 = a_4 + a_2 = 4 + 2 = 6##
##a_6 = a_5 + a_3 = 6 + 3 = 9##
and so on...
 
CStudent said:
Hey.

The series $a_n$ is defined by a recursive formula $a_n = a_{n-1} + a_{n-3}$ and its base case is $a_1 = 1 \ a_2 = 2 \ a_3 = 3$.
Prove that every natural number can be written as a sum (of one or more) of different elements of the series $a_n$.

Now, I know that is correct intuitively but I don't know how to prove that.
Generally, I have some problem of understanding the concept of recursion.

Thanks.
It's not a really easy proof, I think.

- How would you go about writing a natural number as a sum of the elements of a sequence. I think there's a rather obvious algorithm.
- What can go wrong with this algorithm. Why does it fail with powers of 3.
- How can you prove that this can't happen here. (using the recursion)
 
  • Like
Likes   Reactions: Greg Bernhardt

Similar threads

  • · Replies 16 ·
Replies
16
Views
4K
  • · Replies 18 ·
Replies
18
Views
3K
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
3K