Polar CoordinatesExpected Educational ResultsBloom’s TaxonomyPolar Coordinate SystemDefinition: Derivatives of Polar CurvesDerivationHorizontal Tangent Lines to Polar CurvesCorollaryVertical Tangent Lines to Polar CurvesCorollaryInvestigation 08Use Technology to Solve Equations ExactlyInvestigation 09Use Technology to Approximately Solve EquationsHomeworkCC BY-NC-SA 4.0
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 10.3 – Polar Coordinates
Objective 16–01: I can convert a point between polar coordinates and cartesian coordinates.
Objective 16–02: I can convert equations between polar coordinates and cartesian coordinates.
Objective 16–03: I can use technology to sketch a polar curve.
Objective 16–04: I can find the derivative of a polar curve.
Objective 16–05: I can use the derivative of a polar curve to find the equation of the tangent line to the curve, points where the curve has horizontal tangent lines, and points where the curve has vertical tangent lines.
A modern version of Bloom’s Taxonomy is included here to recognize various different levels of understanding and to encourage you to work towards higher-order understanding (those at the top of the pyramid). All Objectives, Investigations, Activities, etc. are color-coded with the level of understanding.

Let
NOTE: You will not be assessed on the derivation of the derivative of a polar curve.
Numerator:
Denominator:
A polar curve has horizontal tangent line(s) where
A polar curve has vertical tangent line(s) where
Find the equation of the tangent line to
Find the location(s) [in terms of
Find the location(s) [in terms of
NOTE: On all Assessments, you may use technology to solve equations without showing any work.
Mathematica
x1(* Example from Investigation 08-2 *)2(* Use the variable t instead of theta *)3
4(* Find locations of horizontal tangent lines to r=3cos(t) *)5Solve[-3Sin[t]Sin[t]+3Cos[t]Cos[t]==0, t, Reals]6
7(* Restrict answers to [0,2pi) *)8Solve[-3Sin[t]Sin[t]+3Cos[t]Cos[t]==0 && 0 <= t < 2 Pi, t, Reals]9
10(* If the answers from the above code are not easy to interpret *)11
12(* Simplify the trig equation *)13TrigReduce[-3 Sin[t] Sin[t] + 3 Cos[t] Cos[t]]14
15(* Solve using the simplified trig equation *)16Solve[3 Cos[2 t] == 0 && 0 <= t < 2 Pi, t, Reals]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.
Mathematica requires two
Solve[ ] has at least two arguments:
The equation to be solved;
The variable, i.e.,
The argument
Mathematica may return complex solutions; thus, either
Identify a complex solution (the result includes the imaginary unit,
Use the argument Reals.
For help on using the Solve[ ] function:
In Mathematica, execute the code:
Click on
Click on local
Read how to use the Solve[ ] function – you will be able to copy-paste code.
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
Find the equation of the tangent line to
Estimate (to four decimal places) the location(s) [in terms of
Estimate (to four decimal places) the location(s) [in terms of
NOTE: On all Assessments, you may use technology to solve equations without showing any work.
Mathematica
xxxxxxxxxx81(* Example from Investigation 09-2 *)2(* Use the variable t instead of theta *)3
4(* Find approx locations of horizontal tangent lines to r=sin(3t) *)5Solve[3Cos[3t]Sin[t]+Sin[3t]Cos[t]==0, t, Reals]//N6
7(* Restrict answers to [0,pi) *)8Solve[3Cos[3t]Sin[t]+Sin[3t]Cos[t]==0 && 0 <= t < Pi, t, Reals]//NWarnings:
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.
Mathematica requires two
Solve[ ] has at least two arguments:
The equation to be solved;
The variable, i.e.,
The argument
Mathematica may return complex solutions; thus, either
Identify a complex solution (the result includes the imaginary unit,
Use the argument Reals.
For help on using the Solve[ ] function:
In Mathematica, execute the code:
Click on
Click on local
Read how to use the Solve[ ] function – you will be able to copy-paste code.
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
At this time, you should be able to complete the following assignments:
Section 10.3: # 55, 57, 59, 61, 63.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Created: Tuesday, 3 November 2020 6:52 EDT Last Modified: Thursday, 14 July 2022 - 18:04 (EDT)