Liste von Kurven

Inhaltsverzeichnis

  1. Funktionen
  2. Sigmoid-Funktionen
  3. Glockenkurven
  4. Kurven
  5. Spirographie
  6. Rest
  7. Literatur

Funktionen

Rechteck-Schwingung
y = sgn(mod(x-1,2)-1)
Dreieck-Schwingung
y = |mod(x,2)-1|
Sägezahn-Schwingung
y = mod(x,1)

Sigmoid-Funktionen

y = x/sqrt(x^2+1)
y = x/(|x|+1)
y = x/(|x|^n+1)^(1/n)
y = tanh(x)
y = erf(sqrt(pi)/2*x)
y = 2/pi*arctan(pi/2*x)
y = 2/pi*gd(pi/2*x)
y = x/ln(exp(|x|)+1)

Glockenkurven

y = exp(-x^2)
y = 1/cosh(x)

Kurven

Kreis
x^2+y^2 = r^2
x = r*cos(t)
y = r*sin(t)
t in [0,2pi)
r: Radius
Ellipse
(x/a)^2+(y/b)^2 = 1
x = a*cos(t)
y = b*sin(t)
t in [0,2pi)
Hyperbel
x^2-y^2 = 1
x = cosh(t)
y = sinh(t)
t in (-∞,∞)
Quadrat
|x|+|y| = 1
x = sgn(cos(t))*cos(t)^2
y = sgn(sin(t))*sin(t)^2
t in [0,2pi)
Spirale
x = t*cos(2pi*t)
y = t*sin(2pi*t)
t in [0,n)
Logarithmische Spirale
x = a*exp(b*t)*cos(t)
y = a*exp(b*t)*sin(t)
t in (-∞,∞)
a>0, b≠0
Kardioide
x = (1-cos(t))*cos(t)
y = (1-cos(t))*sin(t)
t in [0,2pi)
Astroide
x = cos(t)^3
y = sin(t)^3
t in [0,2pi)
Quadrifolium
x = sin(2t)*cos(t)
y = sin(2t)*sin(t)
t in [0,2pi)
Achterschleife
y^2 = x^2-1/4*x^4
x = 2cos(t)
y = sin(2t)
t in [0,2pi)
Schleifenkurven
y^2 = x^2-x^3
echte Lemniskate
(x^2+y^2)^2 = 2a^2*(x^2-y^2)
Cassini-Kurven
(x^2+y^2)^2 - 2c^2*(x^2-y^2) = a^4-c^4
Strophoide
(a-x)*y^2 = (a+x)*x^2
x = a*(t^2-1)/(1+t^2)
y = a*t*(t^2-1)/(1+t^2)
t in (-∞,∞)
a: Durchmesser der Schleife

Spirographie

Quadrifolium
(x^2+y^2)^3=(x^2-y^2)^2
x = cos(2t)*cos(t)
y = cos(2t)*sin(t)
t in [0,2pi)
Zehn-Blatt
x = cos(5t)*cos(4t)
y = cos(5t)*sin(4t)
t in [0,2pi)
Stern
x = (4+sin(5*t))*cos(t)
y = (4+sin(5*t))*sin(t)
t in [0,2pi)

Rest

Gitter
sin(x) = sin(y)
Ringe
sin(x)+sin(y)=1
10*sin(x)*sin(y)=1
schwierig zu zeichnen
gamma(x*y) = gamma(x+y)
unendlich schnelle Oszillation
f(x) = sin(1/x)
x in (0,∞)

Literatur

  1. »List of curves«. In: Wikipedia.
  2. John J. O'Connor, Edmund F. Robertson: »Famous Curves Index«. In: MacTutor History of Mathematics archive, April 2015.
  3. J. Dennis Lawrence: »A catalog of special plane curves«. Dover Publications, 1972.
  4. Jürgen Köller: »Einfach geschlossene Kurven«. In: Mathematische Bastelleien, 2010.


Dieser Text steht unter der Lizenz Creative Commons CC0 1.0.