2.2.11Functions

Increasing and decreasing functions — intuitive definition

2,471 words11 min readdifficulty · medium1 backlinks
Figure — Increasing and decreasing functions — intuitive definition

What Does "Increasing" Mean?

WHY this definition? We want to capture the idea of "going uphill consistently." If two points x1x_1 and x2x_2 are ordered (x1x_1 is to the left of x2x_2), then their function values should also be ordered in the same direction (f(x1)f(x_1) is below f(x2)f(x_2)). No dips, no flat sections — pure upward trend.

WHAT are we comparing? Not the steepness (that's the derivative's job later). Just the order: left point's output vs. right point's output.

HOW to check visually? Draw a horizontal line. As you slide it upward, each horizontal line should cross the graph at most once in the interval, and the graph should be rising from left to right.

What Does "Decreasing" Mean?

WHY the inequality flips? Because "going downhill" means the right point is lower than the left point. The x-order is x1<x2x_1 < x_2, but the y-order is reversed: f(x1)>f(x2)f(x_1) > f(x_2).

Strictly vs. Non-Strictly (Important Nuance)

The definitions above are for strictly increasing and strictly decreasing (the inequalities are strict: << and >>, not \leq or \geq).

WHY does this matter? A constant function like f(x)=5f(x) = 5 satisfies f(x1)=f(x2)f(x_1) = f(x_2) for all x1,x2x_1, x_2. It's NOT strictly increasing (since f(x1)f(x_1) is not << f(x2)f(x_2)), and NOT strictly decreasing either. It's flat.

Some books define:

  • Non-decreasing (or monotone increasing): x1<x2    f(x1)f(x2)x_1 < x_2 \implies f(x_1) \leq f(x_2) (allows flat sections).
  • Non-increasing (or monotone decreasing): x1<x2    f(x1)f(x2)x_1 < x_2 \implies f(x_1) \geq f(x_2).

For this note, we focus on the STRICT versions (the intuitive "always going up" or "always going down").


Worked Examples


Common Mistakes


Active Recall Practice

Recall Feynman Explanation (Explain to a 12-year-old)

Imagine you're climbing a hill. If every step forward also takes you higher up, you're going increasing — the path is getting higher. If every step forward takes you lower down, you're going decreasing — the path is sloping down.

Now, a function is just a rule that takes a number (x) and gives you another number (y). If we pretend x is how far you've walked, and y is your height, then:

  • Increasing function: Walk farther → you're higher up.
  • Decreasing function: Walk farther → you're lower down. For example, f(x)=2xf(x) = 2x is increasing because if you pick a bigger x, you get a bigger output. If x=1x = 1, you get f(1)=2f(1) = 2. If x=3x = 3, you get f(3)=6f(3) = 6, which is higher. Every time you go right (bigger x), you go up (bigger y).

But f(x)=xf(x) = -x is decreasing. If x=1x = 1, f(1)=1f(1) = -1. If x=3x = 3, f(3)=3f(3) = -3, which is lower (more negative). Going right means going down.

Some functions are tricky. f(x)=x2f(x) = x^2 goes down when x is negative (like from -3 to -1, the outputs go from 9 to 1), then goes up when x is positive. So it's not always one or the other — it depends on which part of the x-axis you're looking at.


Connections

  • Monotone functions — broader category (includes non-strict versions)
  • Derivative and sign of f'(x) — later, we'll use f(x)>0f'(x) > 0 to test for increasing
  • Intervals and domain — increasing/decreasing is defined on specific intervals
  • Inverse functions — strictly increasing/decreasing functions have inverses
  • Graphical analysis — visual inspection of increasing/decreasing behavior
  • Inequality solving — checking f(x1)<f(x2)f(x_1) < f(x_2) often involves algebraic inequalities

#flashcards/maths

What does it mean for a function to be increasing on an interval?
For any two points x1<x2x_1 < x_2 in the interval, we have f(x1)<f(x2)f(x_1) < f(x_2) — bigger input gives bigger output.
What does it mean for a function to be decreasing on an interval?
For any two points x1<x2x_1 < x_2 in the interval, we have f(x1)>f(x2)f(x_1) > f(x_2) — bigger input gives smaller output.
Is f(x)=3x5f(x) = 3x - 5 increasing or decreasing on R\mathbb{R}?
Increasing. For x1<x2x_1 < x_2, f(x2)f(x1)=3(x2x1)>0f(x_2) - f(x_1) = 3(x_2 - x_1) > 0, so f(x2)>f(x1)f(x_2) > f(x_1).
Is f(x)=2x+7f(x) = -2x + 7 increasing or decreasing?
Decreasing. For x1<x2x_1 < x_2, f(x2)f(x1)=2(x2x1)<0f(x_2) - f(x_1) = -2(x_2 - x_1) < 0, so f(x2)<f(x1)f(x_2) < f(x_1).
On which interval is f(x)=x2f(x) = x^2 increasing?
(0,)(0, \infty) (or [0,)[0, \infty) if we include the turning point). For 0<x1<x20 < x_1 < x_2, x12<x22x_1^2 < x_2^2.
On which interval is f(x)=x2f(x) = x^2 decreasing?
(,0)(-\infty, 0) (or (,0](-\infty, 0]). For x1<x2<0x_1 < x_2 < 0, x12>x22x_1^2 > x_2^2 (squaring flips the order for negatives).
Can a function be both increasing and decreasing on the same interval?
No (unless it's a single point). If ff is strictly increasing, then f(x1)<f(x2)f(x_1) < f(x_2) for x1<x2x_1 < x_2, which contradicts f(x1)>f(x2)f(x_1) > f(x_2) (decreasing).
What's the difference between "strictly increasing" and "non-decreasing"?
Strictly increasing: x1<x2    f(x1)<f(x2)x_1 < x_2 \implies f(x_1) < f(x_2) (strict inequality). Non-decreasing: x1<x2    f(x1)f(x2)x_1 < x_2 \implies f(x_1) \leq f(x_2) (allows flat sections where f(x1)=f(x2)f(x_1) = f(x_2)).
True or False: A constant function f(x)=cf(x) = c is increasing.
False. For x1<x2x_1 < x_2, f(x1)=f(x2)=cf(x_1) = f(x_2) = c, so f(x1)f(x_1) is NOT less than f(x2)f(x_2). It's neither strictly increasing nor strictly decreasing.

Concept Map

uphill means

downhill means

elevation = y-value

bigger input bigger output

bigger input smaller output

must hold for all pairs

must hold for all pairs

compares order not steepness

distinguishes

excludes constants like f x =5

Mountain path intuition

Increasing function

Decreasing function

Walk forward = larger x

x1 < x2 gives f x1 < f x2

x1 < x2 gives f x1 > f x2

Universal quantifier forall

Visual rising graph check

Strict inequalities < and >

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, increasing aur decreasing functions ka concept bilkul simple hai. Socho tum ek pahad pe chadh rahe ho. Agar tum age badhte ho (matlab x value badhti hai) aur tumhari height bhi badhti hai (y value badhti hai), toh wo path increasing hai. Agar age badhte waqt tumhari height kam ho rahi hai, toh wo decreasing hai. Function bhi waise hi kaam karta hai.

Increasing function ka matlab: agar do points liye, x1x_1 aur x2x_2, aur x1<x2x_1 < x_2 hai (matlab x1x_1 left side pe hai), toh function ki value bhi order mein honi chaiye: f(x1)<f(x2)f(x_1) < f(x_2). Yani bada input diya toh bada output milega. Example: f(x)=2x+3f(x) = 2x + 3 ekdum straight increasing function hai kyunki jitna bada x daloge, utna bada result ayega. Decreasing mein ulta hota hai: bada x diya toh chhota output, jaise f(x)=xf(x) = -x mein.

Ab twist yeh hai ki har function har jagah same behavior nahi dikhata. f(x)=x2f(x) = x^2 ko dekho — agar x negative hai, toh badhane pe output kam hota hai (like -3 se -1 tak jao, 9 se 1 tak output aata hai). Lekin x positive ho toh badhane pe output bhi badhta hai. Toh ye function kuch intervals pe increasing, kuch pe decreasing hai. Isliye hamesha interval specify karna zaroori hai. Yahi cheez calculus mein bohot kaam ayegi jab tumhe maxima-minima nikalni hogi ya graphs samajhne honge.

Go deeper — visual, from zero

Test yourself — Functions

Connections