I am studying spherical coordinates.
Here is the equation of a paraboloid in rectangular coordinates $$z = x^2 + y^2$$
In spherical coordinates $$\rho \cos(\phi)=\rho^2 \sin^2(\phi) \implies \rho (\rho \sin^2(\phi)-\cos(\phi))=0$$
So here is what I believe the equation is in spherical coordinates $$\rho=\frac{cos(\phi)}{sin^2(\phi)}, 0 \leq \phi \leq \pi/2$$ When I try to plot this in Maple, I obtain a figure which does not correspond to a paraboloid.
The Maple command I run is roughly
plot3d(cos(phi)/sin^2(phi), phi=0..Pi/2, coords=spherical)
Is there a mathematical mistake in my equation for a paraboloid, or is this a Maple-related issue?
Note that I obtain what looks like a correct result when I use the command implicitplot3d:
implicitplot3d(rho*cos(phi) = rho^2*sin(phi)^2, rho = 0 .. 10, theta = 0 .. 2*Pi, phi = 0 .. Pi/2, coords = spherical)
How come plotting the implicit equation differs from plotting the equation where I cancel one of the $\rho$ terms?


