Say we have some algorithm which is known to have a worst case running time of $\Theta (n^2)$. I have been told it is possible that there could be some input which would have $O(n)$ running time but I am not sure why as by definition, $t(n) = \Theta(n^2) \implies t(n) = O(n^2) \text{ and } t(n) = \Omega(n^2)$ which in turn implies that beyond some constant $c$, $t(n) \ge c \cdot g(n) \,\forall n$.
Am I to just take that because the definitions need only hold for some constant, below this we can assume there exists a 'shorter' input where the algorithm does run in linear time?