The Equiangular Spiral

Copyright 1998
Department of Mathematics
University of Georgia
Athens, Georgia

Carol W. Penney

Consider the graph of the spiral passing through (x(t),y(t)) with the following properties:

Here is a picture of this spiral:

[Maple Plot]

  Run the following movie to see why this is called the equiangular   spiral .

[Maple Plot]

You see a ray from the origin to a point  P=(x(t),y(t)) on the spiral and a line tangent to the spiral at  P  as point  P moves along the spiral.  The angle to which the name equiangular spiral refers is the angle between these two lines.  

 Project:  The Equiangular Spiral

Tools for this Project

To plot the spiral, define x(t) and y(t) then use the parametric form of the plot command:

>    restart:

>    x:=t->  ;

>    y:=t->  ;

>    with(plots):with(plottools):

>    plot([x(t),y(t),t=0..6*Pi],scaling=constrained);

To create your movie:

>    p2:=s->plot([x(t),y(t),t=0..24],scaling=constrained):

>    q2:=s->plot([[(0,0)],[1.5*x(s),1.5*y(s)]],color=black):

>    r2:=s->plot([[x(s)+D(x)(s),y(s)+D(y)(s)],[x(s)-D(x)(s),y(s)-D(y)(s)]], color=black):

>    disp2:=s->display(q2(s),p2(s),r2(s),pointplot([x(s),y(s)],symbol=circle),labels=["",""],tickmarks=[0,0]):

>    display(seq(disp2(.25*s),s=0..60),insequence=true,scaling=constrained);

To find derivatives and the length:

The command normal converts quotients of functions to a simpler form, in which common factors of numerator and denominator are assumed to be non-zero and canceled.  This command may be useful in your calculation of the length of the spiral.

>    normal(expression);

The Most Common Maple Commands

Academic Honesty Statement:

Place the following statement (by copying and pasting) at the end of your report and sign it in ink.  Your instructor will not grade your report unless this signed statement appears at the end of your report.

I understand that I may work with others if I give them credit in this statement.  I also understand that I am required to write my report--that to copy all or part of someone else's report or to allow someone else to copy all or part of my report constitutes plagiarism, which is a serious violation of academic honesty.

I worked with (replace this parenthetical remark with first and last names of those with whom you worked)  on this project.  I wrote my own report.  I did not copy any of this report from anyone else and I did not allow anyone else to copy any of this report.

Signed: