I have read that after some $n$ in the Fibonacci Sequence, it will eventually repeat because there are only finite remainders considering modulo x. What I am not getting is if there is a sequence such as :$(1,1,2,3 ....)$ how are we sure that there exists a particular $0$ mod $x$? Does the Fibonacci sequence contain all remainders mod $x$? If a particular $a$ mod $x$ is not included in the list? (Something like $(1,1,3,1,1,3)$ sequence does not contain 2) thus there would be
2026-03-28 16:56:57.1774717017
Proving that there exists $f_n$ such that it is $0$ mod $x$
65 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in NUMBER-THEORY
- Maximum number of guaranteed coins to get in a "30 coins in 3 boxes" puzzle
- Interesting number theoretical game
- Show that $(x,y,z)$ is a primitive Pythagorean triple then either $x$ or $y$ is divisible by $3$.
- About polynomial value being perfect power.
- Name of Theorem for Coloring of $\{1, \dots, n\}$
- Reciprocal-totient function, in term of the totient function?
- What is the smallest integer $N>2$, such that $x^5+y^5 = N$ has a rational solution?
- Integer from base 10 to base 2
- How do I show that any natural number of this expression is a natural linear combination?
- Counting the number of solutions of the congruence $x^k\equiv h$ (mod q)
Related Questions in FIBONACCI-NUMBERS
- Counting argument proof or inductive proof of $F_1 {n \choose1}+...+F_n {n \choose n} = F_{2n}$ where $F_i$ are Fibonacci
- Fibonacci Numbers Proof by Induction (Looking for Feedback)
- Fibonacci sequence and golden ratio
- Induction proof of Fibonacci numbers
- Fibonacci sequence and divisibility.
- Fibonacci numbers mod $p$
- A proof regarding the Fibonacci Sequence.
- Congruencies for Fibonacci numbers
- Is every $N$th Fibonacci number where $N$ is divisible by $5$ itself divisible by $5$
- Proof involving Fibonacci number and binomial coefficient
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
No, the Fibonacci Sequence need not contain all remainders. It is periodic modulo any $x$ though. Consider the Fibonacci Sequence modulo some $x$. Denote the $n$th Fibonacci number by $F_n$ and its remainder modulo $x$ by $a_n$. Then clearly
$$F_n=F_{n-1}+F_{n-2}$$
$$a_n\equiv F_n=F_{n-1}+F_{n-2}\equiv a_{n-1}+a_{n-2}\ (\text{mod }x)$$
Thus, the remainders of the Fibonacci numbers follow the same pattern as the Fibonacci numbers:
$$a_n\equiv a_{n-1}+a_{n-2}\ (\text{mod }x)$$
However, note that there are at most $x^2$ possibilities for $(a_{n-1},a_{n-2})$. These are
$$\{(i,j):0\leq i,j<x\}$$
Since there are a finite number of possibilities, there exists $N$ and $M$ such that
$$(a_{N-1},a_{N-2})=(a_{M-1},a_{M-2})$$
This implies
$$a_N=a_M$$
By induction, you may conclude that $a_n$ is eventually periodic. If you want to extend it to all members of $a_n$, then you have to start with the sequence where it starts to be periodic and then show that this must be the beginning (its not to bad, just another induction proof).