Cartesian vs. Paramtrization
Cartesian vs. Paramtrization
Parametrization
Manoj Pandey
April 4, 2025
Contents
1 Introduction 1
2 Parametrization of a Surface 2
4 Conclusion 5
1 Introduction
Parametric equations are often preferred over Cartesian equations, whether for curves
or surfaces, because they offer greater control over the domain and the shape of the
graph. Cartesian equations define the entire object, whereas parametric equations
allow us to specify a portion by controlling the parameters.
To understand this, let’s start with a curve. Consider the parabola given by the
Cartesian equation:
y = x2 .
This equation defines the entire parabola. However, if we use parametric equations
such as:
(x, y) = (t, t2 ),
we can control which portion of the parabola is plotted by restricting the parameter t.
Solution: To plot a portion of parabola over the domain [−2, 2], we shall use para-
metric equation (x, y) = (t, t2 ) and allow the parameter t ∈ [−2, 2], i.e., −2 < t < 2.
This will give us the portion of the parabola corresponding to x ∈ [−2, 2] (see figure
1.2). To plot this, we use the following GeoGebra command to plot the figure.
1
2
For the parabola with restricted domain [−2, 2], we shall write the following in input
bar
Curve(t, t2 , t, −2, 2) .
2 Parametrization of a Surface
A similar concept applies to surfaces. The cartesian equation of the type z = f (x, y)
defines the entire surface. If the surface in unbounded, we may have difficulty to
visualize as the machine has smaller screen. Therefore, to control which part of the
surface is plotted, we must use parametric equation of a surface.
But, in case, a surface is given by an equation of the form z = f (x, y), we have easy
trick to parameterize the surface. For a surface, we need two parameters. We simply
put x = u and y = u. This readily gives z = f (u, v). Thus a parametrization of a
surface z = f (x, y) comes out to be
x = u, y = v, z = f (u, v).
D = {(u, v) ∈ R2 }.
x = u, y = v, z = u2 + v 2 .
x = u, y = v, z = u2 − v 2 .
GeoGebra Task: Plot a paraboloid and hyperbolic paraboloid over a square domain
given by
D = {(u, v) : u ∈ [−2, 2], v ∈ [−2, 2]} = [−2, 2] × [−2, 2].
Solution: To plot a parameterized surface, use the following GeoGebra Command:
x = r cos θ, y = r sin θ.
r = u, θ = v,
x = u cos v, y = u sin v, z = u2 .
5
This allows for control over the domain using parameters u and v, where suitable
ranges can be set to extract a particular portion of the surface. Restricting the pa-
rameters, such as 0 ≤ u ≤ 1 and 0 ≤ v ≤ 2π, results in a circular domain of radius
1 as in case of paraboloid.
The image of hyperbolic paraboloid over a circular domain of radius 2 will be plotted
by the following command in GeoGebra.
4 Conclusion
Parametric equations provide greater flexibility for defining portions of a curve or
surface. While Cartesian equations describe the entire shape, parametrization allows
for localized control, making it useful in graphical representations and computational
modeling.