<?xml version="1.0" encoding="UTF-8"?>
<Worksheet><Version major="6" minor="1"/><View-Properties><Zoom percentage="100"/></View-Properties><Styles><Layout alignment="left" firstindent="0.0" name="Heading 2" spaceabove="8.0" spacebelow="2.0"/><Layout alignment="left" firstindent="0.0" name="Heading 1" spaceabove="8.0" spacebelow="4.0"/><Layout name="Normal"/><Layout alignment="left" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.0" name="Normal257" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Layout alignment="left" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.0" name="Normal256" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Font background="[0,0,0]" bold="true" name="Heading 2" size="14"/><Font background="[0,0,0]" bold="true" name="Heading 1" size="18"/><Font background="[0,0,0]" bold="true" executable="true" family="Monospaced" foreground="[255,0,0]" name="Maple Input"/><Font background="[0,0,0]" family="Times New Roman" name="Page Number" underline="false"/><Font background="[0,0,0]" name="Normal"/><Font background="[0,0,0]" bold="false" executable="false" family="Times New Roman" foreground="[0,0,0]" italic="true" name="Normal257" readonly="false" size="12" underline="false"/><Font background="[0,0,0]" bold="true" executable="false" family="Times New Roman" foreground="[0,0,0]" italic="false" name="Normal256" readonly="false" size="12" underline="true"/></Styles><Page-Numbers enabled="false" first-number="1" first-numbered-page="1" horizontal-location="right" style="Page Number" vertical-location="bottom"/><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">Module 4 : Trigonometry</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Heading 1" style="Heading 1"><Font family="Times New Roman">402 : Polar Graphs - Roses Rings Bracelets and Hearts</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal256" style="Normal256">S E T U P</Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">In this project we will use the following command package. Type and execute this line before begining the project below. If you re-enter the worksheet for this project, be sure to re-execute this statement before jumping to any point in the worksheet.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">restart; with(plots):</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">A. Cardioids &amp; Limacons</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">We're going to look at a variety of cardioids, which are graph of the form</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">                     y = a +- b sin(theta) or y=a +- b cos(theta)</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">and see how the relationship among the components effects the graph.

          COMPARING a AND b</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">In particular, there are three cases : |a| = |b|. |a| &gt; |b|, and |a| &lt; |b|. Each of these cases creates a distinctive version of the limacon.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">When |a| = |b|, the graph passes through the origin.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">This shape is known a cardioid, or heart shaped curve. Note the reference circles of radius 1 and 2.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">restart; with(plots):</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {1,2, 1+sin(theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">When |a| = |b|, the graph maintains some distance between it and the origin, resulting in a rounder, puffier plot.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot({1,3,5, 3+2*sin(theta)},theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">When |a| &lt; |b|, the graph not only passes through the origin, but also part of it folds inside itself.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot({2,3,8, 3+5*sin(theta)},theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">To see all of these varieties in one glance, execute the next block of commands.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">This shape is known a cardioid, or heart shaped curve. Note the reference circles of radius 1 and 2.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">display( polarplot( 8 + 8*cos(theta) , theta = 0..2*Pi, scaling = constrained, color = green, thickness = 3), polarplot({8 + a*cos(theta) $ a = 9..15}, theta = 0..2*Pi, color = blue), polarplot({ 8 + a*cos(theta) $ a = 1..7}, theta = 0..2*Pi, color = red));</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal257" style="Normal257">CHOICE OF TRIG FUNCTION</Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">There are four variations iin the format : sine, cosine, -sine, and -cosine. How does the choice of one of these effect the graph? Lets take a look at all four at once!</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Can you decide which graph belongs to which? Think about what values of theta make the sine and cosine maxima!</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot({ 8 + 7*sin(theta), 8 + 7*cos(theta), 8 - 7*sin(theta), 8 -7*cos(theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 10 + sin(2*Pi*theta), theta = 0..20*Pi, color = coral, 
 scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">B. The Rose Garden</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">We're going to look polar functions of the form f = a sin(n ) and r = a cos(n ) which are sometimes called multi-petaled roses.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">EVEN AND ODD NUMBER PETALS</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">The first distinction to be made is between when n is an even or odd number.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">When n is an odd number, the resulting rose has exactly n petals</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {9, 9*sin(5* theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">However, when n is even, the rose has 2n petals.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {5, 5*sin(6*theta)} , theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Try creating some other roses on your own with different numbers of petals to verify that the even/odd relationship holds.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">What about a single-petaled rose?</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Do you recognize the inner shaped of the "single petaled rose"?</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {9, 9*sin(theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal257" style="Normal257">SINE AND COSINE</Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Although sin(x) and cos(x) will create an n-petaled roses inscribed in the unit circle, what is the difference between them?</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">The graph with the sine appears tangent to the positive x axis, while the cosine version has a petal centered at the positive x axis.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {sin(3*theta), cos(3*theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Here is an illustration of the same idea with even more petals.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot({sin(6*theta),cos(6*theta)}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal257" style="Normal257">AMPLITUDE</Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">In the formula above, how does the number a, which is the amplitude in effect the graph? Here we let a =1,2,3...,12 and see how the resulting graphs look</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Each different color is a different graph. You can see that they are inscribed in circles of radius 1,2,3,...,12.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {a*cos(6*theta) $ a = 1..12}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">C. Valentine Curves</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Valentine curves - there is really no such name but it seemed reasonable when you take a hybrid of rings, hearts(cardioids), and flowers(roses).</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 4 + cos(6*theta) , theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 4 + 3*sin(7*theta), theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">This one wraps in on itself</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 3 + 7*sin(3*theta), theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Here are whole families of similar curves</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( { 6 + a*cos(6*theta) $ a = 1..11}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {12 + a*sin(7*theta) $ a = 1..12}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">D. Familiar Shapes Disguised In Polar Form</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">There are many familiar shapes such as lines, circles, parabolas, and ellipses which can be expressed in polar form.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">In polar coordinates, the simplest function for r is r = constant, which makes a circle centered at the origin. Lets look at the graphs of r = 1, r = 2, ... , r = 20.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">This draws concentric circles of radius 1,2,...,20</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( {k $ k = 1..20}, theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">We can also draw circles not centered at the origin.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( cos(theta), theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( cos(theta - Pi/4), theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">...and ellipses and parabolas....</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 1/(8 - 7*cos(theta)), theta = 0..2*Pi, scaling = constrained);</Text-field><Text-field layout="Normal" prompt="&gt; " style="Maple Input"/></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 1/(1 - cos(theta)), theta = 0..2*Pi);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 1/(3 + 2*sin(theta)), theta = 0..2*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">...even horizontal and vertical lines</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 2*csc(theta), theta = -2*Pi..2*Pi);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot(2*sec(theta), theta = -2*Pi..2*Pi);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">E. Spiraling Graphs</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">A basic spiral is of the form r = theta.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot(theta,theta = 0..4*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot(theta, theta = 0..40*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Again, a larger range of values for theta gives more chance for the graph to wrap around.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Even more interesting graphs can be created using the product of theta and a trigonometric function. As theta increases there is some sort of spiraling effect.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( theta*sin(theta), theta = 0..3*Pi, scaling = constrained);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( theta*sin(theta), theta = 0..100*Pi, scaling = constrained);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">As we increase the range of values for theta, we get even more of the same.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Here is another variation.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 2*cos(theta) + sqrt( abs( 4*cos(theta)^2 -3)), theta = 0..2*Pi, scaling = constrained, numpoints = 1000);</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Heading 2" style="Heading 2"><Font family="Times New Roman">F. How To Build A Better Rose</Font></Text-field><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">___________________________________________________________________________________</Font></Text-field><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">The so-called 'roses' above, really bore more of a resemblance to daisies. Here is something that looks a little more rose-like.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( theta + 2*sin(2*Pi*theta), theta = 0..12*Pi,color = red, thickness = 2 );</Text-field></Input></Group><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal" style="Normal"><Font family="Times New Roman">Here are some other beautiful botanicals.</Font></Text-field><Text-field layout="Normal" style="Normal"/><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( theta + 3*sin(4*theta) - 5*cos(4*theta), theta = 0..12*Pi,color = violet, thickness = 2 );</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( theta + 2*sin(2*Pi*theta) + 4*cos(2*Pi*theta), theta = 0..12*Pi,color = green, thickness = 2 , numpoints = 1000);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( 2*cos(theta) + sqrt( abs( 4*cos(theta)^2 -3)), theta = 0..2*Pi,scaling = constrained, numpoints = 1000 );</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input">polarplot( cos(.95*theta), theta = 0..40*Pi,scaling = constrained, color = brown);</Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"/></Input></Group><Text-field/></Worksheet>