Final answer:
The correct option (c) To determine the number of virus-affected files in the system after one day, we use a recurrence relation. The number of virus-affected files increases by 250% every two hours. By applying the recurrence relation and simplifying the expression, we obtain the value of approximately 640,000 virus-affected files after one day.
Step-by-step explanation:
To determine the number of virus-affected files in the system after one day, we need to use a recurrence relation. Let's break down the information given in the question:
Starting with 1000 virus-affected files, the number increases by 250% every two hours.
After one day, which is 24 hours, there would be 12 two-hour intervals.
So, we can set up the recurrence relation, V(n), as V(n) = V(n-1) + (250/100) * V(n-1), where V(n) represents the number of virus-affected files at the nth two-hour interval.
Using this recurrence relation, we can calculate the number of virus-affected files after one day:
V(12) = V(11) + (250/100) * V(11)
V(12) = 2.5 * V(11)
Now, we can substitute V(11) using the same recurrence relation:
V(11) = V(10) + (250/100) * V(10)
V(11) = 2.5 * V(10)
Continuing this process, we can find V(10), V(9), and so on, until we find V(1) = 1000 (the initial number of virus-affected files).
Using this method, we find that V(12) = 2.5 * (2.5 * (2.5 * ... * (2.5 * 1000) ... ))). This can be simplified as V(12) = (2.5)^12 * 1000.
Calculating this value, we find that V(12) ≈ 640,000. Therefore, the correct answer is option c) 640,000.