mirror of
https://github.com/Steffo99/appunti-magistrali.git
synced 2024-11-22 02:44:17 +00:00
726 B
726 B
aliases | ||||
---|---|---|---|---|
|
notazione asintotica per il limite bilaterale.
\def \varAsym {{\color{royalblue} g(n)}}
\def \varFunc {{\color{orangered} f(n)}}
\def \varLess {{\color{lightcoral} c_{less}}}
\def \varMore {{\color{palegreen} c_{more}}}
\def \varBeginning {{\color{turquoise} n_0}}
\Huge
\Theta(\varAsym)
In linguaggio formale, \varFunc
è in \Theta(\varAsym)
se:
\Theta(\varAsym)
\Longleftrightarrow
\begin{cases}
\exists & \varLess > 0\
\exists & \varMore > 0\
\exists & \varBeginning > 0\
\
\forall & n \geq \varBeginning\
: & 0 \leq (\varLess \cdot \varAsym) \leq \varFunc \leq (\varMore \cdot \varAsym)
\end{cases}