5

Given sequence $a_1, a_2, ...$ where $a_1=1, a_2 = 4, a_3 = 9$ and when $n > 3, a_n = a_{n-1}-a_{n-2}+a_{n-3} + 2(2n-3)$. Prove that the equality $a_n = n^2$ is valid for every $n$if $n \in \mathbb N$

I am pretty sure I have to use strong induction here, but I'm not sure how to solve it. Any ideas?

MathBear
  • 246

2 Answers2

6

The second minus sign in the question should be a plus. $a_n = a_{n-1}-a_{n-2}\color{red}{+}a_{n-3} + 2(2n-3)$, it is then quite easy to show by using strong induction.

Donald Splutterwit
  • 36,613
  • 2
  • 26
  • 73
4

Guide:

  • Verify that $a_n=n^2$ holds for $n \in \{ 1,2,3\}$.

  • Simplify $a_{n-1}-a_{n-2}\color{red}{+}a_{n-3}+2(2n-3)=(n-1)^2-(n-2)^2\color{red}{+}(n-3)^2+2(2n-3)$ and show that it is equal to $n^2$.

Credit:

Special thanks to Rene Schipperus for pointing out the mistake in the question and Donald Splutterwit for fixing the mistake.

Siong Thye Goh
  • 149,520
  • 20
  • 88
  • 149