Traccia, con l'aiuto del computer, le seguenti curve descritte in forma polare:
(A) ρ = √θ   (B) ρ = sin(4·θ)   (C) ρ = cos(2·θ)   (D) ρ = 1−sin(θ)

Ecco a destra, diversamente colorate, le curve che si ottengono, con (in R) i comandi seguenti:
source("http://macosa.dima.unige.it/r.R")
BF=3; HF=3; PLANE(-2,2.5, -2.5,2)
r1 = function(t) sqrt(t)
r2 = function(t) sin(4*t)
r3 = function(t) cos(2*t)
r4 = function(t) 1-sin(t)
pola(r1,0,2*pi,"seagreen")
pola(r2,0,2*pi,"red")
pola(r3,0,2*pi,"blue")
pola(r4,0,2*pi,"brown")