Final answer:
The EstimatedRTT is computed using a formula involving the α value and the SampleRTT values. Each subsequent EstimatedRTT depends on the previous EstimatedRTT and the corresponding SampleRTT. The calculations for the EstimatedRTT values after each SampleRTT value has been obtained are provided.
Step-by-step explanation:
The EstimatedRTT is calculated using the formula:
EstimatedRTT = (1 - α) * EstimatedRTT + α * SampleRTT
Given α=0.25 and the measured SampleRTT values of 100 ms, 200 ms, 150 ms, and 175 ms, the EstimatedRTT after each SampleRTT value is obtained can be calculated as follows:
- For the first SampleRTT value of 100 ms:
EstimatedRTT = (1 - 0.25) * EstimatedRTT + 0.25 * 100 ms
EstimatedRTT = 0.75 * EstimatedRTT + 25 ms - For the second SampleRTT value of 200 ms:
EstimatedRTT = (1 - 0.25) * EstimatedRTT + 0.25 * 200 ms
EstimatedRTT = 0.75 * (0.75 * EstimatedRTT + 25 ms) + 50 ms - For the third SampleRTT value of 150 ms:
EstimatedRTT = (1 - 0.25) * EstimatedRTT + 0.25 * 150 ms
EstimatedRTT = 0.75 * (0.75 * (0.75 * EstimatedRTT + 25 ms) + 50 ms) + 37.5 ms - For the fourth SampleRTT value of 175 ms:
EstimatedRTT = (1 - 0.25) * EstimatedRTT + 0.25 * 175 ms
EstimatedRTT = 0.75 * (0.75 * (0.75 * (0.75 * EstimatedRTT + 25 ms) + 50 ms) + 37.5 ms) + 43.75 ms