Question

) Given the following actual CPU burst for a task, {3, 4, 5, 3, 11, 12,...

) Given the following actual CPU burst for a task, {3, 4, 5, 3, 11, 12, 11, 11}, and an initial "best guess" at the burst as 5, apply the following “exponential averaging” formula to predict the length of the task's next CPU burst. Apply α’s of 0.2, 0.6, and 0.8. Which choice of the 3 α’s most closely tracks the actual burst sequence?

τ       = α t   + (1 – α) τ

n+1         n                   n

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Given actual CPU bursts for a task {t0, t1, t2, t3, t4, t5, t6, t7} : {3, 4, 5, 3, 11, 12, 11, 11}.

And initial "best guess" at the burst, T0 = 5.

If α is 0.2:

T1 = α t0 + (1 – α) T0 = 0.2*3 + 0.8*5 = 4.6

T2 = α t1 + (1 – α) T1 = 0.2*4 + 0.8*4.6 = 4.48

T3 = α t2 + (1 – α) T2 = 0.2*5 + 0.8*4.48 = 4.584

T4 = α t3 + (1 – α) T3 = 0.2*3 + 0.8*4.584 = 4.2672

T5 = α t4 + (1 – α) T4 = 0.2*11 + 0.8*4.2672 = 5.61376

T6 = α t5 + (1 – α) T5 = 0.2*12 + 0.8*5.61376 = 6.8910

T7 = α t6 + (1 – α) T6 = 0.2*11 + 0.8*6.891 = 7.71280

T8 = α t7 + (1 – α) T7 = 0.2*11 + 0.8*7.7128 = 8.3702

If α is 0.6:

T1 = α t0 + (1 – α) T0 = 0.6*3 + 0.4*5 = 3.8

T2 = α t1 + (1 – α) T1 = 0.6*4 + 0.4*3.8 = 3.92

T3 = α t2 + (1 – α) T2 = 0.6*5 + 0.4*3.92 = 4.568

T4 = α t3 + (1 – α) T3 = 0.6*3 + 0.4*4.568 = 3.6272

T5 = α t4 + (1 – α) T4 = 0.6*11 + 0.4*3.6272 = 8.05088

T6 = α t5 + (1 – α) T5 = 0.6*12 + 0.4*8.05088 = 10.420352

T7 = α t6 + (1 – α) T6 = 0.6*11 + 0.4*10.420352 = 10.76814

T8 = α t7 + (1 – α) T7 = 0.6*11 + 0.4*10.76814 = 10.90725

If α is 0.8:

T1 = α t0 + (1 – α) T0 = 0.8*3 + 0.2*5 = 3.4

T2 = α t1 + (1 – α) T1 = 0.8*4 + 0.2*3.4 = 3.88

T3 = α t2 + (1 – α) T2 = 0.8*5 + 0.2*3.88 = 4.776

T4 = α t3 + (1 – α) T3 = 0.8*3 + 0.2*4.776 = 3.3552

T5 = α t4 + (1 – α) T4 = 0.8*11 + 0.2*3.3552 = 9.47104

T6 = α t5 + (1 – α) T5 = 0.8*12 + 0.2*9.47104 = 11.494208

T7 = α t6 + (1 – α) T6 = 0.8*11 + 0.2*11.494208 = 11.0988416‬

T8 = α t7 + (1 – α) T7 = 0.8*11 + 0.2*11.0988416‬ = 11.01976832‬

Looks like with α = 0.8 most closely tracks the actual burst sequence.

Add a comment
Know the answer?
Add Answer to:
) Given the following actual CPU burst for a task, {3, 4, 5, 3, 11, 12,...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Slide 9 is given above An Example CPU Burst 4 5 6 10 4 12 The...

    Slide 9 is given above An Example CPU Burst 4 5 6 10 4 12 The Guess 10 7 6 6 Ti All quantities in ms with a = 1/2 To = 10 Tn+1 = Qtn +(1 - «) Tn Ti = (1/2)to +(1 - 1/2)TO Ti = (1/2)(4) + (1/2)(10) = 7ms Using the exponential average formula and the example on slide 9 of Lecture 7, compute the next estimated burst time, using the same values in the table...

  • The exponential average formula used to predict the length of the next CPU burst is given...

    The exponential average formula used to predict the length of the next CPU burst is given by the recursion equation: tau_n + 1 = alpha tau_n + (1 - alpha)t_n. Where t denotes the nth CPU bust time, and 0 lessthanorequalto alpha lessthanorequalto 1. Explain the roll of alpha in the equation. suppose the first five actual CPU bursts of a process in milliseconds are: t_0 = 6, t_1 = 4, t_2 = 6, t_3 = 8, t_4 = 6....

  • Consider the following time series data. Week 1 2 3 4 5 6 Value 19 11 16 1017 15 (a) Construct a ...

    Consider the following time series data. Week 1 2 3 4 5 6 Value 19 11 16 1017 15 (a) Construct a time series plot. 20 20 20 18 16 14 12 10 c 14 12 12 0 23 4 5 67 0 23 4 5 67 Week Weck Week 20 18 0 1 2345 6 7 Week What type of pattern exists in the data? The data appear to follow a seasonal pattern. The data appear to follow a...

  • Consider the following time series data. Week 1 2 3 4 5 6 Value 17 13...

    Consider the following time series data. Week 1 2 3 4 5 6 Value 17 13 15 11 15 13 (a) Choose the correct time series plot. (i) (ii) (iii) (iv) - Select your answer -Graph (i)Graph (ii)Graph (iii)Graph (iv)Item 1 What type of pattern exists in the data? - Select your answer -Horizontal PatternTrend PatternItem 2 (b) Develop a three-week moving average for this time series. Compute MSE and a forecast for week 7. If required, round your answers...

  • The following table shows the actual demand observed over the last 11 years: Year 3 4...

    The following table shows the actual demand observed over the last 11 years: Year 3 4 6 8 9 10 11 1 2 7 Demand 10 6 11 9 12 12 10 8 6 7 0.30 and a forecast for year 1 of 5.0, provide the forecast from periods 2 through 12 (round your responses to one decimal Using exponential smoothing with place) Year 1 3 4 6 8 10 12 2 5 7 9 11 Forecast 5.0 Provide the...

  • Please help Consider the following time series data. Week 1 N 3 4 5 6 Value...

    Please help Consider the following time series data. Week 1 N 3 4 5 6 Value 19 11 13 10 14 12 (a) Construct a time series plot. 20 18 20 18 14 12 10 Week 3 4 Week D 20 18+ 16 Time Series Value Time Series Value 5 Week 0 Wook What type of pattem exists in the data? The data appear to follow a cyclical pattern. The data appear to follow a trend pattem. The data appear...

  • TEST RESULTS: QAD STEPS TORQUE 1 2 3 4 5 6 7 2 10 11 12...

    TEST RESULTS: QAD STEPS TORQUE 1 2 3 4 5 6 7 2 10 11 12 1710 1691 1678 1663 1645 16161605 1707 154 150 1949 1383 00 0.1 0.1 0.2 0.25 0.0.350.4 0.5 0.6 0.7 **** 0.8 10.700.76 0.78 0.82/0.91 18,98 1.05 1.12 1.25 142 45 1.85 TABLE 19-2 DE-BRIEFING The damper winding squirrel-cage) starts the rotor and gets it up to 90% synchronous speed. After DC is applied to the rotor field coil and the rotor pulls up...

  • Job Seeker (k) 1 2 3 4 5 5 6 7 8 9 10 11 12...

    Job Seeker (k) 1 2 3 4 5 5 6 7 8 9 10 11 12 13 14 15 Interviews (Xi) 3 5 114 6 7 6 3 Job Offers (Y) 0 2 1 2 2 4. 3 5 1 4 6 100 7 4 8 1 1 8 4 2 (1) (2 points) Your friend Paul, who took Econ 140A last year, says that you should run a hypothesis test to evaluate Cathy's statement. If the null hypothesis is...

  • The Actual demands in the last 4 periods are given. Which of the following statement is...

    The Actual demands in the last 4 periods are given. Which of the following statement is not true? Period Ai Weight 1 10 2 20 0.3 3 30 0.3 4 20 0.4 A. F5=23.33 using Moving Average and n=3 B. F5=20 using Naive Approach C. When the business environment is more dynamic, we tend to choose smaller smoothing constant value. D. F5=23 using Weighted Moving Average when n=3 and the weight is 0.4, 0.3, and 0.3 for period 4, 3,...

  • Who can help me to solve the questions 1-4? Figure 4-5 is the same as Figure 4-6 Exercise B4&5 A 1-3 C6-12 F 19 & 20 E 16-18 D 13-15 Chromosome Formula: 44 + XXY Sex of Patient: Male Name of...

    Who can help me to solve the questions 1-4? Figure 4-5 is the same as Figure 4-6 Exercise B4&5 A 1-3 C6-12 F 19 & 20 E 16-18 D 13-15 Chromosome Formula: 44 + XXY Sex of Patient: Male Name of Syndrome, if any: Klenifelter's Syndrome Description of Syndrome, if any: Y G 21 & 22 sorry--you'll have to look this up yourself! Sample human karyotype. Use as a guide for assembling your karyotype on Figure 4-6. Figure 4-5. Lab...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT