{{ tocSubheader }}
| {{ 'ml-lesson-number-slides' | message : article.intro.bblockCount }} |
| {{ 'ml-lesson-number-exercises' | message : article.intro.exerciseCount }} |
| {{ 'ml-lesson-time-estimation' | message }} |
A non-increasing function either stays the same or decreases as its input increases. Algebraically, a function f(x) is non-increasing if, for any two points x1 and x2 such that x1≤x2, the corresponding function value f(x1) is at least f(x2).
x1≤x2⇒f(x1)≥f(x2)
A non-decreasing function either stays the same or increases as its input increases. In algebraic terms, a function f(x) is non-decreasing if for any two points x1 and x2 such that x1≤x2, the corresponding function value f(x1) is at most f(x2).
x1≤x2⇒f(x1)≤f(x2)