Мне нужно вывести аналитические выражения для автоковариантной функции процесса ARMA (2,1), обозначенного как:
Итак, я знаю, что:
так что я могу написать:
затем, чтобы вывести аналитическую версию автоковариантной функции, мне нужно подставить значения - 0, 1, 2 ..., пока я не получу рекурсию, которая действительна для всех k, превышающих некоторое целое число.
Поэтому я подставляю и прорабатываю это, чтобы получить:
Теперь я могу упростить первые два из этих терминов, а затем заменить как и раньше:
Затем я умножаю восемь слагаемых:
So, I am left needing to resolve the four remaining terms. I want to use the same logic for lines 1, 2, 5 and 6 as I used on lines 4 and 7 - for example for line 1:
because .
Similarly for lines 2, 5 and 6. But I have a model solution that suggests the expression for simplifies to:
This suggests my simplification as described above would miss the term with the coefficient - which under my logic should be 0. Is my logic at fault, or is the model solution I found incorrect?
The worked solution also suggest that "analogously" can be found as:
and for :
I hope the question is clear. Any assistance will be much appreciated. Thank you in advance.
This is a question related to my research, and is not in preparation for any exam or coursework.