True or false.
If $f(n) = \Theta(n^2)$ and $g(n) = \Theta(n^2)$ then $(f-g)(n) =\Theta(n^4)$ where we define $(f-g)(n)=f(n)-g(n) \forall n$.
I believe this is false.
Take $f(n) = 4n^2, g(n) = 2n^2$. Then $f(n)-g(n) = 2n^2$ and $2n^2$ is not $\Theta(n^4)$ but I cannot say for sure why.
Can anybody tell me if I am on the right track?