This project is intentionally different from the first two. Instead of building a reference document or a printable worksheet, you will build a short online activity designed for immediate feedback. It is a good pattern for pre-class checks, warm-ups, or low-stakes review.
Create a new project called Product Rule Reading Questions. This time you will build the whole activity from the instructions below rather than from a finished target.
Replace the sectionβs <introduction> with a short paragraph explaining that learners should answer the questions before class and use the feedback to review. For example,
Answer the following questions before class to check that you recognize the product rule and can identify where it applies.
Solution.PreTeXt Source so far
<section>
<title>Product Rule Reading Questions</title>
<introduction>
<p>
Answer the following questions before class
to check that you recognize the product rule
and can identify where it applies.
</p>
</introduction>
<exercises>...</exercises>
</section>
<exercise>
<title>True/False</title>
<statement correct="yes">
<p>
The product rule is needed to
differentiate <m>f(x)=x^2e^x</m>.
</p>
</statement>
<feedback>
<p>
Correct. The function is a product of
<m>x^2</m> and <m>e^x</m>, so the
derivative requires the product rule.
</p>
</feedback>
</exercise>
<exercise>
<title>Multiple Choice</title>
<statement>
<p>
Which derivative is correct for <m>f(x)=x^3\sin x</m>?
</p>
</statement>
<choices randomize="yes">
<choice>
<statement>
<p><m>3x^2\cos x</m></p>
</statement>
<feedback>
<p>
This multiplies the individual derivatives
instead of adding the two terms required by
the product rule.
</p>
</feedback>
</choice>
<choice correct="yes">
<statement>
<p><m>3x^2\sin x + x^3\cos x</m></p>
</statement>
<feedback>
<p>
Yes. Differentiate one factor at a time and
add the two products.
</p>
</feedback>
</choice>
<choice>
<statement>
<p><m>x^3\cos x</m></p>
</statement>
<feedback>
<p>
This differentiates only the sine factor and
forgets the derivative of <m>x^3</m>.
</p>
</feedback>
</choice>
</choices>
</exercise>
To space out the answer choices, use a <tabular> with one row and four cells. Put one expression in each cell and wrap it in an <area>. Mark the correct choices and write feedback that helps learners understand the difference between a product, a composition, and a quotient.
Add one final <p> at the bottom inviting learners to revisit the product-rule definition or worksheet if they struggled. If you want, link back to the worksheet you built in the previous project with a <url> once it has a shareable link.
You can build reading questions for theorem recognition, notation review, common misconceptions, or short pre-class quizzes without leaving PreTeXt.Plus.