HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-28
1 <p>In addition to these types of functions, there are several other important functions used across different mathematical contexts. These are described below:</p>
1 <p>In addition to these types of functions, there are several other important functions used across different mathematical contexts. These are described below:</p>
2 <p><strong>Modulus function: </strong>The modulus function outputs the distance of a number from zero on the<a>number line</a>without considering its sign. It is denoted as:</p>
2 <p><strong>Modulus function: </strong>The modulus function outputs the distance of a number from zero on the<a>number line</a>without considering its sign. It is denoted as:</p>
3 <p>\(f(x) = |x|\)</p>
3 <p>\(f(x) = |x|\)</p>
4 <p>This means that whether x is positive or negative, the output is always non-negative. The graph of the modulus function appears in the first and second quadrants because the output \(y = |x|\) is always positive or zero. For example, points (x, y), there is a corresponding point (-x, y), making the graph symmetric with respect to the y-axis.</p>
4 <p>This means that whether x is positive or negative, the output is always non-negative. The graph of the modulus function appears in the first and second quadrants because the output \(y = |x|\) is always positive or zero. For example, points (x, y), there is a corresponding point (-x, y), making the graph symmetric with respect to the y-axis.</p>
5 <p><strong>Rational function: </strong>A rational function is a fraction made up of two<a>algebraic expressions</a>, typically in the form:</p>
5 <p><strong>Rational function: </strong>A rational function is a fraction made up of two<a>algebraic expressions</a>, typically in the form:</p>
6 <p>\(f(x) = \frac {p(x)}{q(x)}\), where \(q(x) ≠ 0\)</p>
6 <p>\(f(x) = \frac {p(x)}{q(x)}\), where \(q(x) ≠ 0\)</p>
7 <p>A function is undefined at any point where its<a>denominator</a>equals zero. The graph of a rational function often includes asymptotes of horizontal or vertical lines that the graph approaches but never touches.</p>
7 <p>A function is undefined at any point where its<a>denominator</a>equals zero. The graph of a rational function often includes asymptotes of horizontal or vertical lines that the graph approaches but never touches.</p>
8 <p><strong>Signum function</strong></p>
8 <p><strong>Signum function</strong></p>
9 <p>The signum function (or sign function) indicates the sign of the input number. It doesn’t give a specific value but specifies whether it is positive, negative, or zero.</p>
9 <p>The signum function (or sign function) indicates the sign of the input number. It doesn’t give a specific value but specifies whether it is positive, negative, or zero.</p>
10 <p>The range of this function is: {-1, 0, 1}</p>
10 <p>The range of this function is: {-1, 0, 1}</p>
11 <p>If \(x &gt; 0 → f(x) = 1\) If \(x = 0 → f(x) = 0\) If \(x &lt; 0 → f(x) = -1\)</p>
11 <p>If \(x &gt; 0 → f(x) = 1\) If \(x = 0 → f(x) = 0\) If \(x &lt; 0 → f(x) = -1\)</p>
12 <p>This function is commonly used in programming and logic-based applications like conditional branching, sign detection in algorithms, and many more. </p>
12 <p>This function is commonly used in programming and logic-based applications like conditional branching, sign detection in algorithms, and many more. </p>
13 <p><strong>Even and<a>odd functions</a></strong>: These functions are categorized based on how they behave when the input is replaced by its negative:</p>
13 <p><strong>Even and<a>odd functions</a></strong>: These functions are categorized based on how they behave when the input is replaced by its negative:</p>
14 <p>A function is even if: \(f(-x) = f(x)\)</p>
14 <p>A function is even if: \(f(-x) = f(x)\)</p>
15 <p>(The graph is symmetric about the y-axis)</p>
15 <p>(The graph is symmetric about the y-axis)</p>
16 <p>Examples: \(f(x) = x², f(x) = cos (x)\)</p>
16 <p>Examples: \(f(x) = x², f(x) = cos (x)\)</p>
17 <p>A function is odd if: \(f(-x) = -f(x)\)</p>
17 <p>A function is odd if: \(f(-x) = -f(x)\)</p>
18 <p>(The graph is symmetric about the origin)</p>
18 <p>(The graph is symmetric about the origin)</p>
19 <p>Examples: \(f(x) = x³, f(x) = sin (x)\)</p>
19 <p>Examples: \(f(x) = x³, f(x) = sin (x)\)</p>
20 <p><strong>Periodic function: </strong>A function is called periodic if it repeats its values in regular intervals. In simple terms, for some value T, the function satisfies:</p>
20 <p><strong>Periodic function: </strong>A function is called periodic if it repeats its values in regular intervals. In simple terms, for some value T, the function satisfies:</p>
21 <p>\(f(x + T) = f(x)\) for all x</p>
21 <p>\(f(x + T) = f(x)\) for all x</p>
22 <p>Trigonometric functions like \(sin (x)\) and \(cos (x)\) are classic examples, repeating every 2π. For instance, \(f(x) = sin (x)\) has a period of 2π and a range of [-1, 1].</p>
22 <p>Trigonometric functions like \(sin (x)\) and \(cos (x)\) are classic examples, repeating every 2π. For instance, \(f(x) = sin (x)\) has a period of 2π and a range of [-1, 1].</p>
23 <p><strong>Inverse function: </strong>The<a>inverse function</a>of \(f(x)\), written as \(f⁻¹(x)\), essentially reverses the effect of \(f(x)\). In the inverse:</p>
23 <p><strong>Inverse function: </strong>The<a>inverse function</a>of \(f(x)\), written as \(f⁻¹(x)\), essentially reverses the effect of \(f(x)\). In the inverse:</p>
24 <p>When the domain is \(f(x)\) then the range is \(f⁻¹(x)\)</p>
24 <p>When the domain is \(f(x)\) then the range is \(f⁻¹(x)\)</p>
25 <p>The range of \(f(x)\) becomes the domain of \(f⁻¹(x)\)</p>
25 <p>The range of \(f(x)\) becomes the domain of \(f⁻¹(x)\)</p>
26 <p>An inverse function exists only if the original function is bijective (both one-to-one and onto).</p>
26 <p>An inverse function exists only if the original function is bijective (both one-to-one and onto).</p>
27 <p>Example:</p>
27 <p>Example:</p>
28 <p>If \(f(x) = x²\), then the inverse of \(f⁻¹(x) = √x\) (with domain restrictions).</p>
28 <p>If \(f(x) = x²\), then the inverse of \(f⁻¹(x) = √x\) (with domain restrictions).</p>
29 <p>For \(f(x) = sin x\), \(domain = ℝ\) and \(range = [-1, 1]\).</p>
29 <p>For \(f(x) = sin x\), \(domain = ℝ\) and \(range = [-1, 1]\).</p>
30 <p>For \(f⁻¹(x) = sin⁻¹x\), \(domain = [-1, 1]\) and \(range = [-π/2, π/2]\).</p>
30 <p>For \(f⁻¹(x) = sin⁻¹x\), \(domain = [-1, 1]\) and \(range = [-π/2, π/2]\).</p>
31 <p><strong>Greatest integer function: </strong>Also known as the<a>floor function</a>, this function maps any<a>real number</a>to the greatest integer less than or equal to it. It is written as:</p>
31 <p><strong>Greatest integer function: </strong>Also known as the<a>floor function</a>, this function maps any<a>real number</a>to the greatest integer less than or equal to it. It is written as:</p>
32 <p>\(f(x) = ⌊x⌋\)</p>
32 <p>\(f(x) = ⌊x⌋\)</p>
33 <p>Example: \(⌊2.8⌋ = 2, ⌊-1.3⌋ = -2\)</p>
33 <p>Example: \(⌊2.8⌋ = 2, ⌊-1.3⌋ = -2\)</p>
34 <p>The output is always an integer, and the graph appears as a step curve due to its jump at every integer value.</p>
34 <p>The output is always an integer, and the graph appears as a step curve due to its jump at every integer value.</p>
35 <p>Domain: All real numbers (ℝ)</p>
35 <p>Domain: All real numbers (ℝ)</p>
36 <p>Range: Integers (ℤ)</p>
36 <p>Range: Integers (ℤ)</p>
37 <p><strong>Composite function: </strong>A composite function is formed by applying one function to the output of another. If f(x) and g(x) are two functions, then the composite function is:</p>
37 <p><strong>Composite function: </strong>A composite function is formed by applying one function to the output of another. If f(x) and g(x) are two functions, then the composite function is:</p>
38 <p>\(f∘g(x) = f(g(x))\)</p>
38 <p>\(f∘g(x) = f(g(x))\)</p>
39 <p>In this case, the output of g(x) becomes the input for f(x).</p>
39 <p>In this case, the output of g(x) becomes the input for f(x).</p>
40 <p>Example:</p>
40 <p>Example:</p>
41 <p>Let \(f(x) = 2x + 3\) and \(g(x) = x + 1\)</p>
41 <p>Let \(f(x) = 2x + 3\) and \(g(x) = x + 1\)</p>
42 <p>Then, \(f∘g(x) = f(g(x)) = f(x + 1) = 2(x + 1) + 3 = 2x + 5.\)</p>
42 <p>Then, \(f∘g(x) = f(g(x)) = f(x + 1) = 2(x + 1) + 3 = 2x + 5.\)</p>
43 <p><strong>Graphs of different types of functions</strong>: Each type of function has a unique graphical representation and must satisfy the vertical line test to be considered a function. The shape of the graph varies based on the type of function.</p>
43 <p><strong>Graphs of different types of functions</strong>: Each type of function has a unique graphical representation and must satisfy the vertical line test to be considered a function. The shape of the graph varies based on the type of function.</p>
44 <p>For example:</p>
44 <p>For example:</p>
45 <p>The figure below shows the graphs of various other types of function types. Many of these graphs include horizontal, vertical, or even both types of asymptotes, depending on the nature of the function.</p>
45 <p>The figure below shows the graphs of various other types of function types. Many of these graphs include horizontal, vertical, or even both types of asymptotes, depending on the nature of the function.</p>