Computational Complexity Theory
In computational complexity theory, 'o' represents a mathematical notation used to describe an upper bound that is not tight, indicating that a function grows slower than another function asymptotically. It specifically means that for a function f(n), we say f(n) is in 'o(g(n))' if for every positive constant ε, there exists a constant N such that for all n > N, f(n) < ε * g(n). This concept is essential in analyzing the growth rates of functions in relation to space complexity, particularly in the context of PSPACE.
congrats on reading the definition of o. now let's actually learn it.