I have this question:
Suppose you have a computer that requires 1 minute to solve problem instances of size $n = 7.3000\cdot 10^4$. What instance sizes can be run in 1 minute if you buy a new computer that runs ($4.60\cdot 10^5$) times faster than the old one, if the time complexity is $T(n) = θ(n^2)$.
How do I solve this?
So $T(n) = cn^2$ so for the current instance you have $c \left( 7.3 \times 10^4 \right)^2$ running in 1 minutes. What is $c$?
Now that you know what $c$ is, how big of an instance will the better computer be able to solve?