The derivative of the function \(f(x) = 3x^5-7x+5\) is \(f'(x) = 15x^4-7\text{.}\)
Section 15.2 Example-Like Elements
PreTeXt provides three closely-related tags for things that are examples or similar. They are
<example>
, <problem>
, and <question>
. They all have the same syntax. The <title>
element is optional, but encouraged as discussed in Best Practice 4.8.1. You may either use a freeform example, as shown in Listing 15.2.1, or an example structured with a <statement>
and zero or more <hint>
s, <answer>
s, and <solution>
s (in that order). This is illustrated in Listing 15.2.3. Note that for HTML output, if your <example>
has a <solution>
, the solution will be hidden in a knowl by default. See Section 29.2 for information on changing this behavior.The code in Listing 15.2.1 produces the following output:
Example 15.2.2. Differentiating a polynomial.
If you are reading this in HTML with the default processing options applied, the example above will be knowled. This is the PreTeXt default only so that authors know that knowls exist. See Section 29.2 for information on changing this behavior.
The code in Listing 15.2.3 produces the following output:
Example 15.2.4. Differentiating a polynomial.
Differentiate the function \(f(x) = 3x^5-7x+5\text{.}\)
Answer.
\(f'(x) = 15x^4-7\)
Solution.
We use the power, sum, and constant multiple rules and find that the derivative is \(f'(x) = 15x^4-7\text{.}\)