I have to put an two equations inside one equation environment. I could do it with this piece o code:
\begin{equation}
\begin{array}{ccl}
\nabla \cdot F & = & \left(\frac{\partial}{\partial x}i + \frac{\partial}{\partial y}j + \frac{\partial}{\partial z}\right) \cdot (F_{1}i + F_{2}j + F_{3}k) \\
& = & \frac{\partial F_{1}}{\partial x}+ \frac{\partial F_{2}}{\partial y} + \frac{\partial F_{3}}{\partial z}
\end{array}!
\end{equation}
Which gives me this image:

The problem is cause when I use the array, my fractions get smaller. Here is a single line equation and how I would like to preserve my fraction size in a environment with more than 1 equation.

Can I achieve this result?

amsmath, then use\dfracinstead of\frac. However, for such alignment, it's easier to use\begin{align}...\end{align}, unless you want to number the entire multi-line equation with a single tag. Then you need something different. – Werner Apr 14 '14 at 18:09