A class $C$ is closed under polynomial time reductions if for every two languages $๐ฟ_1 , ๐ฟ_2$ such that $๐ฟ_1 \leq_{๐} ๐ฟ_2$ and $๐ฟ_2 \in C$, it holds that $๐ฟ_1 \in C$.
My question is how to prove that PSPACE is closed under polynomial time reductions?
My motivation: PSPACE is closed under polynomial-time reductions because any language $L_1 \leq_p L_2$ means $L_1$ can be decided by a polynomial-time reduction to $L_2$ , and since $L_2 \in \text{PSPACE}$ , $L_1$ can also be decided in PSPACE by simulating both the reduction and the PSPACE algorithm for $L_2$ . PSPACE algorithms can simulate polynomial-time computations with space efficiency.
How to proceed from here? This question asked here before with no answer.