For a sphere with radius $a$ centred at the origin, why are these two methods not valid?
So for any point on the sphere, can be parametrized in spherical coordinates as so:
$${\textbf{x}}= \begin{pmatrix}a \cos \theta \sin \phi \\ a \sin \theta \sin \phi \\ a \cos \phi\end{pmatrix}$$
By intuition, this is also the normal vector to the surface of the sphere at the point.
Now this will have length equal to $a$.
For the surface integral $$\iint_{S} dS = \iint_{S} ||{\textbf{N}}||\mathrm{d}\theta \mathrm{d}\phi$$
I would substitute $a$ for the integrand.
However, using a different method (taking the partial derivatives of the parametric vector and finding the cross product, another normal vector is
$${\textbf{N}} = \begin{pmatrix} a^2 \cos \theta \sin^2\phi \\ a^2\sin\theta\sin^2\phi\\-a^2\sin\phi\cos\phi\end{pmatrix}$$
with length equal to $a^2 \sin \phi$.
Now substituting this into the integrand, I'd get a different answer.
My question is: I know that the two normal vectors I get are different, but they are still normal vectors to the sphere. By the surface integral, shouldn't they both be allowed to be substituted into the integral?