10  Lab 10: Antiderivatives

Objective

The objective of this lab is to introduce students to the concept of antiderivatives and their applications in calculus. By working through a series of exercises, students will develop an understanding of how to find antiderivatives, verify their results using computational tools, and apply these concepts to real-world scenarios, such as calculating areas under curves and solving kinematics problems.

Specific Goals

  1. Understanding Antiderivatives:
    • Learn the definition of an antiderivative and its significance in calculus.
  2. Calculating Antiderivatives:
    • Find the antiderivative \(F(x)\) for a given function \(f(x)\) through manual calculations.
  3. Verification Using Maxima:
    • Use the computational tool Maxima to verify the manually calculated antiderivatives.
  4. Area Under the Curve:
    • Calculate the area under the curve for given functions using antiderivatives.
  5. Applying Integrals:
    • Calculate definite integrals for various functions using Maxima.
  6. Kinematics:
    • Derive equations of velocity and acceleration from the displacement equation using derivatives.
    • Derive equations of velocity and displacement from the acceleration equation using antiderivatives.
  7. Exploring the Relationship Between Derivatives and Integrals:
    • Discuss the fundamental relationship between differentiation and integration and their roles in calculus.

By completing this lab, students will gain practical experience in antidifferentiation, understand its applications in different contexts, and appreciate the interplay between derivatives and integrals.

10.1 Antiderivatives

The goal of differentiation is to find the derivative \(f'\) of a given function \(f\). The reverse process called antidifferentiation, is equally important: Given a function \(f\), we look for an antiderivative function \(F\) whose derivative is \(f\); that is, a Function \(F\) such that \(F'=f\)

Definition: Antiderivative

A function F is an antiderivative of \(f\) on an interval \(I\) provided \(F'(x) = f(x)\), for all \(x\) in \(I\)

10.2 Deduce the antiderivative (\(F(x)\))

Without using maxima, but using the definition, calculate the antiderivative of the following functions:

  1. \(f(x) = x\)
  2. \(f(x) = x^2\)
  3. \(f(x) = x^3\)
  4. \(f(x) = \sin x\)
  5. \(f(x) = \cos x\)
  6. \(f(x) = \frac{1}{x}\)
  7. \(f(x) = e^x\)

10.3 Verify your results

Using the function integrate(f(x),x) verify each of your previous results.

10.4 Calculate the area function: \(A(x)\)

For the following functions calculate \(A(x)\):

  1. \(f(x)=1\)
  2. \(f(x)=a\)
  3. \(f(x)=\frac{h}{b}x\)

10.5 Calculate the integral.

For the following functions, by using the function integrate(f(x),x,begin,end), calculate the area under the curve in the interval.

  1. \(f(x)=1,\quad 0<x<1\)
  2. \(f(x)=a,\quad 0<x<b\)
  3. \(f(x)=\frac{h}{b}x,\quad 0<x<b\)
  4. \(f(x)=x^3,\quad -b<x<b\)

10.6 Kinematics (s -> v -> a)

Using derivatives, starting from the displacement equation, for a 1D projectile, deduce the equations of velocity and Acceleration as function of time.

\[s(t) = x_0 + v_0t - g\frac{t^2}{2}\]

Solution:

(%i1) define(s(t),x0 + v0*t - g*t^2/2);

\[\mathtt{(\textit{%o}_{1})}\quad s\left(t\right):=x_{0}+t\,v_{0}-\frac{g\,t^2}{2}\]

(%i2) define(v(t),diff(s(t),t,1));

\[\mathtt{(\textit{%o}_{2})}\quad v\left(t\right):=v_{0}-g\,t\]

(%i3) define(a(t),diff(v(t),t,1));

\[\mathtt{(\textit{%o}_{3})}\quad a\left(t\right):=-g\]

(%i4) diff(s(t),t,2);

\[\mathtt{(\textit{%o}_{4})}\quad -g\]

10.7 Kinematics (a -> v -> s)

Using anti-derivatives, starting from the acceleration equation, for a 1D projectile, deduce the equations of velocity and displacement as function of time.

(%i5) define(a(t),-g);

\[\mathtt{(\textit{%o}_{5})}\quad a\left(t\right):=-g\]

(%i6) define(v(t),integrate(a(t),t)+v0);

\[\mathtt{(\textit{%o}_{6})}\quad v\left(t\right):=v_{0}-g\,t\]

(%i7) define(s(t),integrate(v(t),t)+x0);

\[\mathtt{(\textit{%o}_{7})}\quad s\left(t\right):=x_{0}+t\,v_{0}-\frac{g\,t^2}{2}\]

10.8 Discuss what is relationship between Derivative and Integral

10.9 For each of the previous sections:

  • take pictures of your handwritten work, submit them to the dropbox.
  • Link each picture to the corresponding section of your wxmaxima document1 (Cell -> Insert Image).
  • be sure your code run correctly by pressing Shift+Enter in each code chunk.
  • be sure the whole document display correctly, by running Ctrl+R.
  • Submit on the corresponding Dropbox folder, with the corresponding name (FINAL_Lab10_Calc1_YOURLASTNAME_mmddyy.wxmx.)

  1. pictures need to be in the same folder of your .wxmx file↩︎