Write down an explicit expression for the fitted model

Assignment Help Econometrics
Reference no: EM131443719

Question 1. Consider a general time series model of the form

Yt = mt + st + et, (1)

where {mt} is the trend component of the form mt = θ01 (t-12) + θ2 (t-12)2 with θi ≠ 0 (i = 0, 1, 2) being unknown parameters, {st} is the seasonal component satisfying st+12 = st and ∑j=112 sj = 0, and {et} is a sequence of stationary residuals with E[e1] = 0 and E[e2] = 1.

(a) Is {Yt} stationary? Give your reasoning.

(b) Is the first-order differenced version of Yt, Zt = ∇12Yt = Yt - Yt-12, stationary ? Give your detailed reasoning.

(c) Is the second-order differenced version of Yt, Wt = ∇212 Yt = (1 - B12)2Yt, stationary ? Give your detailed reasoning.

Question 2. The stationary process {Zt} is said to be white noise with mean 0 and variance σ2, written

Zt ~ WN (0, σ2),

if and only if {Zt} has zero mean and covariance function given by

            σ2   if h = 0

Υ(h) =

            0    Otherwise.

(a) Consider an ARMA(1,1) model of the form

Xt = φXt-1 + Zt + θZt-1,

where |φ| < 1 and |θ| < 1.

Find the auto-correlation coefficient function (ACF) of {Xt}, ρ(k), for

k = 1, 2, .....

(b) Consider an MA(1) model with drift of the form Xt = µ + Zt + θZt-1.

Find the ACF. Does it depend on µ?

(c) Consider a time series model of the form: (1 - B)(1 - 0.2B)Xt = (1 - 0.5B)Zt.

Classify the model as an ARIMA(p,d,q) model (i.e., give your reasoning for the specification of (p, d, q)).

Question 3.
Consider an auto-regressive model of order one (AR(1)) of the form

Xt = φXt-1 + Zt, (2)

where {Zt} is a sequence of white noises with E[Zt] = 0 and 0 < σ2 = E[Zt2], and |φ| < 1 is an unknown parameter.

(a) Derive the autocorrelation function ρ(k) for all k ≥ 1.

(b) State the necessary and sufficient condition such that {Xt} is stationary.

(c) Give some detailed description for each of the possible estimation methods you have learned.

(d) Write down the corresponding code functions from R for the possible estimation methods to be implemented in R.

(e) Using at least one of the estimation methods, write down some detailed formulae for the estimators of the unknown parameters φ and σ2.

Question 4. (a) Let {Zt} be a sequence of random errors satisfying

E[Zt|Ft-1] = 0

In addition, we allow for a heteroscedastic structure of the form

Zt2 = α0 + α1Z2t-1 + ut,

where {ut} is a sequence of white noises, and α0 > 0 and α1 ≥ 0.

The process {Zt} satisfying (3)-(4) is called an auto-regressive conditional heteroscedastic model of order one, simply, ARCH(1).
- Rewrite model (4) as an auto-regressive model of order one (AR(1)).

- Give some detailed description for each of the possible estimation methods you have learned.

- Write down the corresponding code functions from R for the possible estimation methods to be implemented in R.

- Under the conditions: 0 < α1 < 1 and 3α12 < 1, find the second and fourth moments:

E[Zt2] and E[Zt4].

(b) Let {Zt} be a sequence of random errors satisfying

E[Zt|Ft-1] = 0.

In addition, we allow for a heteroscedastic structure of the form

E [Zt2|Ft-1] = ht = α0 + Σi=1r1αiZ2t-i + Σj=1r2βjht-j.

The process {Zt} satisfying (5)-(6) is called a generalized auto-regressive conditional heteroscedastic model of order (r1, r2), simply, GARCH(r1, r2). Consider a GARCH(1,1) model of the form

Zt2 = α0 + (α1 + β1)Z2t-1 + ut - β1ut-1

where ut ~ WN (0, σ2).

- Find the conditions such that Zt2 is stationary and 0 < E[Zt2] < ∞.

Question 5. (a) Consider a seasonal ARIMA (SARIMA) model of the form

φ2(B)Φ3(B12)Yt = θ1(B)Θ2(B12)Zt, (8)

where B denotes the backward shift operator, φ2, Φ3, θ1 and Θ2 are polynomials of order 2, 3, 1 and 2, respectively, {Zt} ∼ WN (0, σ2), and Yt = ∇2122 Xt = (I - B)2(I - B12)2Xt. This model is called a SARIMA model of order (2, 2, 1) × (3, 2, 2)12 for {Xt}.

- Does {Yt} follow an ARIMA model of ARIMA(b1, b2, b3) ? If so, can you specify the values of bi for i = 1, 2, 3 ?

- Does Wt = ∇122 Xt follow an ARIMA model of ARIMA(c1, c2, c3) ? If so, can you specify the values of ci for i = 1, 2, 3 ?

- Based on your own understanding and experience, write down the main steps for you to identify and then estimate a seasonal ARIMA model of the form Xt ∼ SARIMA(2, 2, 1) × (3, 2, 2)12.

(b) The real data set USAccDeaths was fitted by a seasonal ARIMA model with the following summary:

> USAccDeaths
> usa.arima1<-arima(USAccDeaths, order=c(0,1,1), seasonal = list(order=c(0,1,1), period =12))
> usa.arima1

Call:
arima(x = USAccDeaths, order = c(0, 1, 1),

seasonal = list(order = c(0, 1, 1), period = 12))

Coefficients:

ma1          sma1

-0.4303     -0.5528

s.e.        0.1228      0.1784

sigma^2 estimated as 99347:

log  likelihood = -425.44,      aic = 856.88

> usa.fore<-predict(arima(USAccDeaths, order =

c(0,1,1),   seasonal   =   list(order=c(0,1,1),

period =12)),       n.ahead = 12)

$pred

Jan               Feb               Mar                  Apr               May              Jun

8336.061   7531.829        8314.644      8616.868      9488.912      9859.757

Jul                  Aug                Sep               Oct               Nov              Dec

10907.470   10086.508      9164.958     9384.259      8884.973      9376.573

$se

Jan               Feb               Mar             Apr               May              Jun

315.4481   363.0054     405.0164     443.0618    478.0891     510.7197

Jul                Aug               Sep              Oct               Nov              Dec

541.3871     570.4081    598.0224     624.4167    649.7397     674.1121

> ts.plot(window(USAccDeaths,1973-1978), usa.fore$pred, usa.fore$pred + 2*usa.fore$se, usa.fore$pred - 2*usa.fore$se)

Using the summarized information given above, answer the following questions:

- Which seasonal ARIMA model was used ? Give your identification of (p, d, q) × (P, D, Q)s.

- Write down an explicit expression for the fitted model.

Reference no: EM131443719

Questions Cloud

Transactions for the month of june for quixote company : Journalize the following transactions for the month of June for Quixote Company using the following list of Accounts and Account numbers
Define the statements on the us capital account : Indicate whether each of the following represents a credit or debit on the U.S. capital account. a. a French bank purchases $100,000 worth of U.S. Treasury notes b. the central bank in the United States purchases 1 million euros in the currency marke..
Dissertation on vertical stabilizer : The topic is vertical stabilizer. Have to do topology optimization of vertical stabilizer by using the software called hyperworks in order to reduce the weight of stabilizer
Obtain the approval of its shareholders : Rock corporation proposes to merge with Quarry inc. Quarry will first obtain the approval of its shareholders; then, by operation of law the Quarry shares will become shares of the survivor corporation, Rock Quarry, inc.
Write down an explicit expression for the fitted model : ETF5200: Applied Time Series Econometrics State the necessary and sufficient condition such that {Xt} is stationary and Give some detailed description for each of the possible estimation methods you have learned - Write down the corresponding code fu..
Write a report about rebotic welding : The report should talk about REBOTIC WELDING, it should be only a page and half or maximum 2 pages. it should be clear and good grammer.
Eliminate trade between freeland and braveburg : Assume that Freeland could produce 8 units of X and no Y, 16 units of Y and no X, or any linear combination in between, and Braveburg could produce 32 units of X and no Y, 48 units of Y and no X, or any linear combination in between.
Explain the style and meaning of abstract expressionism art : Imagine you are a museum tour and you are responsible for conducting an international tour of foreign visitors and students through a museum exhibit exploring Abstract Expressionism. In your own words, describe how you would define the movement an..
Personal distribution of income in united states : The table on the right shows the personal distribution of income in the United States in 2009.If everyone in the United States were to consume an equal quantity of goods and services, what percentage of total income would the poorest 20 percent of..

Reviews

len1443719

3/29/2017 3:10:51 AM

ETF5200: Applied Time Series Econometrics This assignment is assessed, and carries weight 20% towards your final mark for this unit. The deadline for submission of work for this assign- ment is 6:00pm. You may put your solutions into the Lecturer’s pigeonhole in Level 5 of Building H. Alternatively, you may submit it to the Lecturer in person during the Lecture on Wednesday.

Write a Review

Econometrics Questions & Answers

  What is the cost of one more automobile

If the economy is at point C, what is the cost of one more automobile Of one more forklift Please explain where you get the numbers from to solve for each Explain how the production possibilities curve reflects the law of increasing opportunity cos..

  What is the firm''s economic profit or loss in equilibrium

In equilibrium, approximately what is the firm's total cost and total revenue?

  What is the minimal fixed cost that will prevent entry

To block entry, the incumbent appeals to the government to require that the entrant incur extra costs. What happens to the Cournot equilibrium if the legal requirement causes the marginal cost of the second firm to rise to that of the first firm

  How much does earth diameter contract along the motion

The radius of Earth is 6370 km, and its orbital speed about the Sun is 30 km/s. Suppose Earth moves past an observer at this speed. To the observer, by how much does Earth's diameter contract along the direction of motion

  What is the book value at the end of year

For an asset that fits into the MACRS "all property not assigned to another class" designation, what is the book value at the end of year 7 for the asset Assume the asset has a 10-year life of use and that the cost basis for the asset is $10,000.

  Discuss the economic impact of international tourism

Discuss the economic impact (positive and negative) of international tourism on host destinations. In your discussion examine the impacts from the viewpoints of at least 2 different stakeholders (i.e. multinational corporations, host community, lo..

  How much are the variable costs per unit of labor

If Boeing produces 9 jets per month, its long run total cost is $9.0 million per month. If it produces 10 jets per month, its long run total cost is $9.5 million per month. Pick the correct answer from below: a) Boeing exhibits constant return to s..

  Calculate ziponias output from 2000 to 2006

Calculate Ziponia's output from 2000 to 2006, assuming that its growth rate was 6% from 2000 to 2001 and then the growth rate fell by 1% point each year. Plot these point onto your graph from part (a). Is the slope of this graph constant.

  Calculated the elasticity of demand for chocolate

Assume the point elasticity method. 1. Anna owns the Sweet Alps Chocolate store. She charges $10 per pound for her hand made chocolate. You, the economist, have calculated the elasticity of demand for chocolate in her town to be

  What is the marginal product of the 3rd pound of rubber

Marginal revenue product is defined as the change in total revenue that results from the employment of an additional unit of a resource. A widget producer wishes to determine how the addition of pounds of rubber will affect its MRP and profits. Se..

  What are the trade-offs for society as it sets rules

What are the trade-offs for society as it sets rules for deciding cases such as these?

  Find partial derivatives

Find (all) the partial derivatives (e.g. ?u/?x and ?u/?y) of the following functions: 1. Q(p,I) = 300 - 3p - 4I 2. u(x,y) = 10xy 3. u(x,y) = ax? y? 4. z = (x+y)2 5. z = 2x3-11x2y +3y2

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd