I need to calculate the flux of the vector field
$ F(x,y,z) = (xy^2, yz^2 + xze^{sin(z^2)}, zx^2+e^{x^2}) $
Through the surface
S = {$(x, y, z) | x^2+y^2+z^2 = 9, x \ge 0$}
When the $x$ component of the normal vector is non-negative.
I tried to calculate it in the regular way, but it's involve integrals that I couldn't solve.
Is the a theory that can help (like stokes or the divergence)?
We can definitely use the divergence theorem in this problem. Note that the divergence of the field is given by
$$\mathrm{div} \vec{F} = \partial_x F_x + \partial_y F_y + \partial_z F_z = y^2 + z^2 + x^2$$
Now we can calculate the flux through the surface as a volume integral:
$${\int \int}_S \vec{F} \cdot d\vec{S} = {\int \int \int}_V \mathrm{div} \vec{F} \, d{V}$$
Where $V$ is the volume contained by surface $S$. To be more clear, $V$ is a half ball of radius $R = 3$. If we take spherical co-ordinates this integral becomes much easier to calculate:
$$\int \int \int_V \mathrm{div} \vec{F} \, d{V} = {\int \int \int}_V r^2 \, d{V} = \int_{-\frac{\pi}{2}}^{\frac{\pi}{2}} \int_{0}^{\pi} \int_{0}^{R} \, r^4 dr \sin(\theta) d\theta d\phi = \frac{1}{5}R^5 (2) (\pi)= \frac{486 \pi}{5}$$
Therefore, the flux is $\frac{486 \pi}{5}$. Hope this helps!