I'm working on how to write my proofs the way a "professional" mathematician does. From what I've seen, there are two very large differences between that and "school proofs":
Professional proofs omit anything that can be derived mechanically. You are not expected to "show your work," like in school.
Professional proofs explicitly and formally state things instead of appealing to arguments to intuition, even if the intuition might be convincing.
Both of these stem from the fact that the goal of a school proof is to show you know how to do it (hence, show your work), whereas, the goal of a professional proof is to provide proof to a peer.
However, I am having trouble doing this. For example, take this problem (from Berkeley Math 104 https://math.berkeley.edu/~gangliu/hw/final.pdf ):
If $f(x)$ and $g(x)$ are uniformly continuous and bounded, show that $u(x) = f(x)*g(x)$ is uniformly continuous.
The given solution ( https://math.berkeley.edu/~gangliu/hw/samp.pdf ) is "The proof follows if we use the definition of uniform continuity(details skipped)." That's not very satisfying.
Here is my proof:
For any $x$ and $x'$, define $\alpha = f(x) - f(x')$ and $\beta = g(x) - g(x')$. By definition of uniform continuity, for any $x$ and $x'$, $|x - x'| < \delta_f(\epsilon) \implies |\alpha| < \epsilon$, and $|x - x'| < \delta_g(\epsilon) \implies |\beta| < \epsilon$, with $\delta_f$ and $\delta_g$ functions of $\epsilon$ only. Write $\mu$ for $|u(x) - u(x')| = |\alpha g(x') + \beta f(x') + \alpha \beta|$. It suffices to show that there exists a $\delta_u$ as a function only of $\epsilon_u$, such that if $|x - x'| < \delta_u$, then $\mu < \epsilon_u$.
By the triangle equality, $\mu$ is no greater than the sum of the absolute value of it's terms. Since $f$ and $g$ are bounded, each term can be brought arbitrarily close to zero if $\alpha$ and $\beta$ are brought arbitrarily close to zero. As above, since $f$ and $g$ are uniformly continuous, for any non-zero value $k$, we can select a $\delta_f$ and $\delta_g$ within which $\alpha$ and $\beta$ will be smaller than $k$; hence, we can select a $\delta_u$ such that $\delta_u < \delta_f$ and $\delta_u < \delta_g$ which brings $mu$ arbitrarily close to zero. QED.
While I believe that my proof is correct, it's quite a mouthful, and hardly very clear. What is a good, professional, way to write this proof?
Note: I understand that there may be other, better, or shorter proofs. My question doesn't concern that. It's about how to write the proof, not what the best proof is.