What is the appropriate number that should be inserted in the following series of numbers arranged in a logical order?
$6,5,10,8,\text{____},9,12,8,10\\ $
$ \text{(A)} 10 \\ \text{(B)} 11 \\ \text{(C)} 12 \\ \text{(D)} 13 \\ \text{(E)} 14 $
In order to solve this problem I first tried to apply the formula for Arithmetic Sequences, Finding the nth term.
$a_n = a_1+d(n-1)\\ d = \text{common distance} , a_n= \text{nth term in the sequence},n = \text{the number of the term.}.$
However after careful inspection I realized that there was no common distance among the integers.
One thing I have noticed is the pattern subtract,add, subtract.
The answer to this question is (C) $12$. What pattern or formula is used to find solve this question?
It appears you first -1, then +5, then -2, then +4, etc.
So an iterative formula would be $a_1 = 6$ and for $n >1$: $$a_n = \begin{cases}a_{n-1}-\frac n2, & n \text{ even}, \\ a_{n-1} + 6-\frac{n-1}{2} & n \text{ odd}. \end{cases}$$
I don't have a general formula to hand, but perhaps another contributor could, or explain why not.