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

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=4; HF=2.5; PLANE(-3,3, -2,2)
r1 = function(t) 2+cos(2*t)
pola(r1,0,2*pi,"blue")
r2 = function(t) 1+cos(2*t)
pola(r2,0,2*pi,"seagreen")
r3 = function(t) 1+2*cos(2*t)
pola(r3,0,2*pi,"red")