I keep reading that a function $g(n)$ dominates a function $f(n)$ if there are constants $K$ and $L$ where:
$K \cdot g(n) \ge f(n)$ whenever $n \ge L$
My confusion is in the finding values for those constants. How do you find fitting values to these constants?
In class, I was given the example:
Suppose $g(n) = n^2$ and $f(n) = 7n^2 + 5n$ choose $K = 8$ and $L = 6$

It is now clear that $g(n)$ dominates $f(n)$ Note: $f(n)$ dominates $g(n)$ when $K \le 7$ thus, the two functions are equivalent
There is no equations or context given as to how $8$ and $6$ were chosen to represent $K$ and $L$, respectively. What decided those values? Why should $8$ and $6$ be chosen, as opposed to any pair of numbers like $-3$ and $12$ or $19.6$ and $\pi$?
$so that$n^2$looks like $n^2$ – FShrike Sep 02 '21 at 21:34