Left alignment and no line break of equations in enumerate items

#enumeratealignamsmathequationsflalign

What i try to make work is effectively combining this question: Prevent line break before equation environment in enumerated list item(to have the equation on the same line as the label) with this question: How can I use an align environment flush left? (Have the equation all the way on the left).

This turns out to be not as easy as combining the solutions. I have a MWE here:

\documentclass[11pt, a4paper]{scrartcl}
\usepackage{enumitem}
\usepackage{mathtools}

\begin{document}
\begin{enumerate}[label=\alph*)]
    \item \mbox{} \vspace*{-\baselineskip} \[\begin{alignedat}{2}
                  \frac{1 - j}{1 + 2j} + \frac{1 + 3j}{1 - 2j} &= -\frac{6}{5} + \frac{2}{5} j
              \end{alignedat} \]
    \item \mbox{} \vspace*{-\baselineskip} \begin{flalign*}
              \frac{1 - j}{1 + 2j} + \frac{1 + 3j}{1 - 2j} &= -\frac{6}{5} + \frac{2}{5} j &
          \end{flalign*}
\end{enumerate}
\end{document}

The original equation is longer which is why there are still & delimiters at the = sign.

The problem here is now that for whatever reason the flalign* environment ist not in line with the item label even though it has the same \vspace*{-\baselineskip} in front.
Does flalign* add more vertical space than the normal equation* environment and if yes how much is it exactly?

Best Answer

Following up on @Bernard's earlier suggestion: To get the first row of a multi-row aligned environment aligned [pun intended] with the external marker, just use the optional [t] positioning specifier, as in $\begin{aligned}[t] ... \end{aligned}$.

enter image description here

\documentclass[11pt, a4paper]{scrartcl}
\usepackage{enumitem}
\usepackage{mathtools}
\begin{document}
\begin{enumerate}[label=\alph*)]
    \item $\begin{aligned}[t]
              \frac{1 - j}{1 + 2j} + \frac{1 + 3j}{1 - 2j} 
                 &= -\frac{6}{5} + \frac{2}{5} j \\ 
                 &= \text{some additional thoughts\dots}
           \end{aligned}$
\end{enumerate}
\end{document}