Author: John J Weber III, PhDCorresponding Textbook Sections:
Section 7.1 – Integration by Parts
Prerequisite Knowledge
Calculus I Rules
Function
Derivative
Function
Antiderivative
;
;
;
; ,
; ,
;
;
;
Check Your Work
Use Technology to Verify a Derivative
Mathematica
NOTE: On all Assessments, Mathematica may be used to verify derivatives. You are expected to be able to show how to differentiate any function in the course.
x
1
(* Derivative of e^x *)
2
D[E^x,x]
3
4
(* Derivative of ln(x) *)
5
D[Log[x],x]
6
7
(* Derivative of log(x) *)
8
D[Log[10,x],x]
9
10
(* Derivative of sin(x) *)
11
D[Sin[x],x]
12
13
(* Derivative of sec^2(x) *)
14
D[Sec[x]^2,x]
15
16
(* Derivative of sin^{-1}(x) *)
17
D[ArcSin[x],x]
Warnings:
Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Mathematica syntax is located at: https://www.jjw3.com/Common_Mathematica_Code.html.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
Mathematicamay return a result in a different, but equivalent, form than your answer. In these cases, use FTC-I to check your work.