Solution to Sequence Challenge $a_n$

In summary, the "Solution to Sequence Challenge $a_n$" is a mathematical problem that involves finding the general term for a given sequence of numbers. To solve it, one must carefully examine the sequence and identify patterns to create a formula that can generate the sequence. This challenge requires a strong understanding of mathematical concepts and the ability to think logically and creatively. It is also used in various fields and can help develop critical thinking skills and make predictions in real-world applications.
  • #1
Albert1
1,221
0
$a_1=2 ,$ and

$a_{n+1}=\dfrac{a_n+4}{2a_n+3},\,\, n\in N$

find :$a_n$
 
Mathematics news on Phys.org
  • #2
First note that this sequence lies in $\mathbb{Q}$. Thus we can write $a_n = u_n / v_n = (u_n, v_n)$ as a two-dimensional vector for integers $u_n, v_n$. We now get:

$$a_{n + 1} = \frac{u_{n + 1}}{v_{n + 1}} = \frac{a_n + 4}{2 a_n + 3} = \frac{\frac{u_n}{v_n} + 4}{2 \frac{u_n}{v_n} + 3} = \frac{u_n + 4 v_n}{2 u_n + 3 v_n}$$

Hence we can express the recurrence as a linear transformation of the vector $(u_n, v_n)$ given by the matrix:

$$A = \left [ \begin{matrix} 1 &4 \\ 2 &3 \end{matrix} \right ]$$

Such that:

$$\left [ \begin{matrix} u_{n + 1} \\ v_{n + 1} \end{matrix} \right ] = A \left [ \begin{matrix} u_n \\ v_n \end{matrix} \right ]$$

And, more importantly for now:

$$\left[ \begin{matrix} u_n \\ v_n \end{matrix} \right ] = A^n \left [ \begin{matrix} u_1 \\ v_1 \end{matrix} \right ] = A^n \left [ \begin{matrix} 2 \\ 1 \end{matrix} \right ]$$

Since $a_1 = 2 = 2/1$. This matrix $A$ has eigenvalues $5$ and $-1$, with respective eigenvectors $(1, 1)$ and $(-2, 1)$. Those represent the steady states of the system, i.e. $1$ and $-2$. So we can diagonalize it as follows:

$$A = \left [ \begin{matrix} 1 &-2 \\ 1 &1 \end{matrix} \right ] \left [ \begin{matrix} 5 &0 \\ 0 &-1 \end{matrix} \right ] \left [ \begin{matrix} 1 &-2 \\ 1 &1 \end{matrix} \right ]^{-1} = \frac{1}{3} \left [ \begin{matrix} 1 &-2 \\ 1 &1 \end{matrix} \right ] \left [ \begin{matrix} 5 &0 \\ 0 &-1 \end{matrix} \right ] \left [ \begin{matrix} 1 &2 \\ -1 &1 \end{matrix} \right ]$$

And so by diagonalization, we have:

$$A^n = \frac{1}{3^n} \left [ \begin{matrix} 1 &-2 \\ 1 &1 \end{matrix} \right ] \left [ \begin{matrix} 5^n &0 \\ 0 &(-1)^n \end{matrix} \right ] \left [ \begin{matrix} 1 &2 \\ -1 &1 \end{matrix} \right ] = \frac{1}{3^n} \left [ \begin{matrix} 5^n + 2(-1)^n &2 \cdot 5^n - 2 (-1)^n \\ 5^n - (-1)^n &2 \cdot 5^n + (-1)^n \end{matrix} \right ]$$

And so:

$$\left[ \begin{matrix} u_n \\ v_n \end{matrix} \right ] = A^n \left [ \begin{matrix} 2 \\ 1 \end{matrix} \right ] = \frac{1}{3^n} \left [ \begin{matrix} 4 \cdot 5^n + 2 (-1)^n \\ 4 \cdot 5^n - (-1)^n \end{matrix} \right ]$$

We conclude (note the factor of $3^{-n}$ is present in both $u_n$ and $v_n$ and so cancels out):

$$a_n = \frac{u_n}{v_n} = \frac{4 \cdot 5^n + 2 (-1)^n}{4 \cdot 5^n - (-1)^n}$$​
 
Last edited:
  • #3
according to your answer :
$a_1=\dfrac {18}{21}\neq 2$
 
  • #4
Let $\text{GL}_2(\Bbb Z)$ act on $\hat{\Bbb C}$ by setting $A\cdot z := \frac{az + b}{cz + d}$, for

\(\displaystyle A = \begin{pmatrix}a & b\\c & d\end{pmatrix}\in \text{GL}_2(\Bbb Z)\)

and $z\in \hat{\Bbb C}$. Let $A = \begin{pmatrix}1 & 4\\2 & 3\end{pmatrix}$. Then $a_{n+1} = A\cdot a_n$ for all $n \ge 1$. Thus $a_{n+1} = A^n\cdot a_1 = A^n \cdot 2$ for all $n \ge 1$. By diagonalization,

\(\displaystyle A = \begin{pmatrix}-2 & 1\\1 & 1\end{pmatrix} \begin{pmatrix}-1 & 0\\0 & 5\end{pmatrix} \begin{pmatrix}-\frac{1}{3} & \frac{1}{3}\\\frac{1}{3} & \frac{2}{3}\end{pmatrix}.\)

Thus

\(\displaystyle A^n = \begin{pmatrix}-2 & 1\\1 & 1\end{pmatrix} \begin{pmatrix}(-1)^n & 0\\0 & 5^n \end{pmatrix} \begin{pmatrix}-\frac{1}{3} & \frac{1}{3}\\\frac{1}{3} & \frac{2}{3}\end{pmatrix} = \begin{pmatrix} \frac{2(-1)^n + 5^n}{3} & \frac{2\cdot 5^n - 2(-1)^n}{3}\\\frac{5^n - (-1)^n}{3} & \frac{2\cdot 5^n + (-1)^n}{3}\end{pmatrix},\)

and

\(\displaystyle a_{n+1} = A^n \cdot 2 = \dfrac{2\frac{2(-1)^n + 5^n}{3} + \frac{2\cdot 5^n - 2(-1)^n}{3}}{2\frac{5^n - (-1)^n}{3} + \frac{2\cdot 5^n + (-1)^n}{3}} = \frac{4\cdot 5^n + 2(-1)^n}{4\cdot 5^n + (-1)^{n+1}},\)

for all $n \ge 1$. When $n = 0$, $\frac{4\cdot 5^n + 2(-1)^n}{4\cdot 5^n + (-1)^{n+1}} = \frac{4 + 2}{4 - 1} = \frac{6}{3} = 2 = a_1$. Hence,

\(\displaystyle a_n = \frac{4\cdot 5^{n-1} + 2(-1)^{n-1}}{4\cdot 5^{n-1} + (-1)^n}\)

for all $n\ge 1$.
 
  • #5
Thanks you two. I wasn't aware that there was a general method for attacking such a problem.

-Dan
 
  • #6
Albert said:
according to your answer :
$a_1=\dfrac {18}{21}\neq 2$

Off by one error... if you replace $n$ by $n - 1$ it works properly.. iterating the recurrence one time will give $a_2$, but I forgot the sequence started at $n = 1$, not $n = 0$.. will fix later.
 
Last edited:
  • #7
Albert said:
$a_1=2 ,$ and

$a_{n+1}=\dfrac{a_n+4}{2a_n+3},\,\, n\in N$

find :$a_n$
let :
$x=\dfrac{x+4}{2x+3}---(1)$
the solutions of (1) $x=-2,1$
$\therefore \dfrac {a_{n+1}+2}{a_{n+1}-1}=-5(\dfrac {a_{n}+2}{a_{n}-1})=----=(-5)^{n}(\dfrac {a_1+2}{a_1-1})=(-5)^{n}\times 4$
and we get :
$a_n=\dfrac{4(-5)^{n-1}+2}{4(-5)^{n-1}-1}$
 

FAQ: Solution to Sequence Challenge $a_n$

What is the "Solution to Sequence Challenge $a_n$?"

The "Solution to Sequence Challenge $a_n$" is a mathematical problem that involves finding the general term or formula for a given sequence of numbers. It is a common challenge in mathematics competitions and is used to test a person's ability to recognize patterns and make predictions.

How do I solve the "Solution to Sequence Challenge $a_n$?"

To solve the "Solution to Sequence Challenge $a_n$," you must first carefully examine the given sequence and look for any patterns or relationships between the numbers. Then, use this information to create a formula that can generate the given sequence. This formula should be able to generate any term in the sequence, making it the solution to the challenge.

What skills are needed to solve the "Solution to Sequence Challenge $a_n$?"

To solve the "Solution to Sequence Challenge $a_n$," you need to have a strong understanding of mathematical concepts such as algebra, patterns, and sequences. You also need to be able to think logically and creatively to identify patterns and come up with a formula that fits the given sequence.

Are there any tips for solving the "Solution to Sequence Challenge $a_n$?"

Yes, here are a few tips for solving the "Solution to Sequence Challenge $a_n$":

  • Start by carefully examining the given sequence and looking for any patterns or relationships between the numbers.
  • Work backwards from the last term in the sequence to the first to help identify the pattern.
  • Try plugging in different values for n to see if they fit the given sequence.
  • If you are stuck, try breaking the sequence into smaller parts and finding the pattern for each part.

How is the "Solution to Sequence Challenge $a_n$" used in the real world?

The "Solution to Sequence Challenge $a_n$" is used in various fields such as mathematics, computer science, and engineering. It helps to develop critical thinking skills and the ability to recognize patterns, which are important in problem-solving. In real-world applications, finding the general term for a sequence can also help in making predictions and analyzing data patterns.

Similar threads

Replies
1
Views
994
Replies
2
Views
1K
Replies
3
Views
2K
Replies
2
Views
1K
Replies
4
Views
1K
Replies
1
Views
1K
Replies
11
Views
1K
Back
Top