Area Between CurvesPrerequisite KnowledgeAlgebraTheorem: Fundamental Theorem of Algebra [FTA]Definition: DiscriminantDefinition: Quadratic FormulaSolving EquationsFind Intersections of Two CurvesFind Intercepts of Curves
Author: John J Weber III, PhD Corresponding Textbook Sections:
Every polynomial of degree
NOTE: We will only need to find the real roots of equations.
The discriminant to the quadratic equation
To find the solutions to
If the discriminant is non-negative, i.e.,
Quadratic functions:
Polynomial functions:
Root functions:
Exponential functions:
Logarithmic functions:
Trigonometric functions:
Suppose,
Suppose,
Replace all
Replace all
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.
Find
Use known properties of known functions:
If necessary, exchange
Use your knowledge of translations of curves.
Plot point(s), only as a last resort.
Find the exact values of all real, if any solutions to the following equations:
Mathematica
x1(* Example from Practice 01-2: Solve x^3=2 *)2(* NOTE: == is used for the equals sign in an equation *)3Solve[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 *)7Solve[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 *)11Solve[{Sin[x] == -Sqrt[3]/2, 0 <= x < 2Pi}]12(* or *)13Reduce[{Sin[x] == -Sqrt[3]/2, 0 <= x < 2Pi}]Warnings:
Find the exact values of all real intersection points:
Mathematica
xxxxxxxxxx91(* 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 *)3Solve[{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 *)7Solve[{Sin[x] == 1/2, 0 <= x < 2Pi}]8(* or *)9Reduce[{Sin[x] == 1/2, 0 <= x < 2Pi}]Warnings:
Sketch a graph of the following:
DESMOS
Warnings:
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Last Modified: Monday, 6 September 2020 13:33 EDT