Parametric representation of a Spiral

Click For Summary
SUMMARY

The discussion focuses on deriving a parametric representation of a spiral using the known parametric equations of a circle. The initial suggestion was to use a variable radius, represented as x = u * Cos(Theta) and y = u * Sin(Theta), where u varies from 1 to 4. However, to accurately represent a 2D spiral, the correct formulation is x = Theta * Cos(Theta) and y = Theta * Sin(Theta), allowing Theta to serve as both the angle and the radius. For a 3D spiral, or helix, the z-component must be introduced as z = Theta, maintaining the same parameterization.

PREREQUISITES
  • Understanding of parametric equations
  • Familiarity with trigonometric functions (Cosine and Sine)
  • Basic knowledge of 2D and 3D coordinate systems
  • Concept of variable parameters in mathematical representations
NEXT STEPS
  • Research "Parametric equations in mathematics" for foundational knowledge
  • Study "Trigonometric functions and their applications" to deepen understanding
  • Explore "3D parametric equations and helix representation" for advanced concepts
  • Practice "Graphing parametric equations" using software tools like Desmos or GeoGebra
USEFUL FOR

Students and educators in mathematics, computer graphics programmers, and anyone interested in geometric representations and parametric modeling.

DorumonSg
Messages
61
Reaction score
0
Propose a parametric representation of a spiral.
Hint: Use the parametric representation of a circle.

This is the parametric representation of a circle we are given :

x = r * Cos(Theta)
y = r * Sin (Theta)

0 <= Theta <= 2 Pi

Nope, we are not given anything background on spirals.

I am like super new at this graphics thingy. I've been searching around the net for 4 hours now, I did find a few answers but none taught me how to get the representation from a circle and I have no idea how they derive at the answer.

All I know right now about this graphics thingy is :

x and y are like coordinates.

And that t or Theta in this case is kinda like a path or timeline where decides when coordinates of x and y starts and ends.

I am thinking of making the radius a parameter and then slowly increasing it?

x = u * Cos(Theta)
y = u * Sin (Theta)

1 <= u <= 4

Something like that?

Thats all I know, so help please?
 
Last edited:
Physics news on Phys.org
that would work as a 2D spiral, but you would want it all in terms of one parameter, so try starting with theta(u) = u
 
DorumonSg said:
Propose a parametric representation of a spiral.
Hint: Use the parametric representation of a circle.

This is the parametric representation of a circle we are given :

x = r * Cos(Theta)
y = r * Sin (Theta)

0 <= Theta <= 2 Pi

Nope, we are not given anything background on spirals.

I am like super new at this graphics thingy. I've been searching around the net for 4 hours now, I did find a few answers but none taught me how to get the representation from a circle and I have no idea how they derive at the answer.

All I know right now about this graphics thingy is :

x and y are like coordinates.

And that t or Theta in this case is kinda like a path or timeline where decides when coordinates of x and y starts and ends.

I am thinking of making the radius a parameter and then slowly increasing it?

x = u * Cos(Theta)
y = u * Sin (Theta)

1 <= u <= 4

Something like that?
If u is fixed, that is a circle of radius u, not a spiral. If u is a variable, then you have two parameters and that is a surface, not a spiral.

To get a spiral in two dimensions, you need to make the radius variable but not introduce a new variable so something like x= theta*cos(theta), y= theta* sin(theta).

If the problem is, as lanedance suggests, a three dimensional spiral, a "helix", then you need to introduce a "z" component that increases, again not introducing a new parameter.

Something like x= Cos(Theta), y= Sin(Theta), z= Theta.

Thats all I know, so help please?
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
Replies
3
Views
2K
  • · Replies 20 ·
Replies
20
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
4K