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$?
2025-01-13 00:03:21.1736726601
Time Complexity recurrence
176 Views Asked by Mathematica123 https://math.techqa.club/user/mathematica123/detail At
1
There are 1 best solutions below
Related Questions in RECURRENCE-RELATIONS
- Recurrence Relation Question with a sequence
- Given the permutation recurrence relation find $a_n$
- Solve the recurrence relation $a_n={1\over2}a_{n-1}+1$, $a_1=1$
- Solve the recurrence relation $a_n=4a_{n-1}-3a_{n-2}+2^n$ with $a_1=1, a_2=11$
- Join 2n points in pairs on the circumference of a circle using n non-intersecting chords
- Asymptotic solutions of a sparsely perturbed recurrence relation
- long term recurrence relations and how to recorrect the deficit
- Solve the recurrence relation $a_n = 4a_{n-1} - 3a_{n-2} + 2^n $
- Is it possible to find a closed form for this recursive sequence?
- Solving quadratic recurrence relation
Related Questions in GOLDEN-RATIO
- On evaluating the Riemann zeta function, including that $\zeta(2)\gt \varphi$ where $\varphi$ is the golden ratio
- Summation of a series involving powers of Fibonacci numbers.
- Weakly unimodal function using Golden Section Search
- "Extending" the calculation of the golden ratio using square roots (not silver-ratio)
- Is there a pattern to the golden ratio number figures?
- Time Complexity recurrence
- Trilogarithm $\operatorname{Li}_3(z)$ and the imaginary golden ratio $i\,\phi$
- On $4n+1 = x^2, 5n+1 = y^2$ and the Fibonacci numbers
- Evaluating $\int_{0}^{\log\phi}\frac{u^2(e^{2u}+1)}{e^{2u}-1}du$, when $\phi$ is the golden ratio
- Definite integral of a continued fraction function
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Refuting the Anti-Cantor Cranks
- Find $E[XY|Y+Z=1 ]$
- 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?
- What are the Implications of having VΩ as a model for a theory?
- How do we know that the number $1$ is not equal to the number $-1$?
- Defining a Galois Field based on primitive element versus polynomial?
- Is computer science a branch of mathematics?
- Can't find the relationship between two columns of numbers. Please Help
- 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
- A community project: prove (or disprove) that $\sum_{n\geq 1}\frac{\sin(2^n)}{n}$ is convergent
- Alternative way of expressing a quantied statement with "Some"
Popular # Hahtags
real-analysis
calculus
linear-algebra
probability
abstract-algebra
integration
sequences-and-series
combinatorics
general-topology
matrices
functional-analysis
complex-analysis
geometry
group-theory
algebra-precalculus
probability-theory
ordinary-differential-equations
limits
analysis
number-theory
measure-theory
elementary-number-theory
statistics
multivariable-calculus
functions
derivatives
discrete-mathematics
differential-geometry
inequality
trigonometry
Popular Questions
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- 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)$?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- How to find mean and median from histogram
- Difference between "≈", "≃", and "≅"
- Easy way of memorizing values of sine, cosine, and tangent
- How to calculate the intersection of two planes?
- What does "∈" mean?
- If you roll a fair six sided die twice, what's the probability that you get the same number both times?
- Probability of getting exactly 2 heads in 3 coins tossed with order not important?
- Fourier transform for dummies
- Limit of $(1+ x/n)^n$ when $n$ tends to infinity
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)$.