1
$\begingroup$

I am stuck while trying to solve a recurrence relation. I just need the characteristic function to know the dependence of $Y_n$.

My recurrence relation is of the following form where $a$ and $b$ are constant,

$Y_n = a + b \frac{\sum_{j=1}^{n-1}Y_j}{n-1}$

I am unable to figure out the characteristic equation or even the asymptotic nature of the series.

  • 0
    @Peter $x^n$ seems to work but the $n$ in the denominator doesn't add up. It seems to me that there is something missing.2017-01-27
  • 0
    I suppose, that $n$ is unknown, but fixed. So, we will get a polynomial with coefficients depending on the degree.2017-01-27
  • 0
    $n$ is known, the second term of the recurrence relation just means taking a mean over the previous terms.2017-01-27
  • 0
    For any concrete $n$, we have concrete coefficients and can determine the characteristic equation as usual.2017-01-27
  • 0
    $n$ is the sequence index. It is not fixed. This is not a simple linear recurrence, so it does not have a characteristic equation. Characteristic equations occur for recurrences of the form $y_n = f(y_{n-1}, ..., y_{n-k})$ for some fixed $f$. You do not have that here. Your recurrence involves all previous elements of the sequence, not a fixed number of them. The standard linear methods do not apply. I suggest looking that the sequence $X_n = \sum_{j=1}^{n} Y_j$ instead. Once you have it, finding $Y_n$ from it is easy.2017-01-27
  • 0
    @PaulSinclair I tried replacing $X_n=\sum_{j=1}^{n} Y_j$, but I am not able to eliminate the sequence index still, the equation becomes of the form, $X_n = c + d X_{n-1}/n$ which is still unsolvable. Is there some way to show there does not exist any closed form expression ?2017-01-28
  • 0
    I get $X_n = a + \frac{n-1 +b}{n-1}X_{n-1}$. But you are right that this still doesn't count as a simple linear recurrence. Alas, I don't have a better suggestion yet.2017-01-29

1 Answers 1

0

Using the definition of $X_n$ in the comments by @Paul Sinclair, I ran out the first couple of cases, and then used the Online Encyclopedia of Integer Sequences to formulate the following conjecture: $$X_n = \frac{1}{(n-1)!}\left[\displaystyle\sum_{i=0}^{n-2} \left(ab^i\sum_{j=i+2}^{n} s(n,j)\right)+X_1\prod_{i=1}^{n-1}(b+i)\right]$$ where $s(n,k)$ is the unsigned Stirling number of the first kind.

Using the recurrence relation $X_{n+1}=a+\frac{n+b}{n}X_n$ given by Paul Sinclair, it is an interesting exercise to prove the formula using induction.