When we have the recurrence $T(N)=T(N-1)+T(N-2)$, one normally uses $x^N$ and solves for $x$ which gives the golden ratio. But why does one use $x^N$ and not something else, like $\log(N)$ or $N$?
2026-03-09 16:43:29.1773074609
Time Complexity recurrence
168 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in RECURRENCE-RELATIONS
- Recurrence Relation for Towers of Hanoi
- Solve recurrence equation: $a_{n}=(n-1)(a_{n-1}+a_{n-2})$
- General way to solve linear recursive questions
- Approximate x+1 without addition and logarithms
- Recurrence relation of the series
- first order inhomogeneous linear difference equation general solution
- Guess formula for sequence in FriCAS
- Solve the following recurrence relation: $a_{n}=10a_{n-2}$
- Find closed form for $a_n=2\frac{n-1}{n}a_{n-1}-2\frac{n-2}{n}a_{n-2}$ for all $n \ge 3$
- Young Tableaux generating function
Related Questions in GOLDEN-RATIO
- How to prove that $\sum_{n=1}^{\infty} \frac{\phi^{n}-1}{\phi^{2n}} = 1$?
- Fibonacci sequence and golden ratio
- How to prove that Φ² (golden ratio squared) is an algebraic number?
- The even-index reciprocal Lucas constant and $\sum_{n=1}^\infty \frac1{x_1^{2n}+x_2^{2n}}$
- A peculiar Diophantine equation
- Is $\frac{5\pi}{6}$ a transcendental or an algebraic number?
- Ford circles and the Fibonacci sequence
- Number theory in the quadratic field with golden section unit
- Generalizing Odom's construction of the golden ratio
- ireducible polynomials with coefficients in $\{0,-1\}$
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?
We can "factor" a linear equation with constant coefficients, i.e. transform it to a cascade of first order equations.
Consider the second order equation
$$T_n+rT_{n-1}+sT_{n-2}=0$$ which we rewrite as $$T_n-(a+b)T_{n-1}+abT_{n-2}=0.$$
Then, let us define an intermediate sequence $R$ such that
$$R_n=T_n-aT_{n-1}.$$
From the definition we have
$$R_n-bR_{n-1}=T_n-aT_{n-1}-b(T_{n-1}-aT_{n-2})=T_n-(a+b)T_{n-1}+abT_{n-2}=0.$$
The solution of $$\color{green}{R_n-bR_{n-1}=0}$$ is obviously of the form $$\color{green}{R_n=bR_{n-1}=b^2R_{n-2}=b^3R_{n-3}=\cdots=b^nR_0=cb^n}.$$ (This is where the powers are coming from.)
Then we solve
$$T_n-aT_{n-1}=cb^n,$$
which will be the sum of the general solution of the homogeneous equation
$$T_n-aT_{n-1}=0$$ i.e. $$T_n=c'a^n,$$ and a particular solution of the non-homogeneous equation which can be
$$c''b^n.$$
Indeed,
$$T_n-aT_{n-1}=c''b^n-ac''b^{n-1}=c''(1-\frac ab)b^n=cb^n.$$
Hence,
$$T_n=c'a^n+c''b^n.$$
The method extends to equations of any order and one can show that the solution is a linear combination of the $n$-th powers of the roots of the so-called characteristic polynomial (the polynomial obtained by replacing $T_{n+k-d}$ by $x^k$; in the above case, $x^2+rx+s$).
To summarize, the terms $a^n$ come form the solution of some first order homogeneous equation $T_n=aT_{n-1}$.
Note that when the characteristic polynomial has multiple roots, the powers $a^n$ aren't sufficient, and you need to consider terms of the form $n^ma^n$.
You may also find roots which are complex, and you will need terms like $r^n\cos(n\theta)$ and $r^n\sin(n\theta)$.