next up previous
Next: The smile of the Up: Errors are born in Previous: The first portion of

Different ways are different

Our fifth example is:


\begin{displaymath}
3, 4, 6, 10, 18, ? %% (5)
\end{displaymath} (9)

Let's rewrite it in the following form:

\begin{displaymath}
3, (3 + 1), (4 + 2), (6 + 4), (10 + 8), ? %%(5a)
\end{displaymath} (10)

The next is 18 + 16. This would be 34. Now we can reconstruct the rule

\begin{displaymath}
X_{i} = X_{i-1} + 2^{i} %% (5b)
\end{displaymath} (11)

The answer is right and the rule is right, but there exist a more simple form:

\begin{displaymath}
X_{i} = X_{i-1} * 2 - 2 %% (5c)
\end{displaymath} (12)

We see that the idea coming first may be not simplest solution. It my be wrong one too. Let's consider the sixth sequence

\begin{displaymath}
3, 4, 6, ? %%(6)
\end{displaymath} (13)

We can use the solution we already have and write 10. This variant is not the one possible. Other solution is 9:

\begin{displaymath}
3, (3 + 1), (4 + 2), (6 + 3) %% (6a)
\end{displaymath} (14)

If there exist one solution, one other may exist too. In many cases the consequences may be quite different. This is the problem of a selection.


next up previous
Next: The smile of the Up: Errors are born in Previous: The first portion of
2002-03-18