Author: John J Weber III, PhDCorresponding Textbook Sections:
Section 6.2 – Volumes
Section 6.3 – Volumes by Cylindrical Shells
Volumes
Prerequisite Knowledge
Geometry
Area
Circle: , where is the radius of the circle.
Volume
Cylinder: , where is the radius of the circular face, is the height of the cylinder.
Parallelepiped (3-dimensional box): , where , , and are the lengths of the three sides.
Algebra
Fundamental Theorem of Algebra [FTA]
Every polynomial of degree with complex coefficients has roots in the complex numbers.
NOTE: We will only need to find the real roots of equations.
Definition: Discriminant
The discriminant to the quadratic equation is .
Quadratic Formula
To find the solutions to , use .
If the discriminant is non-negative, i.e., then the solutions, -values, are real numbers.
Solving Equations
Quadratic functions:
use Quadratic Formula or use method below for Polynomial functions
Polynomial functions:
Move all terms to one side of the equation:
Factor into linear factors, if possible:
Use the Zero Product Property of Real Numbers, i.e., set each factor to and solve for .
Use FTA to check that you found all real solutions.
Root functions:
, when , for any function, .
Exponential functions:
Exponential functions cannot be equal to unless the function is shifted vertically.
Logarithmic functions:
, when , for any function, .
Trigonometric functions:
Use the unit circle to determine when a trig function is zero.
Find Intersections of Two Curves
Suppose, and , then the curves intersect at the -values of the solutions to .
Suppose, and , then the curves intersect at the -values of the solutions to .
Find Intercepts of Curves
-intercepts
Replace all -variable(s) with , then solve for .
-intercepts
Replace all -variable(s) with , then solve for .
Sketching Curves
NOTE: Sketching is not the same as graphing. When graphing a curve, precision is expected, so 'T'-charts or sketching points on the curve are normally required; however, when sketching graphs, you need only get an approximate graph of the curve.
General Method
Find -intercept(s) and -intercept(s).
Use known properties of known functions:
Linear functions, ,
Quadratic functions,
Polynomial functions,
Root functions, , , for
Exponential functions, ,
Logarithmic functions, ,
Trigonometric functions
If necessary, exchange and variables, sketch, then reflect graph over the line.
Use your knowledge of translations of curves.
Plot point(s), only as a last resort.
Practice 01
Find the exact values of all real, if any solutions to the following equations:
Check Your Work
Use Technology to Solve Equations
Mathematica
x
1
(* Example from Practice 01-2: Solve x^3=2 *)
2
(* NOTE: == is used for the equals sign in an equation *)
3
Solve[x^3==2,x,Reals]
4
5
(* Example from Practice 01-4: Solve ln(x+1)=2 *)
6
(* NOTE: == is used for the equals sign in an equation *)
7
Solve[Log[x+1]==2,x,Reals]
8
9
(* Example from Practice 01-5: Solve sin(x)=-sqrt{3}/2 *)
10
(* NOTE: == is used for the equals sign in an equation *)
11
Solve[{Sin[x]==-Sqrt[3]/2,0<=x<2Pi}]
12
(* or *)
13
Reduce[{Sin[x]==-Sqrt[3]/2,0<=x<2Pi}]
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: http://www.jjw3.com/TECH_Common_Functions.pdf.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
When solve trigonometric equations, Mathematica output may include the symbol which is the mathematical abbreviation for “or.”
Practice 02
Find the exact values of all real intersection points:
;
;
;
;
;
Check Your Work
Use Technology to Find Intersections of Two Curves
Mathematica
xxxxxxxxxx
9
1
(* Example from Practice 02-4: Find intersection(s) of x=y^3-1 and x=y *)
2
(* NOTE: == is used for the equals sign in an equation *)
3
Solve[{x==y^2-2,x==y},{x,y},Reals]
4
5
(* Example from Practice 02-3: Find intersections of y=sin(x) and y=1/2 *)
6
(* NOTE: == is used for the equals sign in an equation *)
7
Solve[{Sin[x]==1/2,0<=x<2Pi}]
8
(* or *)
9
Reduce[{Sin[x]==1/2,0<=x<2Pi}]
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: http://www.jjw3.com/TECH_Common_Functions.pdf.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
When solve for intersections of trigonometric equations, Mathematica output may include the symbol which is the mathematical abbreviation for “or.”
Practice 03
Sketch a graph of the following:
Check Your Work
Use Technology to Graph Curves
DESMOS
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. For built-in DESMOS functions, click on the keyboard icon on the bottom-left of the page.
DESMOS can graph more than one curve and can graph curves that are not functions.