Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

We have a sequence $\lbrace b \rbrace$ which is defined in a relation $b_i = b_{i-1} * 0.9 + t_i * 0.1$. If we have observations of the full sequence of $\lbrace b \rbrace$, it would be quite simple to calculate the values of $\lbrace t \rbrace$. However, the case is that we only have around $50\%$ to $80\%$ observations in $\lbrace b \rbrace$ and we still want to calculate the values of $\lbrace t \rbrace$ as accurately as possible. Are there any well-known mathematical methods to solve this problem? Thanks!

share|improve this question
Is there any randomness in here, or is $t_i = 10(b_i - 0.9b_{i-1})$ exactly? – jbowman Mar 1 '12 at 21:52
@jbowman Exactly. – derekhh Mar 1 '12 at 21:56
2  
You have an underdetermined problem: there are more unknowns $t_i$ than there are data to estimate them. To obtain a solution, you must therefore add criteria. For instance, you might want the $t_i$ to look like a realization of a particular stochastic process; or maybe you just want to find the solution with the smallest possible size (as the sum of squares of the estimated $t_i$). Regardless, you have to be more specific about what "as accurately as possible" means. – whuber Mar 1 '12 at 22:17

1 Answer

Between $b_i$ and $b_j$ you have $$b_j=0.9^{j-i}b_i +0.1 t_{j} +0.09 t_{j-1} + \cdots + 0.1 \times 0.9^{j-i+1} t_{i+1}$$

If you have no other information for this gap, one approach would be to make all the values of $t$ in this gap equal (though, as whuber says, there are other approaches). If so, you get $$ t = \frac{b_j -0.9^{j-i}b_i}{1-0.9^{j-i}}. $$

This approach minimises the variance of $t$ and so may underestimate variations in the values of $t$. It may be unsuitable if you think there are patterns in $t$, such as a trend.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.