I am trying to create a formula sheet so I only have section titles and equations in my documents. I am having trouble with the spacing between my section header and the equations that I want as the body of the text. LaTeX is putting an empty line between the section header and the equations which leaves an awkward-looking gap.
I have tried using \titlespacing, \titleformat, as well as \abovedisplayskip, \abovedisplayshortskip, \belowdisplayskip, and \belowdisplayshortskip. However, I don't think these worked because the problem is not that there's too much space between the text and the equation, but rather that there's a blank line above the equation and below the section title.
The code I have is:
\documentclass[leqno, fleqn,12pt]{article}
\usepackage{mathtools}
\usepackage{xfrac}
\usepackage{multicol}
\begin{document}
\section*{List of Common Derivatives}
\subsection*{POLYNOMIAL FUNCTIONS}
\begin{multicols}{3}
\begin{equation*}
\frac{d}{dx} \left(c\right) = 0 %,where c is a constant
\end{equation*}
\begin{equation*}
\frac{d}{dx} \left(cx\right) = c
\end{equation*}
\begin{equation*}
\frac{d}{du} \left(u^n\right) = nu^{n-1}du
\end{equation*}
\end{multicols}
\end{document}

I'm trying to eliminate the space between "Polynomial Functions" and the equations below. Any ideas? Thanks!

