gnapprox
Represents a negated greater-than and approximately equal relationship between mathematical expressions.
Overview
Serves as a specialized mathematical comparison operator combining both inequality and approximation concepts in a negated form. Commonly found in:
- Advanced mathematical proofs where precise relationships between quantities need to be expressed
- Analysis and topology contexts when discussing sequences and limits
- Theoretical computer science for describing algorithmic bounds
- Mathematical logic and set theory for expressing complex relationships between elements
Examples
Expressing that one sequence is not asymptotically greater than another.
f(n) \gnapprox g(n) \text{ as } n \to \inftyShowing a function's growth rate is not greater than exponential.
h(x) \gnapprox e^x \text{ for } x > 0Comparing computational complexity classes.
O(n\log n) \gnapprox O(n^2)