# Nakafa Framework: LLM URL: /en/subject/high-school/12/mathematics/derivative-function/increasing-decreasing-and-stationary-function Source: https://raw.githubusercontent.com/nakafaai/nakafa.com/refs/heads/main/packages/contents/subject/high-school/12/mathematics/derivative-function/increasing-decreasing-and-stationary-function/en.mdx Output docs content for large language models. --- import { LineEquation } from "@repo/design-system/components/contents/line-equation"; import { getColor } from "@repo/design-system/lib/color"; export const metadata = { title: "Increasing, Decreasing, and Stationary Functions", description: "Master identifying increasing, decreasing, and stationary functions using derivatives. Learn to analyze function behavior and determine monotonicity intervals.", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "05/26/2025", subject: "Derivative Functions", }; ## Behavior of a Function and Its Derivative Have you ever noticed how the graph of a function can move up, down, or even flatten out for a moment? This behavior, called the **monotonicity of a function**, is closely related to its first derivative. Imagine you are walking along the curve of a graph from left to right. - When you are **climbing**, it means the function is **increasing**. - When you are **descending into a valley**, it means the function is **decreasing**. - When you are at the top of a hill or the bottom of a valley, you are at a **stationary** point. Geometrically, the first derivative, , is the gradient of the tangent line to the curve at that point. So, we can determine the function's behavior by looking at the sign of its gradient. ## Properties of Monotonicity The relationship between the first derivative and the behavior of a function can be summarized by the following properties: Suppose the function is continuous and differentiable over an interval. - If for all in that interval, then is an **increasing function**. - If for all in that interval, then is a **decreasing function**. - If at a specific point, then has a **stationary point** there. These stationary points are the key to finding where a function changes from increasing to decreasing, or vice versa. ## Analyzing Function Intervals Let's break down a case to see how to determine the intervals where a function is increasing or decreasing. Determine the intervals for which the function is increasing and decreasing. **Solution:** **Step 1: Find the first derivative** First, we differentiate the function . **Step 2: Find the stationary points** Stationary points occur when .
From this, we get the stationary points at and . **Step 3: Create a number line and test intervals** We place the stationary points on a number line. These points divide the line into three intervals. We take a test point from each interval to find the sign of (positive or negative). - **Interval :** Take . (Positive, function is increasing). - **Interval :** Take . (Negative, function is decreasing). - **Interval :** Take . (Positive, function is increasing). **Step 4: Conclude the intervals** Based on the tests, we can conclude: - The function is increasing on the intervals or . - The function is decreasing on the interval . Visualization of Function Monotonicity} description={ <> This graph illustrates the behavior of the function . Notice how the curve increases when its derivative is positive, decreases when its derivative is negative, and flattens at the stationary points where . } showZAxis={false} cameraPosition={[0, 0, 10]} data={[ { points: Array.from({ length: 21 }, (_, i) => { const x = -2 + i * 0.05; const y = x ** 3 - 3 * x; return { x, y, z: 0 }; }), color: getColor("LIME"), showPoints: false, labels: [ { text: "Increasing", at: 5, offset: [-1, 1, 0], }, ], }, { points: Array.from({ length: 41 }, (_, i) => { const x = -1 + i * 0.05; const y = x ** 3 - 3 * x; return { x, y, z: 0 }; }), color: getColor("ROSE"), showPoints: false, labels: [ { text: "Decreasing", at: 20, offset: [0, -1, 0], }, ], }, { points: Array.from({ length: 21 }, (_, i) => { const x = 1 + i * 0.05; const y = x ** 3 - 3 * x; return { x, y, z: 0 }; }), color: getColor("LIME"), showPoints: false, labels: [ { text: "Increasing", at: 15, offset: [1, 1, 0], }, ], }, { points: [{ x: -1, y: 2, z: 0 }], color: getColor("ORANGE"), showPoints: true, labels: [ { text: "Stationary (-1, 2)", offset: [-2.5, 0.5, 0], }, ], }, { points: [{ x: 1, y: -2, z: 0 }], color: getColor("ORANGE"), showPoints: true, labels: [ { text: "Stationary (1, -2)", offset: [2.5, -0.5, 0], }, ], }, ]} /> ## Exercises 1. Determine the intervals where the function is increasing and decreasing for the curve . 2. If the function is always increasing on the interval , determine the value of the coefficient ! 3. Determine the intervals where the function is increasing and decreasing if the curve is given by ! ### Answer Key 1. **Solution:** The first derivative of is . Stationary points are found when . The stationary points are at and . By testing the intervals on a number line: - For , is positive (increasing). - For , is negative (decreasing). - For , is positive (increasing). So, the function is increasing on or , and decreasing on the interval . 2. **Solution:** For a function to be *always increasing* on an interval, its first derivative must be non-negative () for every point within that interval. In the interval , the factor is always positive. Therefore, for , the second factor, , must also be non-negative. This inequality must hold for all values of in the interval . Since is a linear function, its behavior is monotonic. We only need to ensure it is non-negative at the most "critical" endpoint of the interval. - If , then is also non-negative, so will definitely be positive. This condition is met. - If , then is a decreasing function. Its smallest value will be at the right end of the interval (). For to always be non-negative, we just need to ensure its minimum value is greater than or equal to zero. We test at the critical boundary :
Combining both cases, the condition for the function to be always increasing on the given interval is . 3. **Solution:** Use the double angle trigonometric identity: . So, . Its first derivative is: - **The function is increasing** when , which is or . This occurs in the first and fourth quadrants.
This interval is valid for any integer . - **The function is decreasing** when , which is . This occurs in the second and third quadrants.
This interval is valid for any integer .